feat(dashboard): isolate widget failures with WidgetErrorBoundary (#474)#490
Open
temisan0x wants to merge 1 commit into
Open
feat(dashboard): isolate widget failures with WidgetErrorBoundary (#474)#490temisan0x wants to merge 1 commit into
temisan0x wants to merge 1 commit into
Conversation
Adds WidgetErrorBoundary rendering WidgetErrorState with retry and wraps each dashboard widget to prevent full-page crashes. - New components/ui/WidgetErrorBoundary.tsx (class component, 'use client') - Logs caught errors via lib/logger.ts logError + generateRequestId - Wraps StatCard x4, QuickActions, CurrentMoneySplitWidget, MoneyDistributionWidget, RecentTransactionsWidget, SavingsByGoalWidget, BillsByType individually - All tsc/lint failures are pre-existing, zero regressions from diff Closes Remitwise-Org#474
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
Adds a reusable
WidgetErrorBoundarycomponent and wraps each major dashboard widget individually, so a single widget throwing no longer blanks the entire dashboard.Changes
components/ui/WidgetErrorBoundary.tsx— React class error boundary ("use client") that catches render errors, logs them vialib/logger.ts, and rendersWidgetErrorStatewith a retry/reset buttonapp/dashboard/page.tsx— each of the 9 major widgets wrapped in its own boundary:StatCard×4,QuickActions,CurrentMoneySplitWidget,MoneyDistributionWidget,RecentTransactionsWidget,SavingsByGoalWidget,BillsByTypeBehaviour
dashboard/<widgetName>role="alert"(already onWidgetErrorState); boundary wrapper usesrole="region"+aria-labelTest notes
npx tsc --noEmitandnpm run lintexit 1 on pre-existing errors ininsurance/page.tsx,remittanceTrendChart.tsx,SwaggerUIWrapper.tsx, andSessionExpiryNotification.tsx— zero regressions from this diffCloses #474