42 lines
977 B
TypeScript
42 lines
977 B
TypeScript
import React from "react";
|
|
import { captureRendererException } from "../lib/telemetry";
|
|
|
|
type Props = {
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
type State = {
|
|
hasError: boolean;
|
|
};
|
|
|
|
export class TelemetryBoundary extends React.Component<Props, State> {
|
|
state: State = { hasError: false };
|
|
|
|
static getDerivedStateFromError() {
|
|
return { hasError: true };
|
|
}
|
|
|
|
componentDidCatch(error: Error, info: React.ErrorInfo) {
|
|
void captureRendererException(error, {
|
|
source: "react-error-boundary",
|
|
});
|
|
void info;
|
|
}
|
|
|
|
render() {
|
|
if (this.state.hasError) {
|
|
return (
|
|
<div className="flex h-screen items-center justify-center bg-background px-6 text-center text-foreground">
|
|
<div>
|
|
<h1 className="text-lg font-semibold">The app hit an unexpected error.</h1>
|
|
<p className="mt-2 text-sm text-muted-foreground">
|
|
Restart the app or check the daemon logs if this keeps happening.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
return this.props.children;
|
|
}
|
|
}
|