agent-ecosystem/src/renderer/components/common/ErrorBoundary.tsx

109 lines
3.4 KiB
TypeScript

import React, { Component, type ErrorInfo, type ReactNode } from 'react';
import { createLogger } from '@shared/utils/logger';
import { AlertTriangle, RefreshCw } from 'lucide-react';
const logger = createLogger('Component:ErrorBoundary');
interface Props {
children: ReactNode;
fallback?: ReactNode;
}
interface State {
hasError: boolean;
error: Error | null;
errorInfo: ErrorInfo | null;
}
export class ErrorBoundary extends Component<Props, State> {
constructor(props: Props) {
super(props);
this.state = {
hasError: false,
error: null,
errorInfo: null,
};
}
static getDerivedStateFromError(error: Error): Partial<State> {
return { hasError: true, error };
}
componentDidCatch(error: Error, errorInfo: ErrorInfo): void {
logger.error('ErrorBoundary caught an error:', error, errorInfo);
this.setState({ errorInfo });
}
handleReload = (): void => {
window.location.reload();
};
handleReset = (): void => {
this.setState({
hasError: false,
error: null,
errorInfo: null,
});
};
// eslint-disable-next-line sonarjs/function-return-type -- Error boundaries inherently return different content based on error state
render(): ReactNode {
const { hasError, error, errorInfo } = this.state;
const { children, fallback } = this.props;
if (hasError) {
if (fallback) {
return fallback;
}
return (
<div className="flex h-screen flex-col items-center justify-center bg-claude-dark-bg p-8 text-claude-dark-text">
<div className="mb-6 flex items-center gap-3">
<AlertTriangle className="size-10 text-red-500" />
<h1 className="text-2xl font-semibold">Something went wrong</h1>
</div>
<p className="mb-6 max-w-md text-center text-claude-dark-text-secondary">
An unexpected error occurred in the application. You can try reloading the page or
resetting the error state.
</p>
{error && (
<div className="mb-6 w-full max-w-2xl overflow-auto rounded-lg border border-claude-dark-border bg-claude-dark-surface p-4">
<p className="mb-2 font-mono text-sm text-red-400">{error.message}</p>
{errorInfo?.componentStack && (
<details className="mt-2">
<summary className="cursor-pointer text-xs text-claude-dark-text-secondary hover:text-claude-dark-text">
Component Stack
</summary>
<pre className="mt-2 whitespace-pre-wrap text-xs text-claude-dark-text-secondary">
{errorInfo.componentStack}
</pre>
</details>
)}
</div>
)}
<div className="flex gap-4">
<button
onClick={this.handleReset}
className="flex items-center gap-2 rounded-lg border border-claude-dark-border bg-claude-dark-surface px-4 py-2 transition-colors hover:bg-claude-dark-border"
>
Try Again
</button>
<button
onClick={this.handleReload}
className="flex items-center gap-2 rounded-lg bg-blue-600 px-4 py-2 transition-colors hover:bg-blue-700"
>
<RefreshCw className="size-4" />
Reload App
</button>
</div>
</div>
);
}
return children;
}
}