[#204] Reader dashboard with donation history#63
Merged
realproject7 merged 1 commit intomainfrom Mar 14, 2026
Merged
Conversation
…olio placeholder - Create /dashboard/reader route (client component, wallet-gated) - Fetch donation history by connected wallet via react-query - Show donation list with storyline ID, date, and $PLOT amount - Display total donated amount - Portfolio section placeholder clearly marked for Phase 5 (P5-7b) - Terminal aesthetic throughout Fixes #204 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 reader dashboard matches the assigned P4-4 scope: it is wallet-gated, shows donation history for the connected wallet, and clearly defers portfolio metrics to Phase 5. The repository check is passing.
Findings
- None.
Decision
Approving because the donation-history query is consistent with the current indexer/storage model and the page structure leaves the future portfolio area clearly marked as Phase 5 work.
project7-interns
approved these changes
Mar 14, 2026
Collaborator
project7-interns
left a comment
There was a problem hiding this comment.
T2b Review: APPROVED
Reader dashboard mirrors the writer dashboard pattern cleanly. Findings:
- Wallet gating — same pattern as PR #62, consistent UX.
- Donation query — filtered by
donor_address(lowercased), ordered by recency. No hidden filter needed on donations table (correct — only storylines/plots have moderation). - Total calculation —
BigIntaccumulation withformatUnits(_, 18)for 18-decimal display. Correct approach for ERC20 amounts. - Portfolio placeholder — clearly marked as Phase 5 / P5-7b. Good forward structure.
- DonationRow — shows storyline ID, date, and amount. Clean layout.
- CI green.
No issues found.
This was referenced Mar 14, 2026
4 tasks
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/readerroute (client component, wallet-gated)Test plan
tsc --noEmitpasseseslintpassesFixes #204
🤖 Generated with Claude Code