diff options
author | Anton Tananaev <anton@traccar.org> | 2022-09-15 10:29:35 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-09-15 10:29:35 -0700 |
commit | 8b17d67bdf366a10d0f152e3a4c0c87020513d40 (patch) | |
tree | c5606ee61e79b31a94ecb95741aa9ec91c21dd8e /modern/src/ErrorBoundary.js | |
parent | 7935dc0cec214d6e1cc9c2d0624afb547a222086 (diff) | |
download | trackermap-web-8b17d67bdf366a10d0f152e3a4c0c87020513d40.tar.gz trackermap-web-8b17d67bdf366a10d0f152e3a4c0c87020513d40.tar.bz2 trackermap-web-8b17d67bdf366a10d0f152e3a4c0c87020513d40.zip |
Add react error handler
Diffstat (limited to 'modern/src/ErrorBoundary.js')
-rw-r--r-- | modern/src/ErrorBoundary.js | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/modern/src/ErrorBoundary.js b/modern/src/ErrorBoundary.js new file mode 100644 index 00000000..5a24435f --- /dev/null +++ b/modern/src/ErrorBoundary.js @@ -0,0 +1,39 @@ +import React from 'react'; +import { Alert } from '@mui/material'; + +class ErrorBoundary extends React.Component { + constructor(props) { + super(props); + this.state = { + error: null, + }; + } + + static getDerivedStateFromError(error) { + return { error }; + } + + componentDidCatch(error, errorInfo) { + console.log(error); + console.log(errorInfo); + } + + render() { + const { error } = this.state; + if (error) { + return ( + <Alert severity="error"> + <code + dangerouslySetInnerHTML={{ + __html: error.stack.replaceAll('\n', '<br>').replaceAll(' ', ' '), + }} + /> + </Alert> + ); + } + const { children } = this.props; + return children; + } +} + +export default ErrorBoundary; |