Enhance pagination to make next page visible before ellipsis #4
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.
Pull Request
Description
When the current page is the last visible number before the right ellipsis, the pagination should include the next page before the ellipsis to help users scan forward. Example: with many pages, being on page 3 should render “1 2 3 4 … 10” instead of “1 2 3 … 10”.
Current Behavior
On early pages, the window renders a fixed set of numbers and ellipses.
Example with totalPages=10, page=3: “1 2 3 … 10”.
Expected Behavior
When the current page is the last visible number before the right ellipsis (boundary), show one additional page before the ellipsis.
Example with totalPages=10, page=3: “1 2 3 4 … 10”.
Type of Change
Testing
Checklist
Screenshots (if applicable)
Add screenshots to help explain your changes.
Related Issues
Fixes #(issue number)
Additional Notes
Any additional information about the PR that reviewers should know.