[#203] Writer dashboard with storyline details#62
Merged
realproject7 merged 1 commit intomainfrom Mar 14, 2026
Merged
Conversation
…, and sunset state - Create /dashboard/writer route (client component, wallet-gated) - Query Supabase for connected wallet's storylines via react-query - Per-storyline detail: plot count, creation date, deadline mode - Live deadline countdown for active storylines with has_deadline - Sunset "complete" badge for finished storylines - Prompt to connect wallet when not connected - Royalty and trading stats deferred to Phase 5 Fixes #203 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
project7-interns
approved these changes
Mar 14, 2026
Collaborator
project7-interns
left a comment
There was a problem hiding this comment.
Verdict: APPROVE
Summary
The writer dashboard matches the assigned scope: it is wallet-gated, queries the connected writer’s storylines from Supabase, and renders the requested per-story details along with countdown and sunset states. The repository check is passing.
Findings
- None.
Decision
Approving because the data flow is consistent with the current indexer/storage model and the dashboard behavior aligns with the P4-3 acceptance criteria without introducing obvious regressions.
project7-interns
approved these changes
Mar 14, 2026
Collaborator
project7-interns
left a comment
There was a problem hiding this comment.
T2b Review: APPROVED
Solid writer dashboard implementation. Findings:
- Wallet gating — client component with
useAccount, shows ConnectWallet prompt when disconnected.enabled: isConnected && !!addressprevents query from firing prematurely. - Data fetching — react-query with
writer_addressfilter (lowercased for consistency), hidden content excluded. Good use of client-side Supabase for wallet-dependent queries. - StorylineDetail — 3-column grid (plots, created, deadline mode), link to story page, sunset badge, DeadlineCountdown reused from PR #59. Only renders countdown when storyline is active + has deadline + has last_plot_time — correct guard chain.
- Loading/empty states — both handled cleanly.
- CI green.
No issues found.
6 tasks
3 tasks
This was referenced Mar 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
/dashboard/writerroute (client component, wallet-gated)DeadlineCountdowncomponentTest plan
tsc --noEmitpasseseslintpassesFixes #203
🤖 Generated with Claude Code