2022-07-11 15:32:51 -05:00
|
|
|
import React from 'react';
|
2022-07-12 17:32:47 -05:00
|
|
|
import ResetButtons from './reset-buttons'
|
2022-07-11 15:32:51 -05:00
|
|
|
|
|
|
|
class ErrorBoundary extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = { hasError: false };
|
|
|
|
}
|
|
|
|
|
|
|
|
static getDerivedStateFromError(error) {
|
|
|
|
// Update state so the next render will show the fallback UI.
|
|
|
|
return { hasError: true };
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidCatch(error, errorInfo) {
|
|
|
|
// You can also log the error to an error reporting service
|
|
|
|
console.log(error, errorInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
if (this.props.gist !== prevProps.gist) {
|
|
|
|
this.setState({hasError: false})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
if (this.state.hasError) {
|
|
|
|
// You can render any custom fallback UI
|
2022-07-12 17:32:47 -05:00
|
|
|
return (<div>
|
|
|
|
{this.props.errorView || (<h1>Something went wrong.</h1>)}
|
|
|
|
<ResetButtons undoGist={this.props.undoGist} resetGist={this.props.resetGist} />
|
|
|
|
</div>)
|
|
|
|
return ;
|
2022-07-11 15:32:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
return this.props.children;
|
|
|
|
} catch(e) {
|
|
|
|
return this.props.errorView || (<h1>Something went wrong.</h1>);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ErrorBoundary
|