feat(design): VoicingBrowser show prop + LickCard stack-guard hardening (task D-23)

show='guitar'|'piano'|'both' (default both — 50/50 SSR renders
byte-identical for existing mounts); LickCard double-stop collision
guard now checks all same-column notes. Critic PASS (subsumption
proven; 13/13 lick layouts unchanged; adversarial overlap dead).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
vadimwit
2026-07-08 23:56:22 +01:00
parent ee81326db0
commit db397f6ceb
2 changed files with 28 additions and 7 deletions
+10 -5
View File
@@ -12,8 +12,9 @@
// spaced columns in `tab` order — no bars, beams or durations are invented.
//
// Column rule: each note takes the next column, EXCEPT a note tagged
// `double-stop`, which stacks into the PREVIOUS note's column (unless it is on
// the same string, where stacking would overlap — then it takes a new column).
// `double-stop`, which stacks into the PREVIOUS note's column unless ANY note
// already placed in that column is on the same string (stacking would overlap
// exactly), in which case it takes a new column.
//
// Technique glyphs (amber, the established secondary-tone colour):
// hammer-on → slur arc from the previous note + italic "h" above
@@ -95,9 +96,13 @@ export function layoutTab(tab) {
let col = -1
for (let i = 0; i < clean.length; i++) {
const n = clean[i]
const prev = notes[i - 1]
// double-stop stacks into the previous column — unless same string (overlap).
const stacks = i > 0 && n.technique === 'double-stop' && prev.string !== n.string
// double-stop stacks into the previous column — unless ANY note already
// placed there shares this string (a ≥3-note stack can repeat the string of
// a non-adjacent same-column note, which would overlap exactly — D-23).
const stacks =
i > 0 &&
n.technique === 'double-stop' &&
!notes.some((m) => m.col === col && m.string === n.string)
if (!stacks) col++
const ghost = n.technique === 'ghost-note'
notes.push({