mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 14:28:42 +00:00
* Add safety checks * Add optional chaining to prevent reading undefined data * Add sentry's error boundary * Add sentry's error boundary * Add sentry tag for segrating component error type
30 lines
845 B
JavaScript
30 lines
845 B
JavaScript
import React, { Component } from 'react';
|
|
import { withTranslation } from 'react-i18next';
|
|
import * as Sentry from '@sentry/react';
|
|
|
|
class ErrorBoundary extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = { hasError: false };
|
|
}
|
|
// eslint-disable-next-line no-unused-vars
|
|
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);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<Sentry.ErrorBoundary fallback={<h2>{this.props.t('errorBoundary', 'Something went wrong.')}</h2>}>
|
|
{this.props.children}
|
|
</Sentry.ErrorBoundary>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default withTranslation()(ErrorBoundary);
|