2022-08-31 18:47:07 +00:00
|
|
|
import Logger from "../utils/logger";
|
2022-10-11 23:54:38 +00:00
|
|
|
import { Margins, 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 {
|
2022-10-11 23:54:38 +00:00
|
|
|
fallback?: React.ComponentType<React.PropsWithChildren<{ error: any; message: string; stack: string; }>>;
|
2022-08-31 18:47:07 +00:00
|
|
|
onError?(error: Error, errorInfo: React.ErrorInfo): void;
|
2022-10-17 19:18:25 +00:00
|
|
|
message?: string;
|
2022-08-31 18:47:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
2022-10-11 23:54:38 +00:00
|
|
|
stack: "",
|
2022-08-31 18:47:07 +00:00
|
|
|
message: ""
|
|
|
|
};
|
|
|
|
|
|
|
|
static getDerivedStateFromError(error: any) {
|
2022-10-11 23:54:38 +00:00
|
|
|
let stack = error?.stack ?? "";
|
|
|
|
let message = error?.message || String(error);
|
2022-08-31 18:47:07 +00:00
|
|
|
|
2022-10-11 23:54:38 +00:00
|
|
|
if (error instanceof Error && stack) {
|
|
|
|
const eolIdx = stack.indexOf("\n");
|
|
|
|
if (eolIdx !== -1) {
|
|
|
|
message = stack.slice(0, eolIdx);
|
|
|
|
stack = stack.slice(eolIdx + 1).replace(/https:\/\/\S+\/assets\//g, "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return { error, stack, message };
|
2022-08-31 18:47:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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}
|
2022-10-11 23:54:38 +00:00
|
|
|
{...this.state}
|
2022-08-31 18:47:07 +00:00
|
|
|
/>;
|
|
|
|
|
2022-10-17 19:18:25 +00:00
|
|
|
const msg = this.props.message || "An error occurred while rendering this Component. More info can be found below and in your console.";
|
|
|
|
|
2022-08-31 18:47:07 +00:00
|
|
|
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>
|
2022-10-17 19:18:25 +00:00
|
|
|
<p>{msg}</p>
|
2022-08-31 18:47:07 +00:00
|
|
|
<code>
|
2022-10-11 23:54:38 +00:00
|
|
|
{this.state.message}
|
|
|
|
{!!this.state.stack && (
|
|
|
|
<pre className={Margins.marginTop8}>
|
|
|
|
{this.state.stack}
|
|
|
|
</pre>
|
|
|
|
)}
|
2022-08-31 18:47:07 +00:00
|
|
|
</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
|
|
|
}
|