2026-06-29 14:36:02 -04:00
|
|
|
# TODO
|
|
|
|
|
|
2026-07-04 16:59:52 -04:00
|
|
|
Backlog of bugs + long-term items. Milestones live in REWORK_PLAN.md.
|
2026-06-29 14:36:02 -04:00
|
|
|
|
2026-07-04 22:27:32 -04:00
|
|
|
## Open
|
|
|
|
|
|
2026-07-04 22:36:15 -04:00
|
|
|
### FEAT: clarify "Is NPC" in add-participant
|
|
|
|
|
- Ambiguous label. May expand work based on what NPC means here (ally? monster?
|
|
|
|
|
display-only? skip in turn order?). Clarify intent before UX changes.
|
2026-07-01 22:25:52 -04:00
|
|
|
|
2026-07-04 22:48:58 -04:00
|
|
|
### FEAT: first-class undo/redo UI buttons (B --- do now)
|
2026-07-04 22:36:15 -04:00
|
|
|
- Toolbar buttons ↶/↷ in AdminView header, not buried in /logs.
|
|
|
|
|
- Undo = revert latest non-undone log. Redo = re-apply latest undone.
|
|
|
|
|
- Uses current 2-write undo (non-tx). Race safety = log refactor later.
|
|
|
|
|
- Disabled when stack empty. Keyboard shortcuts (cmd+z / cmd+shift+z).
|
|
|
|
|
|
|
|
|
|
### FEAT-LOG: unified log refactor (was FEAT-2 + M6, batched)
|
|
|
|
|
- Single event schema, one source of truth:
|
|
|
|
|
`{ ts, type, payload, undo_payload, undone, encounterId,
|
|
|
|
|
snapshot:{ round, currentTurnParticipantId, turnOrderIds, activeIds } }`
|
|
|
|
|
- Common format consumed by: UI log view, download/copy export,
|
|
|
|
|
replay-combat, analyze-turns. One shape, four consumers.
|
|
|
|
|
- Transactional undo: server endpoint `POST /api/undo/:eventId`. Single
|
|
|
|
|
SQLite tx applies undo_payload + flips `undone`. Replaces fragile 2-write
|
|
|
|
|
(log update + encounter update as separate calls).
|
|
|
|
|
- Download/copy: exports event stream as JSON for offline analysis.
|
|
|
|
|
- replay-combat + analyze-turns rewritten to emit/consume same event shape.
|
|
|
|
|
- Migration: keep old log entries readable; new format for new writes.
|
2026-07-04 17:12:13 -04:00
|
|
|
|
2026-07-04 22:48:58 -04:00
|
|
|
|
|
|
|
|
## FEAT - parallel campaigns
|
|
|
|
|
|
|
|
|
|
## FEAT - multi user
|
|
|
|
|
|
|
|
|
|
## FEAT - clarify what end encounter does and what initiatives reset means
|
|
|
|
|
|
2026-07-04 16:59:52 -04:00
|
|
|
## Done (history)
|
2026-06-30 16:33:02 -04:00
|
|
|
|
2026-07-04 22:48:58 -04:00
|
|
|
### FEAT: first-class undo/redo UI buttons (DONE)
|
|
|
|
|
- ↶/↷ pills in InitiativeControls, always visible when encounter open.
|
|
|
|
|
- Undo = latest non-undone log (per encounter). Redo = latest undone.
|
|
|
|
|
- encounterPath added to all 14 log contexts (filter key).
|
|
|
|
|
- redo:patch (forward) added to undoData. Real redo replays forward state.
|
|
|
|
|
- Disabled when stack empty. Tooltip shows target action.
|
|
|
|
|
- Uses current 2-write undo (non-tx). Race safety = FEAT-LOG refactor.
|
|
|
|
|
|
2026-07-04 22:27:32 -04:00
|
|
|
### Architecture: 1-list turn order model (slot, never sort)
|
2026-07-04 16:59:52 -04:00
|
|
|
- Single source: turnOrderIds === participants.map(id). No re-sort after
|
|
|
|
|
startEncounter. nextTurn skips inactive (predicate), inactive stay in slot.
|
|
|
|
|
- Drag (reorder) = same-init tie-break only. Cross-init blocked.
|
|
|
|
|
- startEncounter sorts ALL participants by init once, then frozen.
|
|
|
|
|
- addParticipant/updateParticipant slot by init (slotIndexForInit), preserve
|
|
|
|
|
drag order. Display renders participants[] directly (no sort).
|
2026-07-04 22:27:32 -04:00
|
|
|
- Static guard test errs if `.sort(` reintroduced outside allowlist.
|
|
|
|
|
- Design doc: docs/INITIATIVE_ORDERING.md.
|
|
|
|
|
|
|
|
|
|
### Single source of truth: combat logic
|
|
|
|
|
- All 15 App.js handlers delegate to @ttrpg/shared. ~498 lines inline dupes deleted.
|
|
|
|
|
- shared/turn.js = only place turn logic lives.
|
|
|
|
|
|
|
|
|
|
### Storage parity (firebase + server adapters)
|
|
|
|
|
- Neutral queryConstraints ({__type:'orderBy'|'limit'}) honored by both adapters.
|
|
|
|
|
- Shared contract test runs both identically. Memory adapter deleted; factory
|
|
|
|
|
throws on unknown mode.
|
|
|
|
|
- ws storage mode renamed to server (env var + adapter name).
|
|
|
|
|
|
|
|
|
|
### Logging contract
|
|
|
|
|
- Every mutating op logs message + undo payload. No-op = null log.
|
|
|
|
|
- Structural enforcement: per-op contract test (turn.logging.test.js) +
|
|
|
|
|
static source-scan guard (static.no-unlogged.test.js).
|
|
|
|
|
|
|
|
|
|
### Custom conditions per campaign (DONE)
|
|
|
|
|
- Freeform per-campaign conditions. Add applies to participant + persists to
|
|
|
|
|
campaign palette in one step. Badge render uses merged allConditions
|
|
|
|
|
(built-ins + custom). toggleCondition accepts any string. Dedup
|
|
|
|
|
case-insensitive. maxLength 40. Combat + replay tests prove arbitrary
|
|
|
|
|
string ids survive round-trip.
|
|
|
|
|
|
|
|
|
|
### Death saves: D&D 5e model (DONE)
|
|
|
|
|
- Separate success/fail tracking. deathSave(enc, id, type, n),
|
|
|
|
|
type='success'|'fail'. Fields: deathSaves, deathFails, isStable, isDying.
|
|
|
|
|
3 success=stable, 3 fail=dead. Returns {patch, log, status, isDying}.
|
|
|
|
|
Old single-counter broken (successes missing). Old data lost (feature
|
|
|
|
|
never worked in prod). UI: green ✓ + red ✕ rows, Stabilized/Dying badges.
|
|
|
|
|
|
|
|
|
|
### FEAT-3: initiative first-class entry (DONE)
|
|
|
|
|
- Initiative field at add-char, add-monster, edit participant.
|
|
|
|
|
- Inline edit wired. Tie-break = drag order.
|
|
|
|
|
|
2026-07-04 22:30:33 -04:00
|
|
|
### UI feedback: toast + info modal (DONE)
|
|
|
|
|
- All 23 native alert() replaced. ToastStack (6s auto-dismiss + manual X)
|
|
|
|
|
for transient failures. InfoModal (persistent OK) for validations.
|
|
|
|
|
React context provider wraps all 3 App branches.
|
|
|
|
|
- Fixed: native alert vanished instantly on browser focus loss.
|
|
|
|
|
|
|
|
|
|
### Filter dup chars from add-participant dropdown (DONE)
|
|
|
|
|
- Character dropdown excludes chars already in encounter. Prevents
|
|
|
|
|
dup-add at source. No more dup alert path needed.
|
|
|
|
|
|
2026-07-04 22:27:32 -04:00
|
|
|
### Test timeouts (DONE)
|
|
|
|
|
- jest.setTimeout(10000) in setupTests.js (CRA blocks config-level timeout).
|
|
|
|
|
|
|
|
|
|
### Warning = failure in tests (DONE)
|
|
|
|
|
- console.error/warn throw in test env.
|
|
|
|
|
|
|
|
|
|
### BUG-1: addParticipant + pause/resume corrupts rotation
|
2026-07-04 16:59:52 -04:00
|
|
|
- RESOLVED as side effect of BUG-2 fix.
|
2026-06-29 15:52:17 -04:00
|
|
|
|
|
|
|
|
### BUG-2: addParticipant allows duplicate id
|
2026-07-04 16:59:52 -04:00
|
|
|
- FIXED (addParticipant throws on dup id).
|
2026-06-30 13:49:38 -04:00
|
|
|
|
2026-07-04 16:59:52 -04:00
|
|
|
### BUG-4: hide-player-HP breaks display view
|
2026-07-04 22:30:33 -04:00
|
|
|
- FIXED --- mock honors setDoc{merge}, all 5 activeDisplay sites use merge.
|
2026-06-30 13:59:58 -04:00
|
|
|
|
2026-07-04 16:59:52 -04:00
|
|
|
### BUG-5: mid-round addParticipant/revive corrupts rotation
|
2026-07-04 22:30:33 -04:00
|
|
|
- FIXED --- slot-array + DRY advance core nextActiveAfter.
|
2026-06-30 13:59:58 -04:00
|
|
|
|
2026-07-04 16:59:52 -04:00
|
|
|
### BUG-6: reorderParticipants doesn't update turnOrderIds
|
|
|
|
|
- FIXED structurally by 1-list model.
|
2026-07-01 14:33:00 -04:00
|
|
|
|
2026-07-04 22:27:32 -04:00
|
|
|
### BUG-7: reorderParticipants not logged
|
2026-07-04 22:30:33 -04:00
|
|
|
- FIXED --- returns log:{message, undo}. Handler calls logAction. deathSave,
|
2026-07-04 22:27:32 -04:00
|
|
|
addParticipants, updateParticipant logging gaps also closed.
|
|
|
|
|
|
2026-07-04 16:59:52 -04:00
|
|
|
### BUG-8: server adapter has no reconnect
|
2026-07-04 22:30:33 -04:00
|
|
|
- FIXED --- onclose reconnects + re-subscribes existing paths.
|
2026-07-01 14:33:00 -04:00
|
|
|
|
2026-07-04 17:06:07 -04:00
|
|
|
### BUG-10: deact+reactivate same round double-acts participant
|
2026-07-04 22:30:33 -04:00
|
|
|
- FIXED --- 1-list model keeps slot position on toggle. Reactivate does not
|
2026-07-04 17:06:07 -04:00
|
|
|
grant second turn. Test: turn.bug10.test.js.
|
|
|
|
|
|
2026-07-04 16:59:52 -04:00
|
|
|
### BUG-11: FE Combat.scenario test crashes
|
2026-07-04 22:30:33 -04:00
|
|
|
- FIXED --- moved to shared/turn.combat.test.js, pure functions, 100 rounds.
|
2026-07-04 16:59:52 -04:00
|
|
|
|
|
|
|
|
### BUG-12: campaign selection follows activeDisplay
|
|
|
|
|
- FIXED.
|
2026-07-01 17:19:31 -04:00
|
|
|
|
2026-07-04 22:27:32 -04:00
|
|
|
### BUG-13: reorderParticipants crossing current pointer = ambiguous
|
2026-07-04 22:30:33 -04:00
|
|
|
- FIXED --- block cross-pointer reorder during active encounter (both dirs).
|
2026-07-04 17:12:13 -04:00
|
|
|
Full fix needs actedThisRound tracking. Pragmatic block prevents skip/double.
|
2026-07-04 22:27:32 -04:00
|
|
|
Pre-combat: free reorder. Test: turn.bug13.test.js.
|
2026-07-04 17:12:13 -04:00
|
|
|
|
2026-07-01 17:19:31 -04:00
|
|
|
### BUG-14: addParticipant init-insertion breaks after drag-reorder
|
2026-07-04 22:30:33 -04:00
|
|
|
- FIXED --- slotIndexForInit scans current list (post-drag aware).
|
2026-07-04 16:59:52 -04:00
|
|
|
|
|
|
|
|
### BUG-15: DisplayView re-sorts (drag order not preserved)
|
2026-07-04 22:30:33 -04:00
|
|
|
- FIXED --- display renders participants[] directly.
|
2026-07-04 12:22:04 -04:00
|
|
|
|
|
|
|
|
### BUG-16: subscribeCollection hook drops queryConstraints
|
2026-07-04 22:30:33 -04:00
|
|
|
- FIXED --- neutral builders, both adapters honor orderBy/limit.
|
2026-07-04 12:22:04 -04:00
|
|
|
|
|
|
|
|
### BUG-17: dead SDK imports in App.js
|
2026-07-04 22:30:33 -04:00
|
|
|
- FIXED --- trimmed (auth + getFirestore + getStorage remain).
|
2026-07-04 16:59:52 -04:00
|
|
|
|
|
|
|
|
### BUG-18: stale comments reference deleted memory adapter
|
|
|
|
|
- FIXED.
|
|
|
|
|
|
|
|
|
|
### FEAT-1: Dead participants stay in turn order
|
2026-07-04 22:30:33 -04:00
|
|
|
- DONE --- applyHpChange no longer flips isActive on death. Dead stay in
|
2026-07-04 16:59:52 -04:00
|
|
|
rotation, nextTurn visits them, PCs get death-save turn.
|
|
|
|
|
|
|
|
|
|
### combat.scenario 100 rounds not turns
|
2026-07-04 22:30:33 -04:00
|
|
|
- DONE --- loops by actual round-wrap count.
|
2026-07-04 17:12:13 -04:00
|
|
|
|
2026-07-04 22:27:32 -04:00
|
|
|
### feat: add all characters to participants list
|
2026-07-04 22:30:33 -04:00
|
|
|
- DONE --- addParticipants bulk add wired.
|