BetterDiscordApp-rauenzi/renderer/src/ui/errorboundary.jsx

26 lines
891 B
React
Raw Normal View History

import Logger from "common/logger";
import {React, IPC} from "modules";
2020-07-16 07:42:56 +02:00
export default class ErrorBoundary extends React.Component {
constructor(props) {
super(props);
this.state = {hasError: false};
}
2020-07-23 22:51:58 +02:00
componentDidCatch() {
2020-07-16 07:42:56 +02:00
this.setState({hasError: true});
}
render() {
if (this.state.hasError) return <div onClick={() => IPC.openDevTools()} className="react-error">There was an unexpected Error. Click to open console for more details.</div>;
2020-07-16 07:42:56 +02:00
return this.props.children;
}
}
const originalRender = ErrorBoundary.prototype.render;
Object.defineProperty(ErrorBoundary.prototype, "render", {
enumerable: false,
configurable: false,
2021-07-09 08:05:58 +02:00
set: function() {Logger.warn("ErrorBoundary", "Addon policy for plugins #5 https://github.com/BetterDiscord/BetterDiscord/wiki/Addon-Policies#plugins");},
2020-07-16 07:42:56 +02:00
get: () => originalRender
});