Implement the 032-inline-confirm-buttons feature that replaces single-click destructive actions with a reusable ConfirmButton component providing inline two-step confirmation (click to arm, click to execute), applied to the remove combatant and clear encounter buttons, with CSS scale pulse animation, 5-second auto-revert, click-outside/Escape/blur dismissal, full keyboard accessibility, and 13 unit tests via @testing-library/react

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Lukas
2026-03-11 09:51:21 +01:00
parent d101906776
commit 0747d044f3
17 changed files with 1364 additions and 32 deletions

View File

@@ -0,0 +1,37 @@
# Data Model: Inline Confirmation Buttons
## Entities
### ConfirmButton State
The `ConfirmButton` manages a single piece of ephemeral UI state:
| Field | Type | Description |
|-------|------|-------------|
| isConfirming | boolean | Whether the button is in the "confirm" (armed) state |
**State transitions**:
```
idle ──[first click/Enter/Space]──▶ confirming
confirming ──[second click/Enter/Space]──▶ action executed → idle (or unmount)
confirming ──[5s timeout]──▶ idle
confirming ──[Escape]──▶ idle
confirming ──[click outside]──▶ idle
confirming ──[focus loss]──▶ idle
```
### ConfirmButton Props (Component Interface)
| Prop | Type | Required | Description |
|------|------|----------|-------------|
| onConfirm | () => void | yes | Callback executed on confirmed second activation |
| icon | ReactElement | yes | The default icon to display (e.g., X, Trash2) |
| label | string | yes | Accessible label for the button (used in aria-label and title) |
| className | string | no | Additional CSS classes passed through to the underlying button |
| disabled | boolean | no | When true, the button cannot enter confirm state |
**Notes**:
- No domain entities are created or modified by this feature.
- The confirm state is purely ephemeral — never persisted, never serialized.
- The component does not introduce any new domain types or application-layer changes.