New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make it clearer in error overlay when error boundary has caught an error #3627
Comments
|
This is intentional. An unexpected error is still an error. (We don’t recommend using error boundaries for expected errors or control flow.) Error boundaries are primarily useful for production, but in development we want to make errors as highly visible as possible. |
|
Ah alright, thanks :) It had me wondering what was happening, since the error boundary UI was shown at first, before it was hidden again. Could it be an idea to somehow indicate that the error was dealt with in an error boundary in the UI of the error overlay? |
I wouldn’t expect your custom boundary to get hidden though. (Error overlay doesn’t do anything to dismiss it.)
I think this would be reasonable. Not sure how to do it though. |
It's not dismissed, it's simply hidden behind the overlay (you can reproduce it in the codesandbox-demo above). If you remove the overlay from the DOM manually, you can see that my ErrorBoundary component renders as usual. Perhaps some bad choice of words on my part :)
As far as I can tell, React tells us that it will try to recreate the component tree in the error message: You can see it in action if you pop open the console in my codesandbox example. Perhaps we can check whether the error includes parts of this text - and if so, show some indication in the error-overlay UI? |
|
Fair enough. I'll rename this issue to keep track of this. |
|
🙈 Never even see the "x" to close the overlay and to know this wont show in production is music to my ears. Thanks |
|
I didn't notice the |
|
There's a message at the bottom that says only visible in development (right?). |
|
We might actually want to amend that wording to link to error boundary documentation. Since that's the thing that will show up in production instead. |
|
We could also amend the message to say "press [escape] to close or X in upper right" or similar. |
|
How do we actually test our error boundaries locally when using Create React App? Can we disable the full page debug iframe? |
|
You can close the overlay with Escape or by pressing the x in the corner @iMerica 😊 |
|
Thanks @selbekk 👍 |
|
This issue is a Gotcha for people who are new to ErrorBoundaries and are just trying out the concept with create-react-app or on sandbox.io. You end up debugging for an hour before you realize that react-error-overlay is just hiding the boundary and boundary actually worked. |
|
On some cases you can't even hide the overlay (not using create-react-app). Well you can via the dev tools and manually delete the node but then you won't see the alternative component that the boundary should render. |
|
@Jakhotiya not 1, but like 4hrs in my case. I think that this is inconsistent. Is like a VM generating error messages for exceptions being try/catched just in case you swallow them. Disabling the overlay is not an option because I do want it for others "real uncaught" errors. I suggest at least it should detect and inform that the error was caught by an error boundary. A really big feedback note there :) Thanks ! |
|
@gaearon I didn't know that we were limited to only throw errors? imho I don't mind the extra error in console when in development - but the screen overlay for "already handled" errors etc. is annoying. |
|
I definitely understand why it's not best practice to use error boundaries for control flow. My usecase is that I'm using a complex third party component for a debugging tool on the back side of my application. This third party component keeps throwing errors, which I believe is a bug of the third party component. Honestly, I'm not even sure. I'm basically just throwing together a quick prototype, and I want to fall back to a reasonable behavior when the component fails. By encouraging me to go with best practice here, you're basically telling me I need to either abandon this convenient component, fix the convenient component, or come up with an even hackier workaround. |
|
Had exactly the same problem. I totally agree on showing the error in development, but the small/grey letters at the bottom are far from visible and the documentation doesn't clearly states that the overlay will still be displayed in development mode and can be dismissed. It'd be nice to have that documented and make the message at the bottom pop out a bit more. |
|
This issue has been automatically marked as stale because it has not had any recent activity. It will be closed in 7 days if no further activity occurs. |
Is this a bug report?
Yes
Can you also reproduce the problem with npm 4.x?
Yes
Which terms did you search for in User Guide?
componentDidCatch, error boundaries
Environment
node -v: 8.9.2npm -v: 5.5.1yarn --version(if you use Yarn): 0.17.10npm ls react-scripts(if you haven’t ejected): 1.0.0Operating system: Linux
Browser and version (if relevant): Chrome 63
Steps to Reproduce
Expected Behavior
I would assume React dealt with the error, and no overlay was necessary.
Actual Behavior
The error overlay is placed on top of the app, like an uncaught error occurred. If I manually remove the
error overlay from the DOM (via devtools), the correct UI is rendered below.
Reproducible Demo
https://codesandbox.io/s/jvrwr388wv
The text was updated successfully, but these errors were encountered: