42917806e9
removed unnecessary components, combined where necessary added each component to a folder, added individual css style modules optimized some component rendering flows removed functional components in favor of pure components linted and formatted all of the files
41 lines
863 B
JavaScript
41 lines
863 B
JavaScript
import { FormattedMessage } from 'react-intl';
|
|
|
|
import './index.scss';
|
|
|
|
export default class ErrorBoundary extends PureComponent {
|
|
|
|
static propTypes = {
|
|
children: PropTypes.node,
|
|
};
|
|
|
|
state = {
|
|
hasError: false,
|
|
stackTrace: undefined,
|
|
componentStack: undefined,
|
|
}
|
|
|
|
componentDidCatch(error, info) {
|
|
this.setState({
|
|
hasError: true,
|
|
stackTrace: error.stack,
|
|
componentStack: info && info.componentStack,
|
|
});
|
|
}
|
|
|
|
render() {
|
|
const { hasError } = this.state;
|
|
|
|
if (!hasError) return this.props.children;
|
|
|
|
return (
|
|
<div className='error-boundary'>
|
|
<div className='error-boundary__container'>
|
|
<FormattedMessage id='alert.unexpected.message' defaultMessage='Error' />
|
|
<a className='error-boundary__link' href='/home'>Return Home</a>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|