feat(seer): add table view to autofix overview - #122935
Draft
mtopo27 wants to merge 1 commit into
Draft
Conversation
Add a card/table display toggle to the Autofix Overview and a table renderer alongside the existing cards. The row keeps the issue title and meta on the left, with section badges (PR checks/review status, or a files +/- summary) and the action button on the right.
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.
Adds a card/table display toggle to the Autofix Overview so runs can be scanned in a denser list. The toggle lives in the filter bar, persists per-user via
localStorage, and is desktop-only — below thesmbreakpoint the page always renders cards and the toggle is hidden.The table reuses the same data, polling, and section grouping as the cards; only the presentation differs. Each row keeps the issue title and meta (short id, events, users, timestamps) on the left, with the section's badges and the action button on the right:
N files +X −Ysummary, derived from the status poll (no extra fetch)Toggling between views issues no new requests: the overview queries are shared at the page level and the scroll-windowed SCM dedup persists across the switch, so already-enriched PR data is reused rather than refetched.
Most of the diff is a refactor that extracts the shared title block, action cell, and badge helpers out of
issueCard.tsxintooverviewShared.tsxso the card and the table render identical pieces — card behavior is unchanged. Good places to start review areoverviewTable.tsxfor the new renderer andindex.tsxfor the toggle and renderer switch.