mirror of
https://github.com/elisiariocouto/leggen.git
synced 2025-12-13 13:42:19 +00:00
96 lines
3.0 KiB
TypeScript
96 lines
3.0 KiB
TypeScript
import { Component } from "react";
|
|
import type { ErrorInfo, ReactNode } from "react";
|
|
import { AlertTriangle, RefreshCw } from "lucide-react";
|
|
import { Card, CardContent } from "./ui/card";
|
|
import { Alert, AlertDescription, AlertTitle } from "./ui/alert";
|
|
import { Button } from "./ui/button";
|
|
|
|
interface Props {
|
|
children: ReactNode;
|
|
fallback?: ReactNode;
|
|
}
|
|
|
|
interface State {
|
|
hasError: boolean;
|
|
error?: Error;
|
|
errorInfo?: ErrorInfo;
|
|
}
|
|
|
|
class ErrorBoundary extends Component<Props, State> {
|
|
constructor(props: Props) {
|
|
super(props);
|
|
this.state = { hasError: false };
|
|
}
|
|
|
|
static getDerivedStateFromError(error: Error): State {
|
|
return { hasError: true, error };
|
|
}
|
|
|
|
componentDidCatch(error: Error, errorInfo: ErrorInfo) {
|
|
console.error("ErrorBoundary caught an error:", error, errorInfo);
|
|
this.setState({ error, errorInfo });
|
|
}
|
|
|
|
handleReset = () => {
|
|
this.setState({ hasError: false, error: undefined, errorInfo: undefined });
|
|
};
|
|
|
|
render() {
|
|
if (this.state.hasError) {
|
|
if (this.props.fallback) {
|
|
return this.props.fallback;
|
|
}
|
|
|
|
return (
|
|
<Card>
|
|
<CardContent className="p-6">
|
|
<div className="flex items-center justify-center text-center">
|
|
<div>
|
|
<AlertTriangle className="h-12 w-12 text-destructive mx-auto mb-4" />
|
|
<h3 className="text-lg font-medium text-foreground mb-2">
|
|
Something went wrong
|
|
</h3>
|
|
<p className="text-muted-foreground mb-4">
|
|
An error occurred while rendering this component. Please try
|
|
refreshing or check the console for more details.
|
|
</p>
|
|
|
|
{this.state.error && (
|
|
<Alert variant="destructive" className="mb-4 text-left">
|
|
<AlertTriangle className="h-4 w-4" />
|
|
<AlertTitle>Error Details</AlertTitle>
|
|
<AlertDescription className="space-y-2">
|
|
<p className="text-sm font-mono">
|
|
<strong>Error:</strong> {this.state.error.message}
|
|
</p>
|
|
{this.state.error.stack && (
|
|
<details className="mt-2">
|
|
<summary className="text-sm cursor-pointer">
|
|
Stack trace
|
|
</summary>
|
|
<pre className="text-xs mt-1 whitespace-pre-wrap">
|
|
{this.state.error.stack}
|
|
</pre>
|
|
</details>
|
|
)}
|
|
</AlertDescription>
|
|
</Alert>
|
|
)}
|
|
|
|
<Button onClick={this.handleReset}>
|
|
<RefreshCw className="h-4 w-4 mr-2" />
|
|
Try Again
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
return this.props.children;
|
|
}
|
|
}
|
|
|
|
export default ErrorBoundary;
|