2022-03-10 04:28:55 +00:00
|
|
|
import * as React from "react";
|
2022-03-10 20:37:50 +00:00
|
|
|
import StackTrace from "stacktrace-js";
|
2022-04-08 14:44:35 +00:00
|
|
|
import { CircularProgress, Link } from "@mui/material";
|
2022-03-10 20:37:50 +00:00
|
|
|
import Button from "@mui/material/Button";
|
2022-04-08 14:44:35 +00:00
|
|
|
import { Trans, withTranslation } from "react-i18next";
|
2022-03-10 04:28:55 +00:00
|
|
|
|
2022-04-08 14:44:35 +00:00
|
|
|
class ErrorBoundaryImpl extends React.Component {
|
2022-03-10 04:28:55 +00:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2022-03-11 19:43:54 +00:00
|
|
|
this.state = {
|
|
|
|
error: false,
|
|
|
|
originalStack: null,
|
2022-04-30 00:51:26 +00:00
|
|
|
niceStack: null,
|
|
|
|
unsupportedIndexedDB: false,
|
2022-03-11 19:43:54 +00:00
|
|
|
};
|
2022-03-10 04:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidCatch(error, info) {
|
2022-03-10 20:37:50 +00:00
|
|
|
console.error("[ErrorBoundary] Error caught", error, info);
|
2022-03-11 19:43:54 +00:00
|
|
|
|
2022-04-30 00:51:26 +00:00
|
|
|
// Special case for unsupported IndexedDB in Private Browsing mode (Firefox, Safari), see
|
|
|
|
// - https://github.com/dexie/Dexie.js/issues/312
|
|
|
|
// - https://bugzilla.mozilla.org/show_bug.cgi?id=781982
|
|
|
|
const isUnsupportedIndexedDB =
|
|
|
|
error?.name === "InvalidStateError" || (error?.name === "DatabaseClosedError" && error?.message?.indexOf("InvalidStateError") !== -1);
|
|
|
|
|
|
|
|
if (isUnsupportedIndexedDB) {
|
|
|
|
this.handleUnsupportedIndexedDB();
|
|
|
|
} else {
|
|
|
|
this.handleError(error, info);
|
|
|
|
}
|
2023-05-23 19:13:01 +00:00
|
|
|
}
|
2022-04-30 00:51:26 +00:00
|
|
|
|
|
|
|
handleError(error, info) {
|
2022-03-11 19:43:54 +00:00
|
|
|
// Immediately render original stack trace
|
|
|
|
const prettierOriginalStack = info.componentStack
|
|
|
|
.trim()
|
|
|
|
.split("\n")
|
|
|
|
.map((line) => ` at ${line}`)
|
|
|
|
.join("\n");
|
|
|
|
this.setState({
|
|
|
|
error: true,
|
|
|
|
originalStack: `${error.toString()}\n${prettierOriginalStack}`,
|
|
|
|
});
|
|
|
|
|
|
|
|
// Fetch additional info and a better stack trace
|
2022-03-10 20:37:50 +00:00
|
|
|
StackTrace.fromError(error).then((stack) => {
|
|
|
|
console.error("[ErrorBoundary] Stacktrace fetched", stack);
|
2023-05-24 07:03:28 +00:00
|
|
|
const niceStack = `${error.toString()}\n${stack
|
|
|
|
.map((el) => ` at ${el.functionName} (${el.fileName}:${el.columnNumber}:${el.lineNumber})`)
|
|
|
|
.join("\n")}`;
|
2022-03-11 19:43:54 +00:00
|
|
|
this.setState({ niceStack });
|
2022-03-10 20:37:50 +00:00
|
|
|
});
|
2022-03-10 04:28:55 +00:00
|
|
|
}
|
|
|
|
|
2022-04-30 00:51:26 +00:00
|
|
|
handleUnsupportedIndexedDB() {
|
|
|
|
this.setState({
|
|
|
|
error: true,
|
|
|
|
unsupportedIndexedDB: true,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-03-10 20:37:50 +00:00
|
|
|
copyStack() {
|
|
|
|
let stack = "";
|
2022-03-11 19:43:54 +00:00
|
|
|
if (this.state.niceStack) {
|
|
|
|
stack += `${this.state.niceStack}\n\n`;
|
2022-03-10 04:28:55 +00:00
|
|
|
}
|
2022-03-11 19:43:54 +00:00
|
|
|
stack += `${this.state.originalStack}\n`;
|
2022-03-10 20:37:50 +00:00
|
|
|
navigator.clipboard.writeText(stack);
|
2023-05-23 19:13:01 +00:00
|
|
|
}
|
2022-03-10 04:28:55 +00:00
|
|
|
|
2022-04-30 00:51:26 +00:00
|
|
|
renderUnsupportedIndexedDB() {
|
|
|
|
const { t } = this.props;
|
|
|
|
return (
|
|
|
|
<div style={{ margin: "20px" }}>
|
|
|
|
<h2>{t("error_boundary_unsupported_indexeddb_title")} 😮</h2>
|
|
|
|
<p style={{ maxWidth: "600px" }}>
|
|
|
|
<Trans
|
|
|
|
i18nKey="error_boundary_unsupported_indexeddb_description"
|
|
|
|
components={{
|
|
|
|
githubLink: <Link href="https://github.com/binwiederhier/ntfy/issues/208" />,
|
|
|
|
discordLink: <Link href="https://discord.gg/cT7ECsZj9w" />,
|
|
|
|
matrixLink: <Link href="https://matrix.to/#/#ntfy:matrix.org" />,
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderError() {
|
|
|
|
const { t } = this.props;
|
|
|
|
return (
|
|
|
|
<div style={{ margin: "20px" }}>
|
|
|
|
<h2>{t("error_boundary_title")} 😮</h2>
|
|
|
|
<p>
|
|
|
|
<Trans
|
|
|
|
i18nKey="error_boundary_description"
|
|
|
|
components={{
|
|
|
|
githubLink: <Link href="https://github.com/binwiederhier/ntfy/issues" />,
|
|
|
|
discordLink: <Link href="https://discord.gg/cT7ECsZj9w" />,
|
|
|
|
matrixLink: <Link href="https://matrix.to/#/#ntfy:matrix.org" />,
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<Button variant="outlined" onClick={() => this.copyStack()}>
|
|
|
|
{t("error_boundary_button_copy_stack_trace")}
|
|
|
|
</Button>
|
|
|
|
</p>
|
|
|
|
<h3>{t("error_boundary_stack_trace")}</h3>
|
|
|
|
{this.state.niceStack ? (
|
|
|
|
<pre>{this.state.niceStack}</pre>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<CircularProgress size="20px" sx={{ verticalAlign: "text-bottom" }} /> {t("error_boundary_gathering_info")}
|
|
|
|
</>
|
2023-05-23 19:13:01 +00:00
|
|
|
)}
|
2022-04-30 00:51:26 +00:00
|
|
|
<pre>{this.state.originalStack}</pre>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2023-05-24 08:20:15 +00:00
|
|
|
|
|
|
|
render() {
|
|
|
|
if (this.state.error) {
|
|
|
|
if (this.state.unsupportedIndexedDB) {
|
|
|
|
return this.renderUnsupportedIndexedDB();
|
|
|
|
}
|
|
|
|
return this.renderError();
|
|
|
|
}
|
|
|
|
return this.props.children;
|
|
|
|
}
|
2022-03-10 04:28:55 +00:00
|
|
|
}
|
|
|
|
|
2022-04-08 14:44:35 +00:00
|
|
|
const ErrorBoundary = withTranslation()(ErrorBoundaryImpl); // Adds props.t
|
2022-03-10 04:28:55 +00:00
|
|
|
export default ErrorBoundary;
|