feat(planning): per-column WIP limits - #450
Open
tomymaritano wants to merge 1 commit into
Open
Conversation
Each column header shows its card count; click it to set a WIP limit (persisted per stage in localStorage). When set, the badge shows `count / limit` and turns red when the column exceeds its limit. Empty/0 clears the limit (∞). - planningStore: persisted per-stage WIP limits (zustand + persist) - wip.ts: pure isOverWipLimit / parseWipLimit helpers (unit-tested) - PlanningColumn: inline limit editor + over-limit styling Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. 🗂️ Base branches to auto review (2)
Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: ASSERTIVE Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
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
Adds per-column WIP limits to the Planning board (follow-up #1). Stacked on #444 — base is
feature/planning-kanban-data; will retarget todeveloponce #444 merges.localStoragevia a small zustand store).count / limit; it turns red when the column exceeds its limit.Files
stores/planningStore.ts— persisted per-stage WIP limits (zustand +persist)components/planning/wip.ts— pureisOverWipLimit/parseWipLimithelperscomponents/planning/PlanningColumn.tsx— inline limit editor + over-limit stylingcomponents/planning/__tests__/wip.test.ts— unit tests for the helpersTesting
pnpm typecheck/pnpm lint— greenpnpm --filter @dripnex/desktop test— 66 passing (+5 new WIP tests)pnpm --filter @dripnex/desktop build— bundles OK🤖 Generated with Claude Code