1. 31
    Create an Error Boundary for a React App
    4m 9s

Create an Error Boundary for a React App

Andy Van Slaars
InstructorAndy Van Slaars
Share this video with your friends

Social Share Links

Send Tweet
Published 5 years ago
Updated 5 years ago

Uncaught errors in React used to leave your app in a corrupted state, since React 16.0, an uncaught exception in your render tree will cause your application to unmount. In this lesson, we’ll create a default error boundary to wrap our application as a starting point for new projects.

Instructor: [00:00] I've added this first statement in the render method of the App component to demonstrate how the App behaves when there is an unhandled exception in the component tree.

[00:10] If I drop into the terminal and I do an npm run dev, we'll see when the page finishes loading, we don't see our application. If I open up the dev tools, we'll see in our console that we're getting this error. This is the one we were throwing from the render method of App.

[00:30] The next console.log statement says, "The above error occurred in the App component. Consider adding an error boundary to your tree to customize error handling behavior." Let's do that.

[00:41] I'll go back to the code. I'll stop the dev server from running. In my source directory, I'm going to add a new file. I'm going to call this defaultErrorBoundary.js. ErrorBoundary is going to be a React component. I'm going to import React from "react".

[01:06] Then I'm going to export a class as my default export. I'll call it defaultErrorBoundary. That's going to extend React.Component. I'm going to give this state, which will be an object. That's going to have an isError flag. That initial value is going to be false. We're going to give this a render method.

[01:36] We'll destructure our state. We'll grab that isError property from this.state. I'm also going to destructure props and grab children off of that. Then we're going to return based on if we're in an error state. If isError, then we're going to return a div. Otherwise, we'll just return children.

[02:09] Now we need the handle setting this error state in the case where there's an unhandled error lower down on our component tree. We're going to do that above render with a static method, getDerivedStateFromError.

[02:22] All we're going to do here is this will be called if there's an error and we need to return what our new state looks like. We're going to return isError true.

[02:41] Now that we have this ErrorBoundary component defined, let's go into our index.js file. In between our React.StrictMode and our App component, we're going to add this defaultErrorBoundary.

[02:58] I'll just move App up in between there. Of course, we have to import that if we want it to work. I'm going to import defaultErrorBoundary from defaultErrorBoundary. With that in place, I'm going to go into my terminal. I'm going to do an npm run dev.

[03:25] We'll see when our App loads, this time we get our error message because that exception is still being thrown from our App component. If we look in the dev tools, we'll still see this error, but we're not getting the recommendation to add the error boundary because we've already done that.

[03:42] We'll leave this running. I'm going to go back to app.js. I'm going to remove this throw statement. This time when our App reloads, everything's working fine.

[03:56] Now we know if an exception is thrown in our component tree, it'll be caught by that error boundary. We can provide some useful messages in an alternate UI so that users aren't left looking at a blank screen, wondering what happened.

Jake Wiesler
Jake Wiesler
~ 5 years ago

The behavior I get here is a bit different. Seems that react-hot-loader is catching the error and showing their own error boundary. If I view the built version (npm run build) in the browser THEN I see DefaultErrorBoundary, just not in development.

Jake Wiesler
Jake Wiesler
~ 5 years ago

It might be that react-hot-loader had some updates regarding error boundaries since this video was published?

Petros Kyriakou
Petros Kyriakou
~ 5 years ago

@Jake -> React hot loader is only for development and i can confirm that this happens as well, but since it won't have any issues in production its no problem. Also you can start dev without hot reload and works fine.

Maybe there is a solution somewhere but I haven't dug into it yet.

Todd  Webdev
Todd Webdev
~ 5 years ago

Does the getDerivedStateFromError method have to be specified as static? If so, why?

Andy Van Slaars
Andy Van Slaarsinstructor
~ 5 years ago

Does the getDerivedStateFromError method have to be specified as static? If so, why?

Yes. The React API specifies that it's defined as a static method on your component class - https://reactjs.org/docs/react-component.html#static-getderivedstatefromerror

Markdown supported.
Become a member to join the discussionEnroll Today