-
-
Notifications
You must be signed in to change notification settings - Fork 315
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
[BUG] Setting initial scrolling position is racy #883
Comments
Confirming, I managed to reproduce on my side. Will look into it and update the issue, thanks for looking into the source code for the additional hints. |
🎉 This issue has been resolved in version 4.2.2 🎉 The release is available on: Your semantic-release bot 📦🚀 |
|
@vyivel so these are actually two issues. initialScrollTop and initialTopMostItemIndex follow a separate implementation logic, and I strongly recommend against using initialScrollTop (discussed in some issues here).
If there's anything that can make the problem consistent and reproducible in the local environment, let me know. |
Addresses a flicker with alignToBottom and React 18. Fixes #883
🎉 This issue has been resolved in version 4.3.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
@vyivel I reproduced (and, hopefully, fixed) that while working on another thing. Please let me know if you still experience it. |
Tried different cases with 4.3.0, everything works as expected, so the problem seems to be fixed. Thanks for your work! |
Describe the bug
Occasionally
initialScrollTop
andinitialTopMostItemIndex
have no effect, presumably due to the scrolling being applied before thescrollHeight
of the element is updated. This is easier to reproduce with multiple lists.Related: #874
Reproduction
https://codesandbox.io/p/sandbox/laughing-jang-cycy4n
To Reproduce
Just load the page. Depending on the PC specs and the browser used, this might take multiple reloads or not work at all.
Expected behavior
Screenshots
Firefox 111.0.1: some of the first lists aren't scrolled.

When

initialScrollTop
is used, none of the lists are scrolled.Chromium 111.0.5563.146: seems to work fine with

initialTopMostItemIndex
.When

initialScrollTop
is used, only the first list isn't scrolled; this behavior is consistent across reloads.Desktop
Additional context
I can't reproduce this in qutebrowser.
With the following patch:
The result is the following; the logs suggest that
scrollToCallback()
is called too early, before the properscrollHeight
is set.Please tell if you need more information.
The text was updated successfully, but these errors were encountered: