feat: implement stream top-up modal and transaction timeline (#475 #477) - #533
Merged
Chuks-coderr merged 2 commits intoAug 31, 2026
Merged
Conversation
…eam#475 SoroStream#477) - Create TopUpModal component for improved top-up UX - Create TransactionTimeline component for visual timeline display (SoroStream#477) - Replace inline top-up form with modal interface - Enhance transaction history section with timeline visualization - Add comprehensive ARIA labels to action buttons - Improve accessibility for withdraw, cancel, pause, and resume buttons - Update stream detail page imports and state management Addresses GitHub issues SoroStream#475 (Stream top-up flow) and SoroStream#477 (Transaction history timeline)
|
@Barbieple-Devstem is attempting to deploy a commit to the Chuks7 Team on Vercel. A member of the Team first needs to authorize it. |
|
@Barbieple-Devstem Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
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.
PR #1: Issue #475 - Stream Top-Up Flow
Closes
Closes #474
Closes #475
Closes #476
Closes #477
Branch: feat/475-stream-topup-ui
[#475] Add Stream Top-Up Flow to Stream Detail Page
Summary
This PR implements a complete top-up flow for the SoroStream application, enabling users to add additional funds to active streams through a modern
modal interface. The implementation provides an intuitive user experience with comprehensive accessibility and error handling.
What's Changed
New Components
components/TopUpModal.tsx- A fully-featured modal component for stream top-upsStream Detail Page Enhancements (
src/app/stream/[id]/page.tsx)handleTopUpfunctionFeatures Implemented
✅ Modal interface for top-up entry
✅ Amount validation (must be > 0)
✅ Loading state during transaction
✅ Error handling with user-friendly messages
✅ Keyboard navigation support (Enter/Escape)
✅ Full accessibility compliance (ARIA)
✅ Updates stream data after successful top-up
✅ Transaction notification with hash display
Technical Details
useState,useRef,useEffect)useFocusTrapfor accessibilityTesting
Accessibility (WCAG AA)
Files Changed
components/TopUpModal.tsx(new, 96 lines)src/app/stream/[id]/page.tsx(updated, -44/+20 lines)Related Issues
Closes #475
PR #2: Issue #477 - Transaction History Timeline
Branch:
feat/477-stream-event-timeline