2026-03-21 00:12:01 -07:00
|
|
|
import { Form, Link } from "react-router";
|
|
|
|
|
import type { Route } from "./+types/admin.sports-seasons.$id.regular-standings";
|
|
|
|
|
|
2026-03-21 13:41:39 -07:00
|
|
|
import { logger } from "~/lib/logger";
|
2026-03-21 00:12:01 -07:00
|
|
|
import { findSportsSeasonById } from "~/models/sports-season";
|
Canonical tournament layer: schema + backfill (1/2) (#365)
* refactor(schema): rename per-window tables to season_* prefix
Renames participants, participant_expected_values, participant_qualifying_totals,
participant_results, participant_surface_elos to season_* prefixed names.
Renames event_results.participant_id to season_participant_id.
Phase 1a of canonical tournament layer migration.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* refactor: rename participant.ts model file to season-participant.ts
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* refactor(models): update model layer to use renamed schema exports
Updated all model files to use the renamed schema exports from Task 1:
- participants → seasonParticipants
- participantExpectedValues → seasonParticipantExpectedValues
- participantQualifyingTotals → seasonParticipantQualifyingTotals
- participantResults → seasonParticipantResults
- participantSurfaceElos → seasonParticipantSurfaceElos
- eventResults.participantId → eventResults.seasonParticipantId
- db.query relation accessors updated
- Relation field .participant → .seasonParticipant where applicable
- Import paths updated: ./participant → ./season-participant
Files updated (14 model files + 3 test files):
- draft-pick.ts
- draft-utils.ts
- event-result.ts
- group-stage-match.ts
- participant-result.ts
- qualifying-points.ts
- scoring-calculator.ts
- scoring-event.ts
- sports-season.ts
- surface-elo.ts
- team-score-events.ts
- cs2-major-stage.ts
- golf-skills.ts
- participant-expected-value.ts
- __tests__/sports-season.clone.test.ts
- __tests__/auto-pick.test.ts
- __tests__/executeAutoPick.timer.test.ts
Typecheck errors decreased: 779 → 499 (280 fewer)
All model file errors related to renamed schemas resolved.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* refactor(routes): update route layer to use renamed schema exports
- Update model import from ~/models/participant to ~/models/season-participant
- Rename schema.participants to schema.seasonParticipants
- Rename schema.participantResults to schema.seasonParticipantResults
- Rename db.query.participants to db.query.seasonParticipants
- Update 9 route files and 1 test file
Affected files:
- admin.sports-seasons.$id.events.$eventId.bracket.server.ts
- admin.sports-seasons.$id.participants.tsx
- api/draft.force-manual-pick.ts
- api/draft.make-pick.ts
- api/draft.replace-pick.ts
- api/seasons.$seasonId.draft.ts
- leagues/$leagueId.draft-board.$seasonId.tsx
- leagues/$leagueId.sports-seasons.$sportsSeasonId.server.ts
- admin/__tests__/sports-seasons-participants.test.ts
Error count reduced from 499 to 453 (46 errors fixed).
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* refactor(routes): update route files for schema rename
Update route imports from ~/models/participant to ~/models/season-participant
and fix references to .participant/.participantId on event results to use
.seasonParticipant/.seasonParticipantId after schema rename.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* refactor(services): update simulators and services for renamed schema
Update all simulators, services, and server files to use renamed schema tables:
- participants → seasonParticipants
- participantExpectedValues → seasonParticipantExpectedValues
- participantResults → seasonParticipantResults
- eventResults.participantId → eventResults.seasonParticipantId
Files updated:
- 20 sport simulators (NBA, NHL, NFL, MLB, etc.)
- probability-updater.ts
- standings-sync/index.ts
- sports-data-sync.server.ts
- server/socket.ts
Typecheck errors reduced from 365 to 0.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* migration: rename per-window tables to season_* prefix
* fix(tests): update mock query keys after participants table rename
Change mock db.query.participants to db.query.seasonParticipants in test
files to match the schema rename from commit 66145a9. This fixes
"Cannot read properties of undefined (reading 'findFirst'/'findMany')"
errors that occurred when production code queries db.query.seasonParticipants
but test mocks only defined the old participants key.
Files updated:
- app/services/simulations/__tests__/world-cup-simulator.test.ts
- app/routes/api/__tests__/draft.force-manual-pick.test.ts
- app/routes/api/__tests__/draft.force-manual-pick.timer-mode.test.ts
- app/routes/api/__tests__/draft.make-pick.timer-mode.test.ts
- server/__tests__/timer-autodraft.test.ts
- app/models/__tests__/team-score-events.test.ts
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(tests): update remaining mock paths and keys after schema rename
* fix(tests): final two mock stragglers after schema rename
- draft-pick.test.ts: assertion on db.query.participantQualifyingTotals
- process-match-result.test.ts: mock key participants → seasonParticipants
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* chore: add post-phase1a baseline capture (temp, for diff verification)
* chore: capture pre-migration baselines
* chore: remove post-phase1a capture helper after verification
* schema: add canonical tournament & participant tables
Adds tournaments, participants (canonical), tournament_results, and
participant_surface_elos (canonical). Adds nullable tournament_id to
scoring_events and nullable participant_id to season_participants.
Phase 1b of canonical tournament layer migration.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* feat(models): add canonical tournament, participant, result, surface-elo models
Adds CRUD modules for the canonical tables created in commit 775b905.
Each module mirrors existing app/models conventions (database() from
~/database/context, schema from ~/database/schema, mock-based tests).
Key implementation notes:
- participant.ts exports use "Canonical" prefix (CanonicalParticipant,
createCanonicalParticipant, etc.) to avoid collision with existing
season-participant.ts exports
- All four models include comprehensive unit tests following the
audit-log.test.ts pattern
- Tests use mocked db responses (no real database access)
- Upsert functions use onConflictDoUpdate for appropriate unique constraints
Part of Phase 1b of canonical tournament layer migration.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* migration: create canonical tables, add nullable FKs
* scripts: add extractTournamentIdentity helper for backfill
Pure function that derives canonical (name, year) identity from a
scoring_events row, stripping trailing 4-digit years from the name or
falling back to eventDate. Used by the Phase 2 backfill to group
per-window events into canonical tournaments.
* scripts: add backfill orchestrator for canonical layer
Populates canonical tournaments, participants, tournament_results, and
participant_surface_elos from per-window data for qualifying-points
sports. Skips already-linked rows, is idempotent, and supports dry-run
mode.
Critical invariants enforced by the implementation:
- qualifying_points_awarded is never copied to tournament_results
- season_participant_qualifying_totals is never touched
- conflicting surface-Elo values between windows raise a loud error
(recorded in report.errors) rather than overwriting
* scripts: add backfill CLI with dry-run default
Wires backfill-canonical-layer.ts to a CLI entry point exposed as
`npm run backfill:canonical`. Defaults to --dry-run; requires --apply
to actually write. Supports --sport=<uuid> to limit to a single sport.
Exits 2 if the backfill reports errors (e.g., surface-Elo conflicts).
* fix(backfill-cli): wrap runBackfill in DatabaseContext.run
The orchestrator uses database() from ~/database/context, which requires
AsyncLocalStorage to be populated. Wrap the CLI invocation with
DatabaseContext.run(db, ...) using server/db's cached connection pool.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(backfill-cli): exit 0 on success so pg pool doesn't block
The cached postgres connection pool keeps the Node event loop open after
main() returns. Explicit process.exit(0) on success mirrors the pattern
in scripts/capture-baseline.ts.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
---------
Co-authored-by: Chris Parsons <chrisp@extrahop.com>
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-01 20:13:18 -07:00
|
|
|
import { findParticipantsBySportsSeasonId } from "~/models/season-participant";
|
2026-03-21 00:12:01 -07:00
|
|
|
import { getRegularSeasonStandings, upsertManualStanding } from "~/models/regular-season-standings";
|
|
|
|
|
import { Button } from "~/components/ui/button";
|
|
|
|
|
import { Input } from "~/components/ui/input";
|
|
|
|
|
import {
|
|
|
|
|
Card,
|
|
|
|
|
CardContent,
|
|
|
|
|
CardDescription,
|
|
|
|
|
CardHeader,
|
|
|
|
|
CardTitle,
|
|
|
|
|
} from "~/components/ui/card";
|
|
|
|
|
import { ArrowLeft, Save, BarChart3 } from "lucide-react";
|
|
|
|
|
|
|
|
|
|
export function meta({ data }: Route.MetaArgs): Route.MetaDescriptors {
|
|
|
|
|
return [{ title: `Regular Season Standings — ${data?.sportsSeason?.name ?? "Sports Season"} - Brackt Admin` }];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function loader({ params }: Route.LoaderArgs) {
|
|
|
|
|
const sportsSeason = await findSportsSeasonById(params.id);
|
|
|
|
|
if (!sportsSeason) {
|
|
|
|
|
throw new Response("Sports season not found", { status: 404 });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const participants = await findParticipantsBySportsSeasonId(params.id);
|
|
|
|
|
const standingsRecords = await getRegularSeasonStandings(params.id);
|
|
|
|
|
|
|
|
|
|
// Build a map of existing records keyed by participantId
|
|
|
|
|
const standingsMap = Object.fromEntries(
|
|
|
|
|
standingsRecords.map((r) => [r.participantId, r])
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return {
|
2026-05-07 11:48:57 -07:00
|
|
|
sportsSeason: sportsSeason as typeof sportsSeason & { sport: { id: string; name: string; type: string; simulatorType: string | null } },
|
2026-03-21 00:12:01 -07:00
|
|
|
participants,
|
|
|
|
|
standingsMap,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function action({ request, params }: Route.ActionArgs) {
|
|
|
|
|
const formData = await request.formData();
|
|
|
|
|
|
2026-05-07 11:48:57 -07:00
|
|
|
// Parse updates from form fields: wins_<id>, losses_<id>, ties_<id>, otLosses_<id>, etc.
|
2026-03-21 00:12:01 -07:00
|
|
|
const byId = new Map<
|
|
|
|
|
string,
|
|
|
|
|
{
|
|
|
|
|
wins?: number;
|
|
|
|
|
losses?: number;
|
|
|
|
|
otLosses?: number | null;
|
2026-05-07 11:48:57 -07:00
|
|
|
ties?: number | null;
|
|
|
|
|
gamesPlayed?: number | null;
|
|
|
|
|
leagueRank?: number | null;
|
|
|
|
|
tablePoints?: number | null;
|
|
|
|
|
goalsFor?: number | null;
|
|
|
|
|
goalsAgainst?: number | null;
|
|
|
|
|
goalDifference?: number | null;
|
2026-03-21 00:12:01 -07:00
|
|
|
conference?: string | null;
|
|
|
|
|
division?: string | null;
|
|
|
|
|
}
|
|
|
|
|
>();
|
|
|
|
|
|
|
|
|
|
for (const [key, value] of formData.entries()) {
|
|
|
|
|
const winsMatch = key.match(/^wins_(.+)$/);
|
|
|
|
|
const lossesMatch = key.match(/^losses_(.+)$/);
|
|
|
|
|
const otMatch = key.match(/^otLosses_(.+)$/);
|
2026-05-07 11:48:57 -07:00
|
|
|
const tiesMatch = key.match(/^ties_(.+)$/);
|
|
|
|
|
const gpMatch = key.match(/^gamesPlayed_(.+)$/);
|
|
|
|
|
const rankMatch = key.match(/^leagueRank_(.+)$/);
|
|
|
|
|
const pointsMatch = key.match(/^tablePoints_(.+)$/);
|
|
|
|
|
const gfMatch = key.match(/^goalsFor_(.+)$/);
|
|
|
|
|
const gaMatch = key.match(/^goalsAgainst_(.+)$/);
|
|
|
|
|
const gdMatch = key.match(/^goalDifference_(.+)$/);
|
2026-03-21 00:12:01 -07:00
|
|
|
const confMatch = key.match(/^conference_(.+)$/);
|
|
|
|
|
const divMatch = key.match(/^division_(.+)$/);
|
|
|
|
|
|
|
|
|
|
if (winsMatch) {
|
|
|
|
|
const id = winsMatch[1];
|
|
|
|
|
const wins = parseInt(value as string, 10);
|
|
|
|
|
if (!isNaN(wins)) byId.set(id, { ...byId.get(id), wins });
|
|
|
|
|
} else if (lossesMatch) {
|
|
|
|
|
const id = lossesMatch[1];
|
|
|
|
|
const losses = parseInt(value as string, 10);
|
|
|
|
|
if (!isNaN(losses)) byId.set(id, { ...byId.get(id), losses });
|
|
|
|
|
} else if (otMatch) {
|
|
|
|
|
const id = otMatch[1];
|
|
|
|
|
const otLosses = value === "" ? null : parseInt(value as string, 10);
|
|
|
|
|
byId.set(id, { ...byId.get(id), otLosses: isNaN(otLosses as number) ? null : otLosses });
|
2026-05-07 11:48:57 -07:00
|
|
|
} else if (tiesMatch) {
|
|
|
|
|
const id = tiesMatch[1];
|
|
|
|
|
const ties = value === "" ? null : parseInt(value as string, 10);
|
|
|
|
|
byId.set(id, { ...byId.get(id), ties: isNaN(ties as number) ? null : ties });
|
|
|
|
|
} else if (gpMatch) {
|
|
|
|
|
const id = gpMatch[1];
|
|
|
|
|
const gamesPlayed = value === "" ? null : parseInt(value as string, 10);
|
|
|
|
|
byId.set(id, { ...byId.get(id), gamesPlayed: isNaN(gamesPlayed as number) ? null : gamesPlayed });
|
|
|
|
|
} else if (rankMatch) {
|
|
|
|
|
const id = rankMatch[1];
|
|
|
|
|
const leagueRank = value === "" ? null : parseInt(value as string, 10);
|
|
|
|
|
byId.set(id, { ...byId.get(id), leagueRank: isNaN(leagueRank as number) ? null : leagueRank });
|
|
|
|
|
} else if (pointsMatch) {
|
|
|
|
|
const id = pointsMatch[1];
|
|
|
|
|
const tablePoints = value === "" ? null : parseInt(value as string, 10);
|
|
|
|
|
byId.set(id, { ...byId.get(id), tablePoints: isNaN(tablePoints as number) ? null : tablePoints });
|
|
|
|
|
} else if (gfMatch) {
|
|
|
|
|
const id = gfMatch[1];
|
|
|
|
|
const goalsFor = value === "" ? null : parseInt(value as string, 10);
|
|
|
|
|
byId.set(id, { ...byId.get(id), goalsFor: isNaN(goalsFor as number) ? null : goalsFor });
|
|
|
|
|
} else if (gaMatch) {
|
|
|
|
|
const id = gaMatch[1];
|
|
|
|
|
const goalsAgainst = value === "" ? null : parseInt(value as string, 10);
|
|
|
|
|
byId.set(id, { ...byId.get(id), goalsAgainst: isNaN(goalsAgainst as number) ? null : goalsAgainst });
|
|
|
|
|
} else if (gdMatch) {
|
|
|
|
|
const id = gdMatch[1];
|
|
|
|
|
const goalDifference = value === "" ? null : parseInt(value as string, 10);
|
|
|
|
|
byId.set(id, { ...byId.get(id), goalDifference: isNaN(goalDifference as number) ? null : goalDifference });
|
2026-03-21 00:12:01 -07:00
|
|
|
} else if (confMatch) {
|
|
|
|
|
const id = confMatch[1];
|
|
|
|
|
byId.set(id, { ...byId.get(id), conference: (value as string).trim() || null });
|
|
|
|
|
} else if (divMatch) {
|
|
|
|
|
const id = divMatch[1];
|
|
|
|
|
byId.set(id, { ...byId.get(id), division: (value as string).trim() || null });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
for (const [participantId, data] of byId.entries()) {
|
2026-03-21 09:44:05 -07:00
|
|
|
if (data.wins === null && data.losses === null) continue;
|
2026-03-21 00:12:01 -07:00
|
|
|
const wins = data.wins ?? 0;
|
|
|
|
|
const losses = data.losses ?? 0;
|
2026-05-07 11:48:57 -07:00
|
|
|
const ties = data.ties ?? 0;
|
|
|
|
|
const gamesPlayed = data.gamesPlayed ?? wins + losses + ties + (data.otLosses ?? 0);
|
2026-03-21 00:12:01 -07:00
|
|
|
const winPct = gamesPlayed > 0 ? wins / gamesPlayed : 0;
|
2026-05-07 11:48:57 -07:00
|
|
|
const goalsFor = data.goalsFor ?? null;
|
|
|
|
|
const goalsAgainst = data.goalsAgainst ?? null;
|
|
|
|
|
const goalDifference = data.goalDifference ?? (goalsFor !== null && goalsAgainst !== null ? goalsFor - goalsAgainst : null);
|
|
|
|
|
const tablePoints = data.tablePoints ?? wins * 3 + ties;
|
2026-03-21 00:12:01 -07:00
|
|
|
|
|
|
|
|
await upsertManualStanding(participantId, params.id, {
|
|
|
|
|
wins,
|
|
|
|
|
losses,
|
|
|
|
|
otLosses: data.otLosses ?? null,
|
2026-05-07 11:48:57 -07:00
|
|
|
ties: data.ties ?? null,
|
|
|
|
|
tablePoints,
|
|
|
|
|
goalsFor,
|
|
|
|
|
goalsAgainst,
|
|
|
|
|
goalDifference,
|
2026-03-21 00:12:01 -07:00
|
|
|
gamesPlayed,
|
2026-05-07 11:48:57 -07:00
|
|
|
leagueRank: data.leagueRank ?? null,
|
2026-03-21 00:12:01 -07:00
|
|
|
winPct,
|
|
|
|
|
conference: data.conference ?? null,
|
|
|
|
|
division: data.division ?? null,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
return { success: true };
|
|
|
|
|
} catch (error) {
|
2026-03-21 13:41:39 -07:00
|
|
|
logger.error("Error saving regular season standings:", error);
|
2026-03-21 00:12:01 -07:00
|
|
|
return { error: "Failed to save standings. Please try again." };
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function ManageRegularStandings({ loaderData, actionData }: Route.ComponentProps) {
|
|
|
|
|
const { sportsSeason, participants, standingsMap } = loaderData;
|
|
|
|
|
const isNhl = sportsSeason.sport?.name?.toLowerCase().includes("nhl") ||
|
|
|
|
|
sportsSeason.sport?.name?.toLowerCase().includes("hockey");
|
2026-05-07 11:48:57 -07:00
|
|
|
const isEpl = sportsSeason.sport?.simulatorType === "epl_standings";
|
2026-03-21 00:12:01 -07:00
|
|
|
|
|
|
|
|
// Sort participants: those with records first (by wins desc), then unrecorded
|
2026-03-21 09:44:05 -07:00
|
|
|
const sorted = [...participants].toSorted((a, b) => {
|
2026-03-21 00:12:01 -07:00
|
|
|
const recA = standingsMap[a.id];
|
|
|
|
|
const recB = standingsMap[b.id];
|
2026-05-07 11:48:57 -07:00
|
|
|
if (recA && recB) {
|
|
|
|
|
if (isEpl) return (recA.leagueRank ?? 999) - (recB.leagueRank ?? 999);
|
|
|
|
|
return (recB.wins ?? 0) - (recA.wins ?? 0);
|
|
|
|
|
}
|
2026-03-21 00:12:01 -07:00
|
|
|
if (recA) return -1;
|
|
|
|
|
if (recB) return 1;
|
|
|
|
|
return a.name.localeCompare(b.name);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="p-8">
|
|
|
|
|
<div className="max-w-3xl">
|
|
|
|
|
<div className="mb-6">
|
|
|
|
|
<Button variant="ghost" size="sm" asChild className="mb-2">
|
|
|
|
|
<Link to={`/admin/sports-seasons/${sportsSeason.id}`}>
|
|
|
|
|
<ArrowLeft className="mr-2 h-4 w-4" />
|
|
|
|
|
Back to Sports Season
|
|
|
|
|
</Link>
|
|
|
|
|
</Button>
|
|
|
|
|
<h1 className="text-3xl font-bold">Regular Season Standings</h1>
|
|
|
|
|
<p className="text-muted-foreground mt-1">
|
|
|
|
|
{sportsSeason.sport.name} — {sportsSeason.name}
|
|
|
|
|
</p>
|
|
|
|
|
<p className="text-sm text-muted-foreground mt-1">
|
2026-05-07 11:48:57 -07:00
|
|
|
Manually enter current standings. These will be overwritten on the next auto-sync unless you use this page again afterward.
|
2026-03-21 00:12:01 -07:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="space-y-6">
|
|
|
|
|
{actionData?.error && (
|
|
|
|
|
<div className="bg-destructive/15 text-destructive px-4 py-3 rounded-md text-sm">
|
|
|
|
|
{actionData.error}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
{actionData?.success && (
|
|
|
|
|
<div className="bg-emerald-500/15 text-emerald-400 px-4 py-3 rounded-md text-sm">
|
|
|
|
|
Standings saved.
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
<Card>
|
|
|
|
|
<CardHeader>
|
|
|
|
|
<CardTitle className="flex items-center gap-2">
|
|
|
|
|
<BarChart3 className="h-5 w-5" />
|
|
|
|
|
W/L Records
|
|
|
|
|
</CardTitle>
|
|
|
|
|
<CardDescription>
|
2026-05-07 11:48:57 -07:00
|
|
|
{isEpl
|
|
|
|
|
? "Enter Premier League table rows. Points, GP, and GD are auto-derived if left blank."
|
|
|
|
|
: <>Enter wins, losses{isNhl ? ", and OT losses" : ""} for each team. Conference and division are optional but improve the standings display.</>}
|
2026-03-21 00:12:01 -07:00
|
|
|
</CardDescription>
|
|
|
|
|
</CardHeader>
|
|
|
|
|
<CardContent>
|
|
|
|
|
<Form method="post">
|
|
|
|
|
<input type="hidden" name="_isNhl" value={isNhl ? "true" : "false"} />
|
|
|
|
|
|
|
|
|
|
<div className="space-y-1 mb-4">
|
2026-05-07 11:48:57 -07:00
|
|
|
{isEpl ? (
|
|
|
|
|
<div className="grid grid-cols-[1fr_3rem_3rem_3rem_3rem_3rem_3rem_3rem_3rem_3rem] gap-2 px-2 pb-1 text-xs font-medium text-muted-foreground uppercase tracking-wide border-b">
|
|
|
|
|
<span>Team</span>
|
|
|
|
|
<span>Pos</span>
|
|
|
|
|
<span>GP</span>
|
|
|
|
|
<span>W</span>
|
|
|
|
|
<span>D</span>
|
|
|
|
|
<span>L</span>
|
|
|
|
|
<span>GF</span>
|
|
|
|
|
<span>GA</span>
|
|
|
|
|
<span>GD</span>
|
|
|
|
|
<span>Pts</span>
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
<div className={`grid gap-2 px-2 pb-1 text-xs font-medium text-muted-foreground uppercase tracking-wide border-b ${isNhl ? "grid-cols-[1fr_3.5rem_3.5rem_3.5rem_6rem_6rem]" : "grid-cols-[1fr_3.5rem_3.5rem_6rem_6rem]"}`}>
|
|
|
|
|
<span>Team</span>
|
|
|
|
|
<span>W</span>
|
|
|
|
|
<span>L</span>
|
|
|
|
|
{isNhl && <span>OTL</span>}
|
|
|
|
|
<span>Conference</span>
|
|
|
|
|
<span>Division</span>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
2026-03-21 00:12:01 -07:00
|
|
|
|
|
|
|
|
{sorted.map((participant) => {
|
|
|
|
|
const record = standingsMap[participant.id];
|
|
|
|
|
const isSynced = record && record.syncedAt !== null;
|
2026-05-07 11:48:57 -07:00
|
|
|
if (isEpl) {
|
|
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
|
key={participant.id}
|
|
|
|
|
className="grid grid-cols-[1fr_3rem_3rem_3rem_3rem_3rem_3rem_3rem_3rem_3rem] gap-2 items-center px-2 py-1.5 rounded hover:bg-muted/40"
|
|
|
|
|
>
|
|
|
|
|
<span className="text-sm font-medium truncate flex items-center gap-1.5">
|
|
|
|
|
{participant.name}
|
|
|
|
|
{isSynced && (
|
|
|
|
|
<span className="text-xs text-muted-foreground font-normal">(synced)</span>
|
|
|
|
|
)}
|
|
|
|
|
</span>
|
|
|
|
|
<Input name={`leagueRank_${participant.id}`} type="number" min="1" defaultValue={record?.leagueRank ?? ""} placeholder="—" className="h-8 text-sm" />
|
|
|
|
|
<Input name={`gamesPlayed_${participant.id}`} type="number" min="0" defaultValue={record?.gamesPlayed ?? ""} placeholder="—" className="h-8 text-sm" />
|
|
|
|
|
<Input name={`wins_${participant.id}`} type="number" min="0" defaultValue={record?.wins ?? ""} placeholder="—" className="h-8 text-sm" />
|
|
|
|
|
<Input name={`ties_${participant.id}`} type="number" min="0" defaultValue={record?.ties ?? ""} placeholder="—" className="h-8 text-sm" />
|
|
|
|
|
<Input name={`losses_${participant.id}`} type="number" min="0" defaultValue={record?.losses ?? ""} placeholder="—" className="h-8 text-sm" />
|
|
|
|
|
<Input name={`goalsFor_${participant.id}`} type="number" min="0" defaultValue={record?.goalsFor ?? ""} placeholder="—" className="h-8 text-sm" />
|
|
|
|
|
<Input name={`goalsAgainst_${participant.id}`} type="number" min="0" defaultValue={record?.goalsAgainst ?? ""} placeholder="—" className="h-8 text-sm" />
|
|
|
|
|
<Input name={`goalDifference_${participant.id}`} type="number" defaultValue={record?.goalDifference ?? ""} placeholder="—" className="h-8 text-sm" />
|
|
|
|
|
<Input name={`tablePoints_${participant.id}`} type="number" min="0" defaultValue={record?.tablePoints ?? ""} placeholder="—" className="h-8 text-sm" />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-21 00:12:01 -07:00
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
|
key={participant.id}
|
|
|
|
|
className={`grid gap-2 items-center px-2 py-1.5 rounded hover:bg-muted/40 ${isNhl ? "grid-cols-[1fr_3.5rem_3.5rem_3.5rem_6rem_6rem]" : "grid-cols-[1fr_3.5rem_3.5rem_6rem_6rem]"}`}
|
|
|
|
|
>
|
|
|
|
|
<span className="text-sm font-medium truncate flex items-center gap-1.5">
|
|
|
|
|
{participant.name}
|
|
|
|
|
{isSynced && (
|
|
|
|
|
<span className="text-xs text-muted-foreground font-normal">(synced)</span>
|
|
|
|
|
)}
|
|
|
|
|
</span>
|
|
|
|
|
<Input
|
|
|
|
|
name={`wins_${participant.id}`}
|
|
|
|
|
type="number"
|
|
|
|
|
min="0"
|
|
|
|
|
defaultValue={record?.wins ?? ""}
|
|
|
|
|
placeholder="—"
|
|
|
|
|
className="h-8 text-sm"
|
|
|
|
|
/>
|
|
|
|
|
<Input
|
|
|
|
|
name={`losses_${participant.id}`}
|
|
|
|
|
type="number"
|
|
|
|
|
min="0"
|
|
|
|
|
defaultValue={record?.losses ?? ""}
|
|
|
|
|
placeholder="—"
|
|
|
|
|
className="h-8 text-sm"
|
|
|
|
|
/>
|
|
|
|
|
{isNhl && (
|
|
|
|
|
<Input
|
|
|
|
|
name={`otLosses_${participant.id}`}
|
|
|
|
|
type="number"
|
|
|
|
|
min="0"
|
|
|
|
|
defaultValue={record?.otLosses ?? ""}
|
|
|
|
|
placeholder="—"
|
|
|
|
|
className="h-8 text-sm"
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
<Input
|
|
|
|
|
name={`conference_${participant.id}`}
|
|
|
|
|
type="text"
|
|
|
|
|
defaultValue={record?.conference ?? ""}
|
|
|
|
|
placeholder="Eastern"
|
|
|
|
|
className="h-8 text-sm"
|
|
|
|
|
/>
|
|
|
|
|
<Input
|
|
|
|
|
name={`division_${participant.id}`}
|
|
|
|
|
type="text"
|
|
|
|
|
defaultValue={record?.division ?? ""}
|
|
|
|
|
placeholder="Atlantic"
|
|
|
|
|
className="h-8 text-sm"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<Button type="submit" className="w-full">
|
|
|
|
|
<Save className="mr-2 h-4 w-4" />
|
|
|
|
|
Save Standings
|
|
|
|
|
</Button>
|
|
|
|
|
</Form>
|
|
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|