feat(ui): server-side pagination for policy evaluations table#141
Merged
Conversation
The policy activity table now fetches pages of 25 rows from the server
(using the existing limit/offset API params) and shows a pagination
footer matching the DataTable component. The backend response was
changed from a plain array to { items, total } so the frontend knows
the total row count for correct page count display.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Matches the DataTable pagination style used on commits: shows Per page 10/25/50 buttons with the active size highlighted, a separator, then prev/next nav. evalPageSize is now reactive state so changing it triggers a fresh server fetch at offset 0. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
Summary
limit/offsetparams (the API already supported these)Vec<PolicyEvaluationResponse>to{ items, total }— adds a parallel COUNT query so the frontend knows the total rows for correct page count displayTest plan
🤖 Generated with Claude Code