-
Notifications
You must be signed in to change notification settings - Fork 28.1k
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
[dev-overlay] Fix error dialog resizing logic #77830
Conversation
useEffect(() => { | ||
// Close the error overlay when pressing escape | ||
function handleKeyDown(event: KeyboardEvent) { | ||
if (event.key === 'Escape') { | ||
onClose() | ||
} | ||
} | ||
|
||
document.addEventListener('keydown', handleKeyDown) | ||
return () => document.removeEventListener('keydown', handleKeyDown) | ||
}, [onClose]) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is already handled by the Dialog
component. The logic here was also making the dialog dismiss when closing the Dev Tools popover with Escape
<ErrorOverlayBottomStack | ||
errorCount={runtimeErrors?.length ?? 0} | ||
errorCount={errorCount} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using the same errorCount
variable as introduced in #77821
Tests Passed |
Reverts #77830 This was breaking the react 18.3 tests, where the toggling stack frames is not working in 18.3. Possibly broken by the ref related changes. x-ref: https://github.com/vercel/next.js/actions/runs/14274082641/job/40015934515
This PR improves our height resizing strategy. Animating the height on page load or when the dialog opens is not ideal and it would be better if the dialog would just fade in and assume it's intrinsic height without motion.
This is what happens before this PR when you open errors, and it can be distracting to experience such amount of motion at once:
CleanShot.2025-04-04.at.14.10.28.mp4
The reason this happens is because some of the dialog contents load in async—for example the errors are actually suspended so that the message can be viewed without waiting for the stack frames to load:
next.js/packages/next/src/client/components/react-dev-overlay/ui/container/errors.tsx
Lines 202 to 208 in 1751db0
After this PR, we still measure the
height
of the dialog and animate it in response to user input, but only use the value when the height has stabilised. You can see what happens by observing the blue height value:CleanShot.2025-04-04.at.14.28.19.mp4
And another video from the fixture app:
CleanShot.2025-04-04.at.15.50.16.mp4
Closes NDX-983