Commit graph

104 commits

Author SHA1 Message Date
c6cdfc42d5 Keep manual quantity consistent when synchronizing device rows
Synchronizing a project device pushes its quantity onto every linked
device row, but manualQuantity is not part of the sync snapshot and was
left untouched. A device whose quantity is lower than the row's left the
row at manualQuantity > quantity, violating the snapshot invariant.

The violation surfaced far from its cause: the invariant is only checked
when a full state snapshot is read, and the automatic snapshot runs every
25 revisions. A project could therefore accumulate the broken row
silently and then reject every subsequent command, because the failing
validation rolls back the whole transaction including the revision bump.

Recompute manualQuantity as the synchronized quantity minus the total of
the linked external objects, matching the invariant that
assertCircuitDeviceRowQuantity enforces elsewhere, and reject a
synchronized quantity that falls below that total.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-23 18:05:50 +02:00
b45dc5002d Fix code-review findings across domain, persistence, server and frontend
Full-codebase review turned up five real correctness/security bugs and
a dozen smaller inconsistencies; all are fixed here with matching test
coverage:

- BMK uniqueness silently allowed German-umlaut duplicates ("Ä1" vs
  "ä1") because the DB's normalized index only folds ASCII case. Added
  a shared Unicode-aware pre-check used by every circuit/component
  insert and rename path (one of which had no pre-check at all).
- CircuitDeviceRow.simultaneityFactor had no upper bound at the row
  level (command model and snapshot/restore schema), unlike every
  sibling entity, letting a bad value silently corrupt power totals.
- Grid cell editing silently misread German thousands-separator input
  ("1.500" parsed as 1.5); "." is now rejected outright with a clear
  message instead of guessing.
- The editor's shared command runner (runCommand/applyHistory) had no
  re-entrancy guard, so a double click/drop could fire the same
  command twice and race a BMK collision or revision conflict. Added a
  synchronous ref guard plus isSaving on the buttons that lacked it.
- GET .../next-identifier leaked circuit-numbering state for sections
  in other projects (no ownership check, 400 instead of 404). Moved
  under /projects/:projectId and scoped it.

Also: added the missing circuits.section_id / circuit_device_rows.
circuit_id indexes (migration 0006), gave FormModal a focus trap /
Escape-to-close / focus restore and rebuilt ProjectSettingsModal on
top of it instead of duplicated markup, removed dead code (3 orphaned
domain model files, an unused persistence helper, a wrapper only used
by its own test), pointed the project page at GET /projects/:id
instead of listing+filtering client-side, closed the gap between the
documented 18 MB CSV limit and the ~17.17 MiB actually enforced, added
missing upper bounds on several free-text fields, filled in nine
missing German labels in the revision timeline, replaced a
key-order-fragile JSON.stringify equality check with a real field
comparison, made an implicit sort-order assumption in three
renumbering helpers explicit, cleared the sidebar's target selection
when it no longer resolves after a tree reload, and fixed
updateGlobalDevice to check-then-write instead of write-then-check.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-06 21:31:16 +02:00
a69b7b603f Add external object new circuit command 2026-08-02 18:55:57 +02:00
347b3717c3 Add external object new row command 2026-08-02 18:44:46 +02:00
1a7dd7fe03 Add external object row assignment command 2026-08-02 18:38:38 +02:00
dac19b093c Add external row quantity foundation 2026-08-02 18:26:22 +02:00
c634570018 Add atomic Revit initial import 2026-08-02 17:33:32 +02:00
e87a3289fa Include external models in project snapshots 2026-08-02 17:25:25 +02:00
76493b573e Add external model persistence foundation 2026-08-02 17:18:24 +02:00
caa6caf99f Add Revit CSV preview API 2026-08-02 16:49:42 +02:00
219da5ec3b Persist Revit CSV configuration 2026-08-02 16:33:18 +02:00
44b6fde940 Add public building project setting 2026-07-31 17:41:30 +02:00
1eed19ef6b Add editable project floors and rooms 2026-07-31 14:46:06 +02:00
734a2bcfc4 Create clean release database baseline 2026-07-31 14:07:26 +02:00
0fd564a930 Persist complete distribution board subtrees 2026-07-31 11:57:10 +02:00
8898117ed4 Configure circuit protection 2026-07-31 07:45:48 +02:00
18ca5eb3d4 Persist circuit protection updates 2026-07-31 07:37:38 +02:00
7a9530a914 Expose protected tree structure 2026-07-30 20:14:45 +02:00
99bdf6491b Persist populated group deletion 2026-07-30 20:10:10 +02:00
3399fcd88b Persist circuit group moves 2026-07-30 20:03:11 +02:00
07925b2fd9 Persist circuit group renumbering 2026-07-30 19:56:59 +02:00
e702712bd8 Add circuit group reordering 2026-07-30 19:49:27 +02:00
1250f9a6af Add circuit group commands 2026-07-30 19:46:55 +02:00
69b020339e Add component update commands 2026-07-30 19:42:09 +02:00
604604f056 Add component structure commands 2026-07-30 19:38:48 +02:00
9d4d4082fe Create protected board defaults 2026-07-30 19:30:53 +02:00
012308984d Include components in project snapshots 2026-07-30 19:24:28 +02:00
e7607c90c4 Add component persistence foundation 2026-07-30 19:15:00 +02:00
9ea081179d Add distribution power summaries 2026-07-29 19:02:18 +02:00
dcb303284c Describe snapshot source revisions 2026-07-29 11:52:26 +02:00
096ba8aa1c Standardize phase type labels 2026-07-29 10:46:00 +02:00
084103bf54 Derive device voltages from project settings 2026-07-29 09:53:58 +02:00
b1a11397b3 Add configurable distribution supply types 2026-07-29 09:31:20 +02:00
feec814dc5 Add project transfer controls 2026-07-28 19:36:26 +02:00
da8115fe1d Add portable project transfer API 2026-07-28 18:34:57 +02:00
d77cfbeb49 Add versioned project settings modal 2026-07-28 18:16:22 +02:00
d7b98de56a Inject application database contexts 2026-07-26 12:30:42 +02:00
859fa4a42a Decouple legacy migration service 2026-07-26 12:11:05 +02:00
0cedeaa959 Remove unused revision repository 2026-07-26 11:40:04 +02:00
4789e01aac Centralize snapshot restore transactions 2026-07-26 11:35:45 +02:00
214ad728cd Centralize device row update transactions 2026-07-26 11:28:06 +02:00
e4d22caf09 Centralize update command transactions 2026-07-26 11:24:19 +02:00
0f306d9a90 Reuse command transaction boundary 2026-07-26 11:21:01 +02:00
266bdb4749 Centralize structural command transactions 2026-07-26 11:14:24 +02:00
d23e7d990c Remove obsolete repository writes 2026-07-26 11:05:26 +02:00
ac465a1cc0 Persist project locations 2026-07-26 10:56:29 +02:00
1cf26a932e Persist distribution board setup 2026-07-25 23:41:27 +02:00
1a77eedaa8 Add automatic project snapshots 2026-07-25 23:27:51 +02:00
b2763f72d5 Persist project settings updates 2026-07-25 23:08:07 +02:00
384a5769ab Restore named project snapshots 2026-07-25 22:41:24 +02:00