The LLWS bracket didn't read as a bracket: cards sat above games that don't feed them, connectors joined the wrong pairs, and several games had no line at all. The stored data was correct — LLWS_ADVANCEMENT already matches the official 2026 LLBWS bracket game for game. The renderer was the problem. TreeColumns placed cards at `index * (height / roundSize)` and ConnectorColumn assumed matches 2k and 2k+1 feed match k, which holds only for an exact halving. The LLWS winners bracket is not one: two of the four Opening Round games skip Winners Round 2 and go straight to the semifinals, so those two got stranded in column one with nothing beside them, and the halving branch drew confident, wrong connectors for the rest. Lay out from the graph instead. app/lib/bracket-layout.ts inverts a template's advancement into "what fills each slot", then assigns columns by depth from the group's final, orders each column by the parent's slot order, and centres each card on its feeders. Counting back from the final is what makes a printed bracket line up: a team entering late is drawn in the column where it actually plays. This reproduces the official International bracket exactly, and fixes Elimination Round 3, where the official bracket prints the later game on top but match-number sort put it below. Because column is depth, every in-group edge spans exactly one gutter, so connectors now draw for unplayed games too. Cards also take a fixed height rather than stretching to fill their column, which is what made a lone final tower over the rest. Empty slots name their source — "Loser of Winners SF 1" rather than "TBD". That is the only way to show the feeds crossing between the winners and elimination brackets, which render as separate trees. Also: - Move the LLWS routing table to app/lib/llws-bracket.ts so the renderer can import it without pulling the database context into the browser bundle; models/playoff-match re-exports it. - Page the mobile view one group at a time, matching desktop. A whole double-elimination phase is a DAG, not a tree, so its columns would be arbitrary. - Add a clear-bracket admin action. Nothing else could rewrite a match's participants, so a mis-seeded bracket had no repair path at all. - Lift the PDF transcription into app/test/fixtures/llws-bracket.ts so the routing and layout tests check against one copy of the official bracket. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01HnzbrCHoM8ESbtbDamaqFb
26 lines
518 B
JSON
26 lines
518 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"include": [
|
|
"server/**/*.ts",
|
|
"database/**/*.ts",
|
|
"app/contexts/**/*.ts",
|
|
"app/models/**/*.ts",
|
|
"app/services/**/*.ts",
|
|
"app/lib/**/*.ts",
|
|
"app/test/fixtures/**/*.ts",
|
|
"app/types/**/*.ts",
|
|
"vite.config.ts"
|
|
],
|
|
"exclude": [
|
|
"**/*.js"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"strict": true,
|
|
"types": ["node"],
|
|
"lib": ["ES2023"],
|
|
"target": "ES2023",
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler"
|
|
}
|
|
}
|