feat: add status filters and improve paging on list pages - #65
Open
KexyBiscuit wants to merge 1 commit into
Open
feat: add status filters and improve paging on list pages#65KexyBiscuit wants to merge 1 commit into
KexyBiscuit wants to merge 1 commit into
Conversation
Add status filtering to the pipelines, jobs, and workers list pages: - Pipelines and jobs pages filter server-side through a new optional, comma-separated `status` parameter on /api/pipeline/list and /api/job/list. As a pipeline's status is computed from its latest job per architecture, pipeline status filtering is applied after status computation when the parameter is present; the unfiltered path remains page-first. - Jobs page now syncs page, page size, and active filters to the URL query, like the pipelines page already does; changing any filter resets the view to page 1 on all three pages. - Workers page no longer paginates: it loads all workers in a single request (items_per_page=-1) and filters client-side by Live/Dead/Idle/Busy. This commit is authored with assistance from AI/LLM: - Model: Kimi K3 (Moonshot AI) - Platform: Moonshot AI (kimi.com) - Agent platform: Kimi Code CLI - Prompt: The frontend now has very limited filtering and inconvenient paging for pipelines, jobs, and workers. There won't be many workers, so not paging the workers would be better. Also allow the user to filter pipelines, jobs, and workers, by status.
KexyBiscuit
force-pushed
the
feat/status-filter-and-paging
branch
from
August 24, 2026 23:17
4711bcb to
c93b77d
Compare
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
statusparameter on/api/pipeline/listand/api/job/list. For jobs this is a plain SQL filter; for pipelines the filter is applied after status computation, since a pipeline's status is derived from its latest job per architecture (there is nostatuscolumn onpipelines). The unfiltered path remains page-first.items_per_page=-1) and filters client-side by Live / Dead / Idle / Busy (Live matches both Idle and Busy).Verification
yarn build(vue-tsc --noEmit+vite build) passes.cargo checkpasses on Linux (run in WSL; the server usestokio::net::unixand does not build on Windows). Note: requires--ignore-rust-versionat the moment because the committedCargo.lockpinstakecell 0.1.2, which declares rustc 1.96 — a pre-existing lockfile/toolchain mismatch unrelated to this change.==================================
AI Assistance Usage Declaration
This PR is authored with assistance from AI/LLM: