48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import { Component, type ReactNode } from "react";
|
|
import { withTranslation, type WithTranslation } from "react-i18next";
|
|
|
|
type ErrorBoundaryProps = {
|
|
children: ReactNode;
|
|
} & WithTranslation;
|
|
|
|
type ErrorBoundaryState = {
|
|
hasError: boolean;
|
|
message: string;
|
|
};
|
|
|
|
class ErrorBoundaryComponent extends Component<ErrorBoundaryProps, ErrorBoundaryState> {
|
|
state: ErrorBoundaryState = {
|
|
hasError: false,
|
|
message: "",
|
|
};
|
|
|
|
static getDerivedStateFromError(error: Error): ErrorBoundaryState {
|
|
return {
|
|
hasError: true,
|
|
message: error.message || "Unknown error",
|
|
};
|
|
}
|
|
|
|
componentDidCatch(error: Error) {
|
|
console.error(error);
|
|
}
|
|
|
|
render() {
|
|
const { t } = this.props;
|
|
if (this.state.hasError) {
|
|
return (
|
|
<div className="h-screen w-screen flex items-center justify-center bg-background text-foreground p-6">
|
|
<div className="max-w-lg text-center">
|
|
<h1 className="text-xl font-semibold mb-2">{t('pageRenderFailed')}</h1>
|
|
<p className="text-sm text-muted-foreground break-words">{this.state.message}</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return this.props.children;
|
|
}
|
|
}
|
|
|
|
export const ErrorBoundary = withTranslation()(ErrorBoundaryComponent);
|