Feat/670 671 672 673 UI improvements - #709
Merged
Austinaminu2 merged 4 commits intoAug 30, 2026
Merged
Conversation
…tokens in batch create page - Replace bg-red-50 with bg-destructive/5 dark:bg-destructive/10 for error rows - Replace bg-emerald-100 text-emerald-700 with semantic tokens in valid badge - Add dark mode support to yellow warning text (text-yellow-600 dark:text-yellow-400) - Ensures colors adapt properly in both light and dark modes
…hboard stats - Add optional 'truncate' prop to TokenAmount component - Display full value in title attribute (tooltip) when truncated - Apply truncation to 'Available to withdraw' stat card value - Prevents overflow of large formatted balances at smaller breakpoints
…stant loading UI Add lightweight loading indicators for 6 app router routes: - app/app/: dashboard with stats and stream list skeletons - app/app/streams/: stream list loading skeleton - app/app/analytics/: chart loading skeletons - app/app/settings/: settings form placeholder skeleton - app/app/stream/[id]/: stream detail page skeleton - app/app/create/: create stream form skeleton Reuses existing skeleton components (DashboardStatsSkeleton, StreamCardSkeleton, ChartSkeleton) for consistent UI patterns and improved perceived performance during route transitions.
- Display friendly empty state when no webhooks are registered - Add Webhook icon and helpful messaging for new users - Include CTA button to register first webhook with smooth scroll anchor - Follows existing empty-state design patterns from streams list - Improves user experience when viewing settings with no webhooks
|
@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.
UI/UX Improvements: Dark Mode & Loading States
Closes #670
Closes #671
Closes #672
Closes #673
This PR implements four UI/UX enhancements to improve the user experience across the FlowStar dashboard, batch creation, and webhook management pages.
Summary of Changes
This pull request addresses four GitHub issues with focused improvements to dark mode compatibility, overflow handling, loading state feedback, and
empty state messaging.
🎨 Issue #670: Dark Mode Colors in Batch Create Page
Fixed hardcoded Tailwind color classes in the batch create page that didn't adapt to dark mode:
Changes:
bg-red-50with semantic tokenbg-destructive/5 dark:bg-destructive/10for error row highlightingbg-emerald-100 text-emerald-700tobg-emerald-500/10 text-emerald-600 dark:text-emerald-400text-yellow-600 dark:text-yellow-400Files Modified:
app/app/create/batch/page.tsxImpact: Users now see properly themed colors in both light and dark modes throughout the batch create interface.
🏷️ Issue #671: TokenAmount Overflow in Dashboard Stats Card
Fixed TokenAmount display overflow in the dashboard stats card that broke layout at smaller breakpoints:
Changes:
truncateprop to TokenAmount componentFiles Modified:
components/ui/token-amount.tsx- Added truncate prop and tooltip functionalitycomponents/streams/dashboard-stats.tsx- Applied truncation to withdrawable amount displayImpact: Large token amounts no longer overflow the stat cards at smaller screen sizes, improving mobile responsiveness.
⏳ Issue #672: Loading States for Route Transitions
Implemented Next.js
loading.tsxroute-level files for instant loading UI during route transitions:Changes:
Created 6 new loading indicator files that provide immediate visual feedback during navigation:
app/app/loading.tsx- Dashboard with DashboardStatsSkeleton and StreamCardSkeletonapp/app/streams/loading.tsx- Stream list view with StreamCardSkeletonapp/app/analytics/loading.tsx- Analytics page with ChartSkeleton componentsapp/app/settings/loading.tsx- Settings form placeholder skeletonapp/app/stream/[id]/loading.tsx- Stream detail page skeleton with header and timelineapp/app/create/loading.tsx- Create stream form skeletonFiles Created:
app/app/loading.tsxapp/app/streams/loading.tsxapp/app/analytics/loading.tsxapp/app/settings/loading.tsxapp/app/stream/[id]/loading.tsxapp/app/create/loading.tsxImplementation Details:
Impact: Users experience smoother page transitions with instant loading indicators rather than blank screens.
🪝 Issue #673: Empty State for Webhook Settings
Implemented user-friendly empty state when no webhooks are registered:
Changes:
Files Modified:
components/webhooks/webhook-settings.tsxImplementation Details:
webhooks.length === 0, otherwise shows webhook listImpact: New users are no longer greeted with a blank screen in the webhooks section; instead receive clear guidance on how to register their first
webhook.
Technical Details
Files Changed
app/app/create/batch/page.tsx- 3 insertions, 3 deletionscomponents/ui/token-amount.tsx- 10 insertions, 1 deletioncomponents/streams/dashboard-stats.tsx- 1 insertioncomponents/webhooks/webhook-settings.tsx- 40 insertions, 11 deletionsTotal: 10 files affected, 209 insertions (+), 15 deletions (-)
Testing Recommendations
Related Issues
Closes #670
Closes #671
Closes #672
Closes #673