perf(cdk-experimental/column-resize): improve hover responsiveness of… #30708
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.
… column resize with requestAnimationFrame
This PR suggests a performance improvement for the
_updateOverlayHandleHeight()
method in thecdk-experimental
column resize feature. Currently, the method immediately updates the overlay handle height when hovering over a resizable column header. By wrapping theupdateSize
call inside arequestAnimationFrame()
, the height update is deferred to the next repaint, improving responsiveness during hover interactions.Why this change is suggested:
The current implementation causes the height update to occur immediately, potentially resulting in unnecessary reflows or stuttering, when hovering over column headers. By using
requestAnimationFrame()
, we defer the update until the next browser repaint, allowing for smoother performance and reducing the chance of layout thrashing during hover, particularly in pages with complex DOM structures.Changes:
overlayRef.updateSize()
call inside arequestAnimationFrame()
to ensure the height update occurs on the next repaint, rather than immediately during hover.