Materialize the trash — faces, menus, and grammar
Phase 3 finishes the pivot at the surface. One card face serves two containers: CardFaceView extracted with a role — board or trash — so stripe, tint, chip, selection stroke, cut dim, marquee registration, and drag are shared by construction, the trash side differing only in its absences: no Open, no rename, no Style, no file-hover highlight, and a Delete that goes through the confirmation host. The column rewrote around the lanes' own single-column masonry so drag reflow reads as positional slides; chrome stays the hatched header, symbol, and count — 11 gives Empty Trash to the File menu alone. Two real grammar bugs die here: plain Backspace on a trash selection purged without the confirmation the menu raises, and the context menu's Delete resolved against the standing selection, so right-clicking a trash card under a board selection silently did nothing — it now stages the clicked set explicitly. Open, Rename, Style, and Empty Trash validation became testable store seams; the column is one named accessibility container of ordinary card elements. The tombstone era is swept: deleteItem, restoreItem, stripTombstonedChildren — dead since lane copies stopped nesting trash — the restore verb, the unreachable put-back banner row, and every quasi-lane doc comment. Claude-Session: https://claude.ai/code/session_01SR4XGjmBE16ZUYWpfFHXwY
This commit is contained in:
@@ -38,10 +38,13 @@ public enum HistoryPhrase {
|
||||
public enum Verb: String, Sendable, CaseIterable {
|
||||
/// A create — File ▸ New Lane, the new-card placeholder's commit, a Finder file drop's cards.
|
||||
case add = "Add"
|
||||
/// A tombstone (⌫, drop-on-trash, the card window's Actions ▸ Delete).
|
||||
/// A delete — ⌫, drop-on-trash, the card window's Actions ▸ Delete — which is a *move* into
|
||||
/// `.trash/` for a card and a physical removal for a lane (03-board-ui.md § Trash).
|
||||
///
|
||||
/// **There is no `restore` verb**: restoring is an ordinary move out (drag or ⌘X/⌘V), so it
|
||||
/// registers as `move` like any other, and Put Back is retired with the tombstone model
|
||||
/// (resettled 2026-07-28).
|
||||
case delete = "Delete"
|
||||
/// Put Back and drag-to-restore.
|
||||
case restore = "Restore"
|
||||
/// A drop that changes an item's parent.
|
||||
case move = "Move"
|
||||
/// A drop, a lane drag or ⌥⌘↑/⌥⌘↓ that changes rank among unchanged siblings.
|
||||
|
||||
Reference in New Issue
Block a user