You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Motivation
The infinite scroll pagination uses computationally expensive scroll event listeners to paginate and load more items into the list.
Proposed solution
Replace the expensive scroll event listeners with intersection observer APIs.
Acceptance Criteria
Given I am using the stream-chat-react developer,
When I open the InfiniteScroll.tsx file,
Then the scroll Element scroll event listeners are removed,
and this is replaced with intersection observers instead.
The text was updated successfully, but these errors were encountered:
@MartinCupela, sure, I can take a look. I've already implemented this in my own app. How do I create a pull request? I have the repo cloned, but I can't create and publish any branches. Do I need to fork and then create a PR from my forked repo?
Motivation
The infinite scroll pagination uses computationally expensive scroll event listeners to paginate and load more items into the list.
Proposed solution
Replace the expensive scroll event listeners with intersection observer APIs.
Acceptance Criteria
Given I am using the stream-chat-react developer,
When I open the
InfiniteScroll.tsx
file,Then the scroll Element scroll event listeners are removed,
and this is replaced with intersection observers instead.
The text was updated successfully, but these errors were encountered: