2026-03-02 13:18:47 -08:00
|
|
|
import { memo, useMemo } from "react";
|
2025-10-25 03:23:41 -07:00
|
|
|
import { Badge } from "~/components/ui/badge";
|
|
|
|
|
|
|
|
|
|
interface TeamsDraftedGridProps {
|
|
|
|
|
draftSlots: Array<{
|
|
|
|
|
id: string;
|
|
|
|
|
team: {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
|
|
|
|
};
|
|
|
|
|
}>;
|
2026-02-22 16:56:07 -08:00
|
|
|
ownerMap?: Record<string, string>;
|
2025-10-25 03:23:41 -07:00
|
|
|
picks: Array<{
|
|
|
|
|
id: string;
|
|
|
|
|
team: {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
|
|
|
|
};
|
|
|
|
|
participant: {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
|
|
|
|
};
|
|
|
|
|
sport: {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
|
|
|
|
};
|
|
|
|
|
}>;
|
2026-02-20 21:26:27 -08:00
|
|
|
sports: Array<{
|
2025-10-25 03:23:41 -07:00
|
|
|
id: string;
|
|
|
|
|
name: string;
|
|
|
|
|
}>;
|
|
|
|
|
season: {
|
|
|
|
|
numFlexPicks: number;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-02 13:18:47 -08:00
|
|
|
export const TeamsDraftedGrid = memo(function TeamsDraftedGrid({
|
2025-10-25 03:23:41 -07:00
|
|
|
draftSlots,
|
|
|
|
|
picks,
|
2026-02-20 21:26:27 -08:00
|
|
|
sports,
|
2025-10-25 03:23:41 -07:00
|
|
|
season,
|
2026-02-22 16:56:07 -08:00
|
|
|
ownerMap = {},
|
2025-10-25 03:23:41 -07:00
|
|
|
}: TeamsDraftedGridProps) {
|
|
|
|
|
// Calculate picks by team and sport
|
|
|
|
|
const picksByTeamAndSport = useMemo(() => {
|
|
|
|
|
const map = new Map<string, Map<string, typeof picks>>();
|
|
|
|
|
|
|
|
|
|
picks.forEach((pick) => {
|
|
|
|
|
if (!map.has(pick.team.id)) {
|
|
|
|
|
map.set(pick.team.id, new Map());
|
|
|
|
|
}
|
|
|
|
|
const teamMap = map.get(pick.team.id)!;
|
|
|
|
|
if (!teamMap.has(pick.sport.id)) {
|
|
|
|
|
teamMap.set(pick.sport.id, []);
|
|
|
|
|
}
|
|
|
|
|
teamMap.get(pick.sport.id)!.push(pick);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return map;
|
|
|
|
|
}, [picks]);
|
|
|
|
|
|
|
|
|
|
// Calculate flex picks used by each team
|
|
|
|
|
const flexPicksByTeam = useMemo(() => {
|
|
|
|
|
const map = new Map<string, number>();
|
|
|
|
|
|
|
|
|
|
draftSlots.forEach((slot) => {
|
|
|
|
|
const teamPicks = picks.filter((p) => p.team.id === slot.team.id);
|
2026-02-20 21:26:27 -08:00
|
|
|
const uniqueSportsPicked = new Set(teamPicks.map((p) => p.sport.id)).size;
|
|
|
|
|
const flexUsed = Math.max(0, teamPicks.length - uniqueSportsPicked);
|
2025-10-25 03:23:41 -07:00
|
|
|
map.set(slot.team.id, flexUsed);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return map;
|
2026-02-20 21:26:27 -08:00
|
|
|
}, [picks, draftSlots]);
|
2025-10-25 03:23:41 -07:00
|
|
|
|
|
|
|
|
if (sports.length === 0) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex items-center justify-center h-full p-8 text-muted-foreground">
|
2026-02-20 21:26:27 -08:00
|
|
|
<p>No sports have been configured for this season.</p>
|
2025-10-25 03:23:41 -07:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="w-full h-full overflow-auto">
|
2025-10-25 18:25:26 -07:00
|
|
|
<table className="w-full border-collapse">
|
2025-10-25 03:23:41 -07:00
|
|
|
<thead className="sticky top-0 bg-background z-10">
|
|
|
|
|
<tr>
|
2026-02-22 22:36:12 -08:00
|
|
|
<th className="border-r border-b border-border p-2 text-left font-semibold min-w-[150px] bg-muted/50 sticky left-0 z-20">
|
2025-10-25 03:23:41 -07:00
|
|
|
Sport
|
|
|
|
|
</th>
|
2025-10-25 18:25:26 -07:00
|
|
|
{draftSlots.map((slot, index) => {
|
2025-10-25 03:23:41 -07:00
|
|
|
const flexUsed = flexPicksByTeam.get(slot.team.id) || 0;
|
2025-10-25 18:25:26 -07:00
|
|
|
const isLast = index === draftSlots.length - 1;
|
2025-10-25 03:23:41 -07:00
|
|
|
return (
|
|
|
|
|
<th
|
|
|
|
|
key={slot.id}
|
2025-10-25 18:25:26 -07:00
|
|
|
className={`border-b border-border p-2 text-left font-semibold min-w-[180px] bg-muted/50 ${!isLast ? 'border-r' : ''}`}
|
2025-10-25 03:23:41 -07:00
|
|
|
>
|
|
|
|
|
<div className="flex flex-col gap-1">
|
|
|
|
|
<div className="font-semibold text-sm">
|
2026-02-22 16:56:07 -08:00
|
|
|
{ownerMap[slot.team.id] || slot.team.name}
|
2025-10-25 03:23:41 -07:00
|
|
|
</div>
|
|
|
|
|
<div className="text-xs text-muted-foreground font-normal">
|
|
|
|
|
{flexUsed} of {season.numFlexPicks} flex
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</th>
|
|
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
2025-10-25 18:25:26 -07:00
|
|
|
<tbody className="border-b border-border">
|
|
|
|
|
{sports.map((sport, sportIndex) => {
|
|
|
|
|
const isLastRow = sportIndex === sports.length - 1;
|
|
|
|
|
return (
|
|
|
|
|
<tr key={sport.id}>
|
2026-02-22 22:36:12 -08:00
|
|
|
<td className={`border-r border-border p-2 font-medium bg-muted/30 sticky left-0 z-10 ${!isLastRow ? 'border-b' : ''}`}>
|
2025-10-25 18:25:26 -07:00
|
|
|
{sport.name}
|
|
|
|
|
</td>
|
|
|
|
|
{draftSlots.map((slot, slotIndex) => {
|
|
|
|
|
const teamSportPicks =
|
|
|
|
|
picksByTeamAndSport
|
|
|
|
|
.get(slot.team.id)
|
|
|
|
|
?.get(sport.id) || [];
|
|
|
|
|
const hasMultiplePicks = teamSportPicks.length > 1;
|
|
|
|
|
const isLastCol = slotIndex === draftSlots.length - 1;
|
2025-10-25 03:23:41 -07:00
|
|
|
|
2025-10-25 18:25:26 -07:00
|
|
|
return (
|
|
|
|
|
<td
|
|
|
|
|
key={`${slot.team.id}-${sport.id}`}
|
|
|
|
|
className={`border-border p-2 ${
|
|
|
|
|
hasMultiplePicks
|
|
|
|
|
? "bg-accent/30 font-semibold"
|
|
|
|
|
: "bg-background"
|
|
|
|
|
} ${!isLastRow ? 'border-b' : ''} ${!isLastCol ? 'border-r' : ''}`}
|
|
|
|
|
>
|
2025-10-25 03:23:41 -07:00
|
|
|
{teamSportPicks.length > 0 ? (
|
|
|
|
|
<div className="flex flex-col gap-1">
|
2026-02-20 21:26:27 -08:00
|
|
|
{teamSportPicks.map((pick, i) => (
|
2025-10-25 03:23:41 -07:00
|
|
|
<div
|
|
|
|
|
key={pick.id}
|
|
|
|
|
className="text-sm flex items-center gap-1"
|
|
|
|
|
>
|
|
|
|
|
<span>{pick.participant.name}</span>
|
|
|
|
|
{hasMultiplePicks && (
|
|
|
|
|
<Badge
|
|
|
|
|
variant="secondary"
|
|
|
|
|
className="text-xs px-1 py-0"
|
|
|
|
|
>
|
2026-02-20 21:26:27 -08:00
|
|
|
{i + 1}
|
2025-10-25 03:23:41 -07:00
|
|
|
</Badge>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
) : null}
|
|
|
|
|
</td>
|
|
|
|
|
);
|
|
|
|
|
})}
|
2025-10-25 18:25:26 -07:00
|
|
|
</tr>
|
|
|
|
|
);
|
|
|
|
|
})}
|
2025-10-25 03:23:41 -07:00
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2026-03-02 13:18:47 -08:00
|
|
|
});
|