feat(frontend): add LazyBoundary for chunk-load failure recovery (#875)

* feat(frontend): add LazyBoundary for chunk-load failure recovery

When a lazy chunk fetch fails, the existing top-level ErrorBoundary shows
"Something went wrong" with a "Try again" CTA. "Try again" cannot succeed
against a chunk URL that no longer exists on the server (typical post-
deploy case where the user's tab was opened against an older bundle).
The right remedy is to reload the tab so the browser fetches the new
hashed chunks emitted by the current build.

Add LazyBoundary, a section-local error boundary that:

- Detects chunk-load errors via a substring union covering Chrome / Edge
  ("Failed to fetch dynamically imported module"), Safari ("Importing a
  module script failed"), Firefox ("disallowed MIME type" thrown when a
  deploy serves SPA index.html for a missing chunk URL), older Webpack
  ("Error loading dynamically imported module"), and Vite ("Loading
  chunk/CSS chunk N failed").
- For chunk errors, renders a glass-card matching the LockCard aesthetic
  with an AlertTriangle icon, a "This part of Sencho needs a reload"
  message, and a Reload CTA that calls window.location.reload().
- For non-chunk runtime errors, falls back to "Something went wrong" +
  the error message + a Try again CTA. Try again is safe on this path
  because the lazy import has already resolved before the render error
  fires.
- Logs to console.error in componentDidCatch so the underlying failure
  is still observable.
- Has role="alert" so screen readers announce the failure.

Wrap every existing Suspense site (1 in SettingsPage, 7 in EditorLayout
including the security-history overlay, 1 in ResourcesView) with
LazyBoundary. The top-level ErrorBoundary remains the catch-all for
errors that escape the section-local boundary.

Includes a unit test enumerating each browser's documented chunk-load
message so a regression in any one runtime is caught early.

* fix(frontend): move isChunkLoadError to its own file to satisfy react-refresh/only-export-components
This commit is contained in:
Anso
2026-05-02 03:40:45 -04:00
committed by GitHub
parent 6fa0272e79
commit b843b89ca4
6 changed files with 251 additions and 58 deletions
+53 -38
View File
@@ -8,6 +8,7 @@ import ErrorBoundary from './ErrorBoundary';
import HomeDashboard from './HomeDashboard';
import type { NotificationItem } from './dashboard/types';
import BashExecModal from './BashExecModal';
import LazyBoundary from './LazyBoundary';
import { Skeleton } from '@/components/ui/skeleton';
import { AdmiralGate } from './AdmiralGate';
import { CapabilityGate } from './CapabilityGate';
@@ -2523,9 +2524,11 @@ export default function EditorLayout() {
) : activeView === 'host-console' ? (
<AdmiralGate featureName="Host Console">
<CapabilityGate capability="host-console" featureName="Host Console">
<Suspense fallback={<ViewSkeleton />}>
<HostConsole stackName={selectedFile} onClose={() => setActiveView(selectedFile ? 'editor' : 'dashboard')} />
</Suspense>
<LazyBoundary>
<Suspense fallback={<ViewSkeleton />}>
<HostConsole stackName={selectedFile} onClose={() => setActiveView(selectedFile ? 'editor' : 'dashboard')} />
</Suspense>
</LazyBoundary>
</CapabilityGate>
</AdmiralGate>
) : !isLoading && selectedFile && activeView === 'editor' ? (
@@ -3064,47 +3067,57 @@ export default function EditorLayout() {
</div>
</ErrorBoundary>
) : activeView === 'global-observability' ? (
<Suspense fallback={<ViewSkeleton />}>
<GlobalObservabilityView />
</Suspense>
<LazyBoundary>
<Suspense fallback={<ViewSkeleton />}>
<GlobalObservabilityView />
</Suspense>
</LazyBoundary>
) : activeView === 'fleet' ? (
<CapabilityGate capability="fleet" featureName="Fleet Management">
<Suspense fallback={<ViewSkeleton />}>
<FleetView onNavigateToNode={(nodeId, stackName) => {
const node = nodes.find(n => n.id === nodeId);
if (node) {
if (activeNode?.id === nodeId) {
loadFile(stackName);
} else {
pendingStackLoadRef.current = stackName;
setActiveNode(node);
<LazyBoundary>
<Suspense fallback={<ViewSkeleton />}>
<FleetView onNavigateToNode={(nodeId, stackName) => {
const node = nodes.find(n => n.id === nodeId);
if (node) {
if (activeNode?.id === nodeId) {
loadFile(stackName);
} else {
pendingStackLoadRef.current = stackName;
setActiveNode(node);
}
}
}
}} />
</Suspense>
}} />
</Suspense>
</LazyBoundary>
</CapabilityGate>
) : activeView === 'audit-log' ? (
<CapabilityGate capability="audit-log" featureName="Audit Log">
<Suspense fallback={<ViewSkeleton />}>
<AuditLogView />
</Suspense>
<LazyBoundary>
<Suspense fallback={<ViewSkeleton />}>
<AuditLogView />
</Suspense>
</LazyBoundary>
</CapabilityGate>
) : activeView === 'auto-updates' ? (
<CapabilityGate capability="auto-updates" featureName="Auto-Update Readiness">
<Suspense fallback={<ViewSkeleton />}>
<AutoUpdateReadinessView />
</Suspense>
<LazyBoundary>
<Suspense fallback={<ViewSkeleton />}>
<AutoUpdateReadinessView />
</Suspense>
</LazyBoundary>
</CapabilityGate>
) : activeView === 'scheduled-ops' ? (
<CapabilityGate capability="scheduled-ops" featureName="Scheduled Operations">
<Suspense fallback={<ViewSkeleton />}>
<ScheduledOperationsView
filterNodeId={filterNodeId}
onClearFilter={() => setFilterNodeId(null)}
prefill={schedulePrefill}
onPrefillConsumed={handlePrefillConsumed}
/>
</Suspense>
<LazyBoundary>
<Suspense fallback={<ViewSkeleton />}>
<ScheduledOperationsView
filterNodeId={filterNodeId}
onClearFilter={() => setFilterNodeId(null)}
prefill={schedulePrefill}
onPrefillConsumed={handlePrefillConsumed}
/>
</Suspense>
</LazyBoundary>
</CapabilityGate>
) : (
<HomeDashboard
@@ -3328,12 +3341,14 @@ export default function EditorLayout() {
defeat the split. The overlay has no internal state that needs
to persist across opens. */}
{securityHistoryOpen ? (
<Suspense fallback={null}>
<SecurityHistoryView
open
onClose={() => setSecurityHistoryOpen(false)}
/>
</Suspense>
<LazyBoundary>
<Suspense fallback={null}>
<SecurityHistoryView
open
onClose={() => setSecurityHistoryOpen(false)}
/>
</Suspense>
</LazyBoundary>
) : null}
</div>
</GlobalCommandPaletteProvider>
+80
View File
@@ -0,0 +1,80 @@
import { Component } from 'react';
import type { ErrorInfo, ReactNode } from 'react';
import { AlertTriangle } from 'lucide-react';
import { Button } from '@/components/ui/button';
import { isChunkLoadError } from './isChunkLoadError';
interface Props {
children: ReactNode;
}
interface State {
hasError: boolean;
error: Error | null;
}
/**
* Specialized error boundary for lazy-loaded subtrees. Catches errors
* thrown during chunk fetch and renders a small card inviting the user
* to reload. Reload is the actual remedy because the stale tab is asking
* for chunk URLs that the deployed bundle no longer emits; a "Try again"
* against the same URL would just fail again.
*
* For non-chunk runtime errors (the lazy module loaded but threw during
* render) the boundary falls back to a "Try again" CTA that resets state
* and re-renders the children. This is safe because the lazy import has
* already resolved on this path, so re-rendering does not re-trigger a
* chunk fetch; if the underlying error is non-deterministic (e.g. a stale
* API response) the retry can succeed. If the error is deterministic the
* card just reappears, which is the expected behavior of any boundary.
*
* Sized via min-h-[280px] to look at home in both the workspace area
* and inline-section contexts that wrap lazy components.
*/
class LazyBoundary extends Component<Props, State> {
public state: State = {
hasError: false,
error: null,
};
public static getDerivedStateFromError(error: Error): State {
return { hasError: true, error };
}
public componentDidCatch(error: Error, errorInfo: ErrorInfo) {
console.error('LazyBoundary caught an error:', error, errorInfo);
}
public render() {
if (!this.state.hasError) return this.props.children;
const isChunk = isChunkLoadError(this.state.error);
const title = isChunk ? 'This part of Sencho needs a reload' : 'Something went wrong';
const body = isChunk
? 'A newer version may have shipped while this tab was open. Reload to fetch the latest.'
: this.state.error?.message || 'Unknown error';
const ctaLabel = isChunk ? 'Reload' : 'Try again';
const onCta = isChunk
? () => window.location.reload()
: () => this.setState({ hasError: false, error: null });
return (
<div className="flex flex-1 items-center justify-center min-h-[280px] p-8" role="alert">
<div className="flex flex-col items-center gap-4 rounded-xl border border-glass-border bg-glass px-10 py-8 text-center max-w-md">
<div className="flex items-center justify-center w-12 h-12 rounded-full border border-glass-border bg-glass">
<AlertTriangle className="w-5 h-5 text-stat-subtitle" strokeWidth={1.5} />
</div>
<div className="flex flex-col gap-1">
<p className="text-sm font-semibold text-stat-value">{title}</p>
<p className="text-sm text-stat-subtitle">{body}</p>
</div>
<Button variant="outline" size="sm" onClick={onCta}>
{ctaLabel}
</Button>
</div>
</div>
);
}
}
export default LazyBoundary;
+17 -14
View File
@@ -29,6 +29,7 @@ import { useAuth } from '@/context/AuthContext';
import { useLicense } from '@/context/LicenseContext';
import { PaidGate } from './PaidGate';
import { CapabilityGate } from './CapabilityGate';
import LazyBoundary from './LazyBoundary';
import { formatBytes } from '@/lib/utils';
import { cn } from '@/lib/utils';
import { SENCHO_OPEN_LOGS_EVENT } from '@/lib/events';
@@ -1022,20 +1023,22 @@ export default function ResourcesView() {
<div className="p-4">
<PaidGate featureName="Network Topology">
<CapabilityGate capability="network-topology" featureName="Network Topology">
<Suspense fallback={
<div className="flex items-center justify-center h-[400px] text-muted-foreground gap-2">
<span className="text-sm">Loading topology...</span>
</div>
}>
<NetworkTopologyView
key={activeNode?.id}
onContainerClick={(id, name) => {
window.dispatchEvent(new CustomEvent<SenchoOpenLogsDetail>(SENCHO_OPEN_LOGS_EVENT, {
detail: { containerId: id, containerName: name },
}));
}}
/>
</Suspense>
<LazyBoundary>
<Suspense fallback={
<div className="flex items-center justify-center h-[400px] text-muted-foreground gap-2">
<span className="text-sm">Loading topology...</span>
</div>
}>
<NetworkTopologyView
key={activeNode?.id}
onContainerClick={(id, name) => {
window.dispatchEvent(new CustomEvent<SenchoOpenLogsDetail>(SENCHO_OPEN_LOGS_EVENT, {
detail: { containerId: id, containerName: name },
}));
}}
/>
</Suspense>
</LazyBoundary>
</CapabilityGate>
</PaidGate>
</div>
@@ -0,0 +1,59 @@
import { describe, it, expect } from 'vitest';
import { isChunkLoadError } from '../isChunkLoadError';
/**
* isChunkLoadError is a substring union over the messages browsers emit
* when a dynamically-imported chunk URL is no longer reachable. The heuristic
* is the entire feature: a missed variant routes a stale-tab user to a
* misleading "Try again" CTA instead of "Reload", and "Try again" can never
* succeed against a chunk URL that no longer exists. Keep this fixture in
* sync with the documented browser variants in LazyBoundary.tsx.
*/
describe('isChunkLoadError', () => {
it('returns false for null', () => {
expect(isChunkLoadError(null)).toBe(false);
});
it('returns false for undefined', () => {
expect(isChunkLoadError(undefined)).toBe(false);
});
it('returns false for unrelated runtime errors', () => {
expect(isChunkLoadError(new Error('Cannot read properties of undefined'))).toBe(false);
expect(isChunkLoadError(new Error('Maximum update depth exceeded'))).toBe(false);
expect(isChunkLoadError(new Error('Network request failed'))).toBe(false);
});
it('matches Chrome / Edge "Failed to fetch dynamically imported module"', () => {
const err = new Error('Failed to fetch dynamically imported module: https://app.example/assets/FleetView-abc123.js');
expect(isChunkLoadError(err)).toBe(true);
});
it('matches Safari "Importing a module script failed."', () => {
expect(isChunkLoadError(new Error('Importing a module script failed.'))).toBe(true);
});
it('matches Firefox MIME-type variant produced when a deploy serves index.html for a missing chunk', () => {
const err = new Error(
'Loading module from "https://app.example/assets/FleetView-abc123.js" was blocked because of a disallowed MIME type ("text/html").',
);
expect(isChunkLoadError(err)).toBe(true);
});
it('matches older Webpack "Error loading dynamically imported module"', () => {
expect(isChunkLoadError(new Error('Error loading dynamically imported module'))).toBe(true);
});
it('matches Vite "Loading chunk N failed."', () => {
expect(isChunkLoadError(new Error('Loading chunk 42 failed.'))).toBe(true);
});
it('matches Vite "Loading CSS chunk N failed"', () => {
expect(isChunkLoadError(new Error('Loading CSS chunk 42 failed'))).toBe(true);
});
it('is case-insensitive', () => {
expect(isChunkLoadError(new Error('FAILED TO FETCH DYNAMICALLY IMPORTED MODULE'))).toBe(true);
expect(isChunkLoadError(new Error('Loading Chunk 12 Failed'))).toBe(true);
});
});
@@ -0,0 +1,30 @@
/**
* Recognises the error messages browsers throw when a dynamically-imported
* chunk URL is no longer reachable. Each runtime worded the failure
* differently, so the heuristic is a substring union rather than a single
* regex; broadening to a generic "module + fail" match would over-fire on
* legitimate runtime errors and route them to a misleading Reload CTA.
*
* Currently covered:
* - Chrome / Edge: "Failed to fetch dynamically imported module: <url>"
* - Safari: "Importing a module script failed."
* - Firefox: "Loading module from \"<url>\" was blocked because of a disallowed MIME type (\"text/html\")."
* (fired when a deploy serves the SPA index.html for a missing chunk URL)
* - Older Webpack: "Error loading dynamically imported module"
* - Vite: "Loading chunk N failed." / "Loading CSS chunk N failed"
*
* Add new substrings here as new browser variants surface; cover them in
* the matching unit test so a regression in one runtime is caught early.
*/
export function isChunkLoadError(error: Error | null | undefined): boolean {
if (!error) return false;
const msg = error.message.toLowerCase();
return (
msg.includes('failed to fetch dynamically imported module') ||
msg.includes('importing a module script failed') ||
msg.includes('error loading dynamically imported module') ||
msg.includes('disallowed mime type') ||
msg.includes('loading chunk') ||
msg.includes('loading css chunk')
);
}
@@ -33,6 +33,7 @@ import {
isItemLocked,
} from './index';
import type { SectionId, SettingsItemMeta, VisibilityContext } from './index';
import LazyBoundary from '../LazyBoundary';
import { SectionGate } from './SectionGate';
import { SettingsSidebar } from './SettingsSidebar';
import { MastheadStatsProvider, useMastheadStatsValue } from './MastheadStatsContext';
@@ -254,12 +255,17 @@ function SettingsPageInner({ currentSection, onSectionChange }: SettingsPageProp
) : null}
{/* Suspense outside SectionGate so the locked-tier
path (which never mounts the lazy children)
does not see a fallback flash. */}
<Suspense fallback={<SectionSkeleton />}>
<SectionGate sectionId={safeSection}>
{sectionElement}
</SectionGate>
</Suspense>
does not see a fallback flash. LazyBoundary
outside Suspense catches chunk-fetch failures
so a stale tab spans-deploy mismatch shows a
Reload card instead of crashing the workspace. */}
<LazyBoundary>
<Suspense fallback={<SectionSkeleton />}>
<SectionGate sectionId={safeSection}>
{sectionElement}
</SectionGate>
</Suspense>
</LazyBoundary>
</div>
</ScrollArea>
</div>