2022-08-31 18:47:07 +00:00
|
|
|
import Logger from "../utils/logger";
|
2022-09-30 22:42:50 +00:00
|
|
|
import { Card, React } from "../webpack/common";
|
2022-10-02 00:46:41 +00:00
|
|
|
import { ErrorCard } from "./ErrorCard";
|
2022-08-31 18:47:07 +00:00
|
|
|
|
|
|
|
interface Props {
|
|
|
|
fallback?: React.ComponentType<React.PropsWithChildren<{ error: any; }>>;
|
|
|
|
onError?(error: Error, errorInfo: React.ErrorInfo): void;
|
|
|
|
}
|
|
|
|
|
|
|
|
const color = "#e78284";
|
|
|
|
|
|
|
|
const logger = new Logger("React ErrorBoundary", color);
|
|
|
|
|
|
|
|
const NO_ERROR = {};
|
|
|
|
|
|
|
|
export default class ErrorBoundary extends React.Component<React.PropsWithChildren<Props>> {
|
|
|
|
static wrap<T = any>(Component: React.ComponentType<T>): (props: T) => React.ReactElement {
|
2022-10-05 22:42:58 +00:00
|
|
|
return props => (
|
2022-08-31 18:47:07 +00:00
|
|
|
<ErrorBoundary>
|
2022-09-30 22:42:50 +00:00
|
|
|
<Component {...props as any/* I hate react typings ??? */} />
|
2022-08-31 18:47:07 +00:00
|
|
|
</ErrorBoundary>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
state = {
|
|
|
|
error: NO_ERROR as any,
|
|
|
|
message: ""
|
|
|
|
};
|
|
|
|
|
|
|
|
static getDerivedStateFromError(error: any) {
|
|
|
|
|
|
|
|
return {
|
|
|
|
error: error?.stack?.replace(/https:\/\/\S+\/assets\//g, "") || error?.message || String(error)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidCatch(error: Error, errorInfo: React.ErrorInfo) {
|
|
|
|
this.props.onError?.(error, errorInfo);
|
|
|
|
logger.error("A component threw an Error\n", error);
|
|
|
|
logger.error("Component Stack", errorInfo.componentStack);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
if (this.state.error === NO_ERROR) return this.props.children;
|
|
|
|
|
|
|
|
if (this.props.fallback)
|
|
|
|
return <this.props.fallback
|
|
|
|
children={this.props.children}
|
|
|
|
error={this.state.error}
|
|
|
|
/>;
|
|
|
|
|
|
|
|
return (
|
2022-10-02 00:46:41 +00:00
|
|
|
<ErrorCard style={{
|
2022-08-31 18:47:07 +00:00
|
|
|
overflow: "hidden",
|
|
|
|
}}>
|
|
|
|
<h1>Oh no!</h1>
|
|
|
|
<p>
|
|
|
|
An error occurred while rendering this Component. More info can be found below
|
|
|
|
and in your console.
|
|
|
|
</p>
|
|
|
|
<code>
|
2022-10-02 00:46:41 +00:00
|
|
|
<pre>
|
|
|
|
{this.state.error}
|
2022-08-31 18:47:07 +00:00
|
|
|
</pre>
|
|
|
|
</code>
|
2022-10-02 00:46:41 +00:00
|
|
|
</ErrorCard>
|
2022-08-31 18:47:07 +00:00
|
|
|
);
|
|
|
|
}
|
2022-09-16 20:59:34 +00:00
|
|
|
}
|