import React from "react";
import { ErrorDisplay } from "./error-display";
type ErrorBoundaryState = {
hasError: boolean;
error?: Error;
};
type ErrorBoundaryProps = {
children: React.ReactNode;
fallback?: React.ComponentType<{ error: Error; resetError: () => void }>;
};
export class ErrorBoundary extends React.Component<
ErrorBoundaryProps,
ErrorBoundaryState
> {
constructor(props: ErrorBoundaryProps) {
super(props);
this.state = { hasError: false };
}
static getDerivedStateFromError(error: Error): ErrorBoundaryState {
return { hasError: true, error };
}
componentDidCatch(error: Error, errorInfo: React.ErrorInfo) {
console.error("Error caught by boundary:", error, errorInfo);
}
resetError = () => {
this.setState({ hasError: false, error: undefined });
};
render() {
if (this.state.hasError) {
if (this.props.fallback && this.state.error) {
const FallbackComponent = this.props.fallback;
return (
);
}
return (
);
}
return this.props.children;
}
}