Vencord/src/components/ErrorBoundary.tsx

82 lines
2.5 KiB
TypeScript
Raw Normal View History

2022-08-31 18:47:07 +00:00
import Logger from "../utils/logger";
import { Margins, React } from "../webpack/common";
import { ErrorCard } from "./ErrorCard";
2022-08-31 18:47:07 +00:00
interface Props {
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;
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 {
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,
stack: "",
2022-08-31 18:47:07 +00:00
message: ""
};
static getDerivedStateFromError(error: any) {
let stack = error?.stack ?? "";
let message = error?.message || String(error);
2022-08-31 18:47:07 +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}
{...this.state}
2022-08-31 18:47:07 +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 (
<ErrorCard style={{
2022-08-31 18:47:07 +00:00
overflow: "hidden",
}}>
<h1>Oh no!</h1>
<p>{msg}</p>
2022-08-31 18:47:07 +00:00
<code>
{this.state.message}
{!!this.state.stack && (
<pre className={Margins.marginTop8}>
{this.state.stack}
</pre>
)}
2022-08-31 18:47:07 +00:00
</code>
</ErrorCard>
2022-08-31 18:47:07 +00:00
);
}
2022-09-16 20:59:34 +00:00
}