React Error Boundary
The React SDK exports an error boundary component that leverages React component APIs to automatically catch and send JavaScript errors from inside a React component tree to Sentry.
import React from "react";
import * as Sentry from "@sentry/react";
<Sentry.ErrorBoundary fallback={<p>An error has occurred</p>}>
<Example />
</Sentry.ErrorBoundary>;
The Sentry Error Boundary is also available as a higher order component.
import React from "react";
import * as Sentry from "@sentry/react";
Sentry.withErrorBoundary(Example, { fallback: <p>an error has occurred</p> });
Note
In development mode, React will rethrow errors caught within an error boundary. This will result in errors being reported twice to Sentry with the above setup, but this won’t occur in your production build.
In the example below, when the <Example />
component hits an error, the <Sentry.ErrorBoundary>
component will send data about that error and the component tree to Sentry, open a user feedback dialog, and render a fallback UI.
import React from "react";
import * as Sentry from "@sentry/react";
import { Example } from "../example";
function FallbackComponent() {
return <div>An error has occurred</div>;
}
const myFallback = <FallbackComponent />;
// Alternatively:
// const myFallback = () => <FallbackComponent />;
class App extends React.Component {
render() {
return (
<Sentry.ErrorBoundary fallback={myFallback} showDialog>
<Example />
</Sentry.ErrorBoundary>
);
}
}
export default App;
Options
The ErrorBoundary component exposes a variety of props that can be passed in for extra configuration. There are no required options, but we highly recommend that you set a fallback component.
showDialog
(boolean)- If a Sentry User Feedback Widget should be rendered when the Error Boundary catches an error.
dialogOptions
(Object)- Options that are passed into the Sentry User Feedback Widget. See all possible customization options here.
fallback
(React.ReactNode or Function)- A React element to render when the error boundary catches an error. Can be an actual React element (i.e.
<Fallback />
), or a function that returns a React element. If you provide a function, Sentry will call it with additional info and helpers (see example below).
onError
(Function)- A function that gets called when the Error Boundary encounters an error.
onError
is useful if you want to propagate the error into a state management library like Redux, or if you want to check any side effects that could have occurred due to the error.
onMount
(Function)- A function that gets called on ErrorBoundary
componentDidMount()
.
onUnmount
(Function)- A function that gets called on ErrorBoundary
componentWillUnmount()
.
beforeCapture
(Function)
- (Available in version 5.20.0 and above)
- A function that gets called before an error is sent to Sentry, allowing for extra tags or context to be added to the error.
Examples
Setting a Fallback Function (Render Props)
Below is an example where a fallback prop, using the render props approach, is used to display a fallback UI on error. The fallback UI returns to a standard component state when reset using the resetError()
API provided by the component through render props.
import React from "react";
import * as Sentry from "@sentry/react";
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
message: "This is my app",
};
}
render() {
return (
<Sentry.ErrorBoundary
fallback={({ error, componentStack, resetError }) => (
<React.Fragment>
<div>You have encountered an error</div>
<div>{error.toString()}</div>
<div>{componentStack}</div>
<button
onClick={() => {
this.setState({ message: "This is my app" });
{/* When resetError() is called it will remove the Fallback component */}
{/* and render the Sentry ErrorBoundary's children in their initial state */}
resetError();
}}
>
Click here to reset!
</button>
</React.Fragment>
)}
>
<div>{this.state.message}</div>
{/* on click, this button sets an Object as a message, not a string. */}
{/* which will cause an error to occur in the component tree */}
<button
onClick={() => this.setState({ message: { text: "Hello World" } })}
>
Click here to change message!
</button>
</Sentry.ErrorBoundary>
);
}
}
export default App;
Using multiple error boundaries
(Available in version 5.20.0 and above)
When using multiple error boundaries, we recommend using beforeCapture
to set tags/context so that you can tell which error boundary the error occurred from. In the example below, we attach tags to errors based on what route they rendered in.
import React from 'react';
import * as Sentry from '@sentry/react';
function App({ props }) {
return (
<React.Fragment>
<Sentry.ErrorBoundary
beforeCapture={(scope) => {
scope.setTag("location", "first");
scope.setTag("anotherTag", "anotherValue");
}}
>
<Route to="path/to/first" component={First} />
</Sentry.ErrorBoundary>
<Sentry.ErrorBoundary
beforeCapture={(scope) => {
scope.setTag("location", "second");
}}
>
<Route to="path/to/second" component={Second} />
</Sentry.ErrorBoundary>
</React.Fragment>
);
}
export default App;
Next Steps:
- Package:
- npm:@sentry/react
- Version:
- 8.24.0
- Repository:
- https://github.com/getsentry/sentry-javascript