perf: use pagination in sidebar user lists - #2965
Merged
Merged
Conversation
JammingBen
force-pushed
the
feat/sidebar-user-lists-pagination
branch
from
July 29, 2026 05:59
e056147 to
82a5bcf
Compare
This composable paginates a local list of items in memory.
JammingBen
force-pushed
the
feat/sidebar-user-lists-pagination
branch
from
July 29, 2026 06:35
82a5bcf to
7dca910
Compare
This composable can be used to highlight filter results in the UI via mark.js.
Watch the user ids and call enqueueAvatar on user id change to ensure that index-keyed vue loops load new avatars, e.g. when paginating.
JammingBen
force-pushed
the
feat/sidebar-user-lists-pagination
branch
from
July 29, 2026 08:05
7dca910 to
7d17fc0
Compare
JammingBen
marked this pull request as ready for review
July 29, 2026 08:28
openclouders
pushed a commit
that referenced
this pull request
Jul 30, 2026
…gination perf: use pagination in sidebar user lists
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Add pagination for the following sidebar user lists:
This improves overall UI responsiveness when have larger lists >50 users.
Also move some of the repeated logic to own components/composables so it becomes reusable:
OcPaginationInlineto display a locally/in-place paginated list navigation (the existingOcPaginationcomponent works with router-based navigation).useLocalPaginationto paginate a local list of items in memory.useFilterHighlightto highlight occurrences of a filter result.See individual commits for more detail.
How has this been tested
closes #2970