84 lines
2.5 KiB
TypeScript
84 lines
2.5 KiB
TypeScript
import React, { Component } from 'react';
|
|
import type { ReactNode } from 'react';
|
|
import { AlertTriangle } from 'lucide-react';
|
|
import { Button } from './ui';
|
|
|
|
interface Props {
|
|
children: ReactNode;
|
|
}
|
|
|
|
interface State {
|
|
hasError: boolean;
|
|
error: Error | null;
|
|
errorInfo: React.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 };
|
|
}
|
|
|
|
componentDidCatch(error: Error, errorInfo: React.ErrorInfo) {
|
|
console.error('ErrorBoundary caught an error:', error, errorInfo);
|
|
this.setState({
|
|
error,
|
|
errorInfo,
|
|
});
|
|
}
|
|
|
|
handleReset = () => {
|
|
this.setState({
|
|
hasError: false,
|
|
error: null,
|
|
errorInfo: null,
|
|
});
|
|
window.location.href = '/';
|
|
};
|
|
|
|
render() {
|
|
if (this.state.hasError) {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center gradient-bg p-4">
|
|
<div className="max-w-lg w-full glass-effect rounded-2xl shadow-2xl p-8 text-center">
|
|
<div className="inline-flex p-4 bg-red-100 dark:bg-red-900/20 rounded-full mb-6">
|
|
<AlertTriangle className="w-12 h-12 text-red-600 dark:text-red-400" />
|
|
</div>
|
|
<h1 className="text-3xl font-bold text-gray-900 dark:text-white mb-4">
|
|
Oops! Something went wrong
|
|
</h1>
|
|
<p className="text-gray-600 dark:text-gray-400 mb-6">
|
|
We're sorry, but something unexpected happened. Please try refreshing the page or going back to the home page.
|
|
</p>
|
|
{import.meta.env.DEV && this.state.error && (
|
|
<div className="mb-6 p-4 bg-red-50 dark:bg-red-900/10 rounded-lg text-left">
|
|
<p className="text-sm font-mono text-red-800 dark:text-red-300 break-all">
|
|
{this.state.error.toString()}
|
|
</p>
|
|
</div>
|
|
)}
|
|
<div className="flex gap-3">
|
|
<Button variant="primary" fullWidth onClick={() => window.location.reload()}>
|
|
Reload Page
|
|
</Button>
|
|
<Button variant="secondary" fullWidth onClick={this.handleReset}>
|
|
Go to Home
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return this.props.children;
|
|
}
|
|
}
|