-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
feat(cdk-experimental/scrolling): support scrollToIndex #26945
base: main
Are you sure you want to change the base?
feat(cdk-experimental/scrolling): support scrollToIndex #26945
Conversation
implements `VirtualScrollStrategy#scrollToIndex` in `AutoSizeVirtualScrollStrategy`. See angular#10113
fdf73bc
to
5f0c861
Compare
@spike-rabbit Sorry for the delay, I recently got back from a long vacation. Let me address your questions point-by-point:
Yes, overall this makes sense and thanks for the detailed explanation & comments. That really helps to understand what's going on here.
I think there's a good chance of getting it merged since most of the changes are to the experimental strategy which is not heavily used inside google (though it does have some). I'll kick off our internal tests to get an exact sense of how many failures we'd be looking at.
So far looks good, though I need to do a more careful review. This is some pretty dense code, so it will take a little time to fully digest :)
Yes, splitting this into smaller chunks would be good, particularly the virtual-for-of change since it affects the non-experimental version as well.
Yep, totally fine with that.
Ack, lets call that out as a known issue in the JSDoc for those properties, and we'll obviously want to fix it before moving the strategy out of experimental. Thanks a lot for the really thorough and thoughtful work on this! |
@mmalerba How can I debug the unit tests? I tried Already rebased on the latest main today. Using Ubuntu, Firefox and Chrome are both affected |
I think it just appears blank because the tests execute quickly and then the DOM is cleaned up. I typically put a |
Sorry to bother you once more with a problem. Whenever recompiling the test in debug mode, I get this error:
So initial compiling works, but after changing something it breaks. Any ideas how I can fix this? Already deleted |
Hmm, the same thing happens to me. Let me bring the issue up to our dev-infra people and see what they say about it. In the mean time, its not a great solution, but I would say just kill the command and rerun it after you make your changes |
Hello mmalerba/spike-rabbit, |
implements
VirtualScrollStrategy#scrollToIndex
inAutoSizeVirtualScrollStrategy
.Approach:
With this change, the item size and the total content size are no longer aligned to reasons described later on.
Due to this, the recalculating of the content for the current offset was changed. The first visible index is now calculated based on the relation from the current scrollOffset to the max scrollOffset.
Since the total content size can be off for a larger amount, it is now smoothly corrected and no longer just set to the estimated total content size.
The
virtual-for-of.ts
had a bug (?) which made it impossible to measure the size of the last item. This is now fixed, but probably a breaking change.Scrolling to an index is now implemented. When scrolling to an index, the target offset for the index is calculated based in the estimated item size and a correction in case there is already a difference between the current offset and the current estimated offset. When smooth scrolling is activated, multiple scroll events will occur.
While scrolling to an index, the behavior is different from normal user scrolling. The problem that needs to be solved in this case is, that we are scrolling to an estimated offset, which could be off but cannot be corrected anymore. Therefore, we need to adjust the content offset, even if it increases the amount of error.
This is done in two steps:
There are some special cases, that need extra care:
See #10113
@mmalerba Can you please provide some feedback here. Tests are still missing, I will add them later if you confirm that this could be merged if everything is completed.
virtual-for-of.ts
to another commit?