Optimize expanded image dialog rerenders#2715
Draft
cursor[bot] wants to merge 1 commit into
Draft
Conversation
Co-authored-by: Julius Marminge <juliusmarminge@users.noreply.github.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What Changed
ExpandedImageDialog.useExpandedImageDialogKeyboardNavigationhook.docs/performance/expanded-image-dialog-react-scan-before.webmdocs/performance/expanded-image-dialog-react-scan-after.webmWhy
react-doctorflaggedExpandedImageDialogfor derived state in an effect, which caused an extra render after the parent selected a different preview. Deriving the preview from props and keeping only local navigation state removes that effect-driven rerender while preserving arrow-key/button navigation.react-doctorresult for touched component:src/components/chat/ExpandedImageDialog.tsx:no-derived-state-effectUI Changes
No intended visual change. The committed before/after React Scan recordings above show the preview switch interaction with React Scan enabled.
Checklist
Validation:
bun fmtbun lintbun typecheckbunx --bun react-doctor --json --full --offline --fail-on none /workspaceNote
Reduce rerenders in
ExpandedImageDialogby tracking image index instead of full preview stateExpandedImageDialogwith a singleimageIndexstate, clamped via a newclampImageIndexhelper to handle out-of-range or zero-count cases.useExpandedImageDialogKeyboardNavigationhook in ExpandedImageDialog.tsx.getExpandedImagePreviewKeyin ExpandedImagePreview.tsx and uses it as a Reactkeyin ChatView.tsx, so the dialog unmounts/remounts on image selection changes instead of syncing via an effect.Macroscope summarized d9380cd.