2023-02-16 22:39:57 +00:00
|
|
|
import type { ErrorInfo } from "react";
|
|
|
|
import React from "react";
|
2022-05-26 17:07:14 +00:00
|
|
|
|
|
|
|
class ErrorBoundary extends React.Component<
|
2022-10-14 16:24:43 +00:00
|
|
|
{ children: React.ReactNode; message?: string },
|
2022-05-26 17:07:14 +00:00
|
|
|
{ error: Error | null; errorInfo: ErrorInfo | null }
|
|
|
|
> {
|
|
|
|
constructor(props: { children: React.ReactNode } | Readonly<{ children: React.ReactNode }>) {
|
|
|
|
super(props);
|
|
|
|
this.state = { error: null, errorInfo: null };
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidCatch?(error: Error, errorInfo: ErrorInfo) {
|
|
|
|
// Catch errors in any components below and re-render with error message
|
|
|
|
this.setState({ error, errorInfo });
|
|
|
|
// You can also log error messages to an error reporting service here
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
if (this.state.errorInfo) {
|
|
|
|
// Error path
|
|
|
|
return (
|
|
|
|
<div>
|
2022-10-14 16:24:43 +00:00
|
|
|
<h2>{this.props.message || "Something went wrong."}</h2>
|
2022-05-26 17:07:14 +00:00
|
|
|
<details style={{ whiteSpace: "pre-wrap" }}>
|
|
|
|
{this.state.error && this.state.error.toString()}
|
|
|
|
</details>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
// Normally, just render children
|
|
|
|
return this.props.children;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ErrorBoundary;
|