diff options
author | Vendicated <vendicated@riseup.net> | 2022-10-12 01:54:38 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-10-12 01:54:38 +0200 |
commit | 66f8fde353076180276ba79d984bde60df57ab29 (patch) | |
tree | 6628d2df3b68950d01d110e726192aaec29ec40d /src/components | |
parent | 071508c61aca2eeca21379b8ad1a0907949f2022 (diff) | |
download | Vencord-66f8fde353076180276ba79d984bde60df57ab29.tar.gz Vencord-66f8fde353076180276ba79d984bde60df57ab29.tar.bz2 Vencord-66f8fde353076180276ba79d984bde60df57ab29.zip |
Improve ErrorBoundary layout
Now the error cause will be wrapped to prevent it from being cut off,
only wrap the stacktrace in pre
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/ErrorBoundary.tsx | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/src/components/ErrorBoundary.tsx b/src/components/ErrorBoundary.tsx index 83f35e6..c62acb0 100644 --- a/src/components/ErrorBoundary.tsx +++ b/src/components/ErrorBoundary.tsx @@ -1,9 +1,9 @@ import Logger from "../utils/logger"; -import { Card, React } from "../webpack/common"; +import { Margins, React } from "../webpack/common"; import { ErrorCard } from "./ErrorCard"; interface Props { - fallback?: React.ComponentType<React.PropsWithChildren<{ error: any; }>>; + fallback?: React.ComponentType<React.PropsWithChildren<{ error: any; message: string; stack: string; }>>; onError?(error: Error, errorInfo: React.ErrorInfo): void; } @@ -24,14 +24,23 @@ export default class ErrorBoundary extends React.Component<React.PropsWithChildr state = { error: NO_ERROR as any, + stack: "", message: "" }; static getDerivedStateFromError(error: any) { + let stack = error?.stack ?? ""; + let message = error?.message || String(error); - return { - error: error?.stack?.replace(/https:\/\/\S+\/assets\//g, "") || error?.message || String(error) - }; + 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 }; } componentDidCatch(error: Error, errorInfo: React.ErrorInfo) { @@ -46,7 +55,7 @@ export default class ErrorBoundary extends React.Component<React.PropsWithChildr if (this.props.fallback) return <this.props.fallback children={this.props.children} - error={this.state.error} + {...this.state} />; return ( @@ -59,9 +68,12 @@ export default class ErrorBoundary extends React.Component<React.PropsWithChildr and in your console. </p> <code> - <pre> - {this.state.error} - </pre> + {this.state.message} + {!!this.state.stack && ( + <pre className={Margins.marginTop8}> + {this.state.stack} + </pre> + )} </code> </ErrorCard> ); |