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): add debounce to column header h… #30709

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

danielolaru91
Copy link
Contributor

…over to prevent excessive handler rendering

This PR improves the user experience and performance of the cdk-experimental column resize feature by adding a debounceTime operator to the headerCellHoveredDistinct observable. Previously, the hover event triggered the handler immediately, which could result in unwanted handlers showing up when the user quickly moved their cursor over column headers. This change ensures that the handlers only appear if the user pauses (hovers for 300ms) over the column header, preventing handlers from rendering during fast cursor movements.

Why this change is suggested:

The previous implementation immediately triggered the column resize handlers as soon as the user hovered over the column header, which could be distracting or lead to unnecessary renders when the user quickly moves the cursor across the page. By adding a debounceTime(300), we ensure that the hover event only triggers the handler after the user has paused over the column header for at least 300ms, reducing the number of handler renders and making the interaction feel smoother.

This change prevents the handlers from appearing if the user is simply passing by the headers or trying to reach another element, improving the overall experience, especially when navigating fast through the UI.

Changes:

  • Added debounceTime(300) to the headerCellHoveredDistinct observable to delay the rendering of handlers until the user has hovered over the header for 300ms.

@danielolaru91 danielolaru91 requested a review from a team as a code owner March 25, 2025 15:02
@danielolaru91 danielolaru91 requested review from mmalerba and andrewseguin and removed request for a team March 25, 2025 15:02
@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-delay branch from 12f7853 to edc750b Compare March 26, 2025 08:56
…over to prevent excessive handler rendering

Improve the user experience and performance of the `cdk-experimental` column resize feature by adding a `debounceTime` operator to the `headerCellHoveredDistinct` observable. Previously, the hover event triggered the handler immediately, which could result in unwanted handlers showing up when the user quickly moved their cursor over column headers. This change ensures that the handlers only appear if the user pauses (hovers for 300ms) over the column header, preventing handlers from rendering during fast cursor movements.
@danielolaru91 danielolaru91 force-pushed the perf/cdk-experimental/column-resize/hover-delay branch from edc750b to 590b58c Compare March 26, 2025 09:11
@mmalerba mmalerba requested review from kseamon and removed request for mmalerba March 27, 2025 22:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: performance Issues related to performance
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant