forked from realdennis/md2pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f1f2517
commit 9dd9a9e
Showing
2 changed files
with
57 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import React from 'react'; | ||
class ErrorBoundary extends React.Component { | ||
constructor(props) { | ||
super(props); | ||
this.state = { error: null, errorInfo: null }; | ||
} | ||
componentDidCatch(error, errorInfo) { | ||
// Catch errors in any components below and re-render with error message | ||
this.setState({ | ||
error: error, | ||
errorInfo: errorInfo | ||
}); | ||
// You can also log error messages to an error reporting service here | ||
} | ||
render() { | ||
if (this.state.errorInfo) { | ||
// Error path | ||
return ( | ||
<div> | ||
<p>Error occurs</p> | ||
{/* <details style={{ whiteSpace: 'pre-wrap' }}> | ||
{this.state.error && this.state.error.toString()} | ||
<br /> | ||
{this.state.errorInfo.componentStack} | ||
</details> */} | ||
<button | ||
onClick={() => { | ||
window.location.reload(); | ||
}} | ||
style={{ | ||
background: "none", | ||
padding: "5px", | ||
borderRadius: "5px", | ||
boxShadow:"1px 1px 1px grey", | ||
outline: "none", | ||
cursor: "pointer" | ||
}} | ||
> | ||
Reload This Page | ||
</button> | ||
</div> | ||
); | ||
} | ||
// Normally, just render children | ||
return this.props.children; | ||
} | ||
} | ||
export default ErrorBoundary; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters