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

Infinite scrolling #87

Merged
merged 3 commits into from
Feb 5, 2025
Merged

Infinite scrolling #87

merged 3 commits into from
Feb 5, 2025

Conversation

rjwebb
Copy link
Contributor

@rjwebb rjwebb commented Feb 4, 2025

This PR adds a simple mechanism for infinite scrolling to the Polls and FIP Tracker pages.

Since all of the conversation data is loaded onto the client, the point of this feature is not to reduce load on the database but purely to make the UI more responsive - if we are trying to display all of the conversations and apply a filter, this can involve having to reflow the layout for hundreds of components, which can take hundreds of milliseconds, leading to noticeable lag. It seems like the problem here really is just reflowing the layout, I had hoped that it was something to do with React memoising props since that would have been fixable by refactoring the components themselves...

Changes:

  • A (number, integer) state scrollCursor which shows the current "cursor"
  • An invisible IsVisibleObserver component which is added to the end of the list of items. When it comes into view, increment scrollCursor by some fixed amount (e.g. 10)
  • When we display the conversations, only show the first scrollCursor + pageSize. Set pageSize to whatever the number of items to initially show is.

Note that this mechanism assumes that the filters can only be set from the top of the page - which is currently how the filter dropdowns work.

Copy link
Member

@raykyri raykyri left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks great

@raykyri raykyri merged commit 35669aa into main Feb 5, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants