ticket: close dashboard selection
This commit is contained in:
parent
58904c441a
commit
71a39002fb
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
title: 'Dashboard reload と初期表示で row を自動選択しない'
|
||||
state: 'inprogress'
|
||||
state: 'closed'
|
||||
created_at: '2026-06-23T06:44:20Z'
|
||||
updated_at: '2026-06-23T07:23:02Z'
|
||||
updated_at: '2026-06-23T07:24:20Z'
|
||||
assignee: null
|
||||
readiness: 'implementation_ready'
|
||||
risk_flags: ['tui-ux', 'panel-selection', 'reload-state']
|
||||
|
|
|
|||
26
.yoi/tickets/00001KVSKJ0EA/resolution.md
Normal file
26
.yoi/tickets/00001KVSKJ0EA/resolution.md
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
Dashboard の row selection を明示的 user action の結果として扱うように修正した。
|
||||
|
||||
完了内容:
|
||||
- 初期表示で visible row があっても自動選択しない。
|
||||
- reload / snapshot reconciliation で `selected_row = None` を勝手に selection へ戻さない。
|
||||
- `Esc` による no-selection が reload を跨いで維持される。
|
||||
- 選択中 row が消えた場合は `None` へ安全に落とす。
|
||||
- keyboard navigation では no-selection から明示的に selection を作成できる。
|
||||
- `list.selected_name` は実際の Pod row selection と同期し、no-selection / non-Pod selection では clear する。
|
||||
- no-selection + `TicketIntake` composer submit が既存 Ticket refinement ではなく global/new Intake route へ進むことを focused test で確認した。
|
||||
|
||||
統合:
|
||||
- Implementation: `5c242d96 fix: keep dashboard row selection explicit`
|
||||
- Merge: `58904c44 merge: dashboard no auto selection`
|
||||
|
||||
検証:
|
||||
- Reviewer approval: `yoi-reviewer-00001KVSKJ0EA-r1`
|
||||
- `cargo fmt --check`: passed
|
||||
- `git diff --check HEAD^1..HEAD`: passed
|
||||
- `cargo test -q -p tui workspace_panel`: passed (`27 passed`)
|
||||
- `cargo test -q -p tui dashboard`: passed (`111 passed`)
|
||||
- reviewer 側追加確認 `cargo test -q -p tui`: passed (`372 passed`)
|
||||
- `cargo run -q -p yoi -- ticket doctor`: passed (`doctor: ok`)
|
||||
|
||||
残作業:
|
||||
- なし。
|
||||
|
|
@ -234,3 +234,80 @@ Worktree status:
|
|||
- clean at `5c242d96`。
|
||||
|
||||
---
|
||||
|
||||
<!-- event: implementation_report author: yoi-orchestrator at: 2026-06-23T07:24:05Z -->
|
||||
|
||||
## Implementation report
|
||||
|
||||
Merge and validation completed.
|
||||
|
||||
Merged implementation:
|
||||
- Merge commit: `58904c44 merge: dashboard no auto selection`
|
||||
- Implementation commit: `5c242d96 fix: keep dashboard row selection explicit`
|
||||
|
||||
Post-merge validation in orchestration worktree:
|
||||
- `cargo fmt --check`: passed
|
||||
- `git diff --check HEAD^1..HEAD`: passed
|
||||
- `cargo test -q -p tui workspace_panel`: passed (`27 passed`)
|
||||
- `cargo test -q -p tui dashboard`: passed (`111 passed`)
|
||||
- `cargo run -q -p yoi -- ticket doctor`: passed (`doctor: ok`)
|
||||
|
||||
Outcome:
|
||||
- 初期表示と reload/snapshot reconciliation が row selection を自動生成しなくなった。
|
||||
- `Esc` 後の no-selection は reload を跨いで維持される。
|
||||
- 明示的 keyboard navigation による selection 作成は維持された。
|
||||
- `TicketIntake` composer の no-selection submit は global/new Intake route になる。
|
||||
- stale selection は安全に `None` へ落ちる。
|
||||
- Ticket lifecycle / row action semantics は変更していない。
|
||||
|
||||
---
|
||||
|
||||
<!-- event: state_changed author: yoi-orchestrator at: 2026-06-23T07:24:10Z from: inprogress to: done reason: merged_and_validated field: state -->
|
||||
|
||||
## State changed
|
||||
|
||||
実装は reviewer approval 後に orchestration worktree へ merge され、post-merge validation も通過したため done とする。
|
||||
|
||||
---
|
||||
|
||||
<!-- event: state_changed author: hare at: 2026-06-23T07:24:20Z from: done to: closed reason: closed field: state -->
|
||||
|
||||
## State changed
|
||||
|
||||
Ticket を closed にしました。
|
||||
|
||||
|
||||
---
|
||||
|
||||
<!-- event: close author: hare at: 2026-06-23T07:24:20Z status: closed -->
|
||||
|
||||
## 完了
|
||||
|
||||
Dashboard の row selection を明示的 user action の結果として扱うように修正した。
|
||||
|
||||
完了内容:
|
||||
- 初期表示で visible row があっても自動選択しない。
|
||||
- reload / snapshot reconciliation で `selected_row = None` を勝手に selection へ戻さない。
|
||||
- `Esc` による no-selection が reload を跨いで維持される。
|
||||
- 選択中 row が消えた場合は `None` へ安全に落とす。
|
||||
- keyboard navigation では no-selection から明示的に selection を作成できる。
|
||||
- `list.selected_name` は実際の Pod row selection と同期し、no-selection / non-Pod selection では clear する。
|
||||
- no-selection + `TicketIntake` composer submit が既存 Ticket refinement ではなく global/new Intake route へ進むことを focused test で確認した。
|
||||
|
||||
統合:
|
||||
- Implementation: `5c242d96 fix: keep dashboard row selection explicit`
|
||||
- Merge: `58904c44 merge: dashboard no auto selection`
|
||||
|
||||
検証:
|
||||
- Reviewer approval: `yoi-reviewer-00001KVSKJ0EA-r1`
|
||||
- `cargo fmt --check`: passed
|
||||
- `git diff --check HEAD^1..HEAD`: passed
|
||||
- `cargo test -q -p tui workspace_panel`: passed (`27 passed`)
|
||||
- `cargo test -q -p tui dashboard`: passed (`111 passed`)
|
||||
- reviewer 側追加確認 `cargo test -q -p tui`: passed (`372 passed`)
|
||||
- `cargo run -q -p yoi -- ticket doctor`: passed (`doctor: ok`)
|
||||
|
||||
残作業:
|
||||
- なし。
|
||||
|
||||
---
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user