Skip to content
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

perf(cdk-experimental/column-resize): improve hover responsiveness of… #30708

Merged

Conversation

danielolaru91
Copy link
Contributor

@danielolaru91 danielolaru91 commented Mar 25, 2025

… column resize with requestAnimationFrame

This PR suggests a performance improvement for the _updateOverlayHandleHeight() method in the cdk-experimental column resize feature. Currently, the method immediately updates the overlay handle height when hovering over a resizable column header. By wrapping the updateSize call inside a requestAnimationFrame(), 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:

  • Wrapped the overlayRef.updateSize() call inside a requestAnimationFrame() to ensure the height update occurs on the next repaint, rather than immediately during hover.

@danielolaru91 danielolaru91 requested a review from a team as a code owner March 25, 2025 14:48
@danielolaru91 danielolaru91 requested review from crisbeto and wagnermaciel and removed request for a team March 25, 2025 14:48
@angular-robot angular-robot bot added the area: performance Issues related to performance label Mar 25, 2025
@danielolaru91 danielolaru91 force-pushed the perf/cdk-experimental/column-resize/hover branch 3 times, most recently from 3095513 to 2bd3220 Compare March 26, 2025 09:09
@danielolaru91 danielolaru91 requested a review from mmalerba March 30, 2025 14:32
@mmalerba mmalerba added action: merge The PR is ready for merge by the caretaker target: patch This PR is targeted for the next patch release labels Mar 31, 2025
@mmalerba mmalerba self-assigned this Apr 1, 2025
… column resize with requestAnimationFrame

Improve column resize performance when calling the `_updateOverlayHandleHeight()` method in the `cdk-experimental` column resize feature. By wrapping the `updateSize` call inside a `requestAnimationFrame()`, the height update is deferred to the next repaint, improving responsiveness during hover interactions.
… column resize with requestAnimationFrame

use afterNextRender write phase instead
@mmalerba mmalerba force-pushed the perf/cdk-experimental/column-resize/hover branch from 45f1dd7 to d99fbd3 Compare April 2, 2025 19:35
…ness of column resize with requestAnimationFrame
@mmalerba mmalerba merged commit dd69023 into angular:main Apr 2, 2025
18 of 20 checks passed
mmalerba pushed a commit that referenced this pull request Apr 2, 2025
#30708)

* perf(cdk-experimental/column-resize): improve hover responsiveness of column resize with requestAnimationFrame

Improve column resize performance when calling the `_updateOverlayHandleHeight()` method in the `cdk-experimental` column resize feature. By wrapping the `updateSize` call inside a `requestAnimationFrame()`, the height update is deferred to the next repaint, improving responsiveness during hover interactions.

* perf(cdk-experimental/column-resize): improve hover responsiveness of column resize with requestAnimationFrame

use afterNextRender write phase instead

* fixup! perf(cdk-experimental/column-resize): improve hover responsiveness of column resize with requestAnimationFrame

---------

Co-authored-by: Miles Malerba <[email protected]>
(cherry picked from commit dd69023)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
action: merge The PR is ready for merge by the caretaker area: performance Issues related to performance target: patch This PR is targeted for the next patch release
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants