mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-23 03:46:28 -05:00
* Initial * CSS lint * Test CI * Add 1v1, 2v2, and 3v3 Tags (#1771) * Initial * CSS lint * Test CI * Rename step --------- Co-authored-by: xi <104683822+ximk@users.noreply.github.com>
601 lines
16 KiB
TypeScript
601 lines
16 KiB
TypeScript
import * as React from "react";
|
|
|
|
import { Link, useFetcher } from "@remix-run/react";
|
|
import clsx from "clsx";
|
|
import { useTranslation } from "react-i18next";
|
|
import { Button } from "~/components/Button";
|
|
import { Dialog } from "~/components/Dialog";
|
|
import { ModeImage, StageImage } from "~/components/Image";
|
|
import { Label } from "~/components/Label";
|
|
import { SubmitButton } from "~/components/SubmitButton";
|
|
import { Toggle } from "~/components/Toggle";
|
|
import { RefreshArrowsIcon } from "~/components/icons/RefreshArrows";
|
|
import type { TournamentRoundMaps } from "~/db/tables";
|
|
import { useTournament } from "~/features/tournament/routes/to.$id";
|
|
import type { ModeShort, StageId } from "~/modules/in-game-lists";
|
|
import { nullFilledArray } from "~/utils/arrays";
|
|
import invariant from "~/utils/invariant";
|
|
import { assertUnreachable } from "~/utils/types";
|
|
import { calendarEditPage } from "~/utils/urls";
|
|
import type { Bracket } from "../core/Bracket";
|
|
import { getRounds } from "../core/rounds";
|
|
import { generateTournamentRoundMaplist } from "../core/toMapList";
|
|
|
|
export function BracketMapListDialog({
|
|
isOpen,
|
|
close,
|
|
bracket,
|
|
bracketIdx,
|
|
}: {
|
|
isOpen: boolean;
|
|
close: () => void;
|
|
bracket: Bracket;
|
|
bracketIdx: number;
|
|
}) {
|
|
const fetcher = useFetcher();
|
|
const tournament = useTournament();
|
|
|
|
const [roundsWithPickBan, setRoundsWithPickBan] = React.useState<Set<number>>(
|
|
new Set(),
|
|
);
|
|
const [pickBanStyle, setPickBanStyle] =
|
|
React.useState<TournamentRoundMaps["pickBan"]>();
|
|
const [countType, setCountType] =
|
|
React.useState<TournamentRoundMaps["type"]>("BEST_OF");
|
|
const [maps, setMaps] = React.useState(() =>
|
|
generateTournamentRoundMaplist({
|
|
mapCounts: bracket.defaultRoundBestOfs,
|
|
roundsWithPickBan,
|
|
pool: tournament.ctx.toSetMapPool,
|
|
rounds: bracket.data.round,
|
|
type: bracket.type,
|
|
pickBanStyle,
|
|
}),
|
|
);
|
|
const [mapCounts, setMapCounts] = React.useState(
|
|
() => bracket.defaultRoundBestOfs,
|
|
);
|
|
const [hoveredMap, setHoveredMap] = React.useState<string | null>(null);
|
|
|
|
const rounds = React.useMemo(() => {
|
|
if (bracket.type === "round_robin" || bracket.type === "swiss") {
|
|
return Array.from(maps.keys()).map((roundId, i) => {
|
|
return {
|
|
id: roundId,
|
|
name: `Round ${i + 1}`,
|
|
};
|
|
});
|
|
}
|
|
|
|
if (bracket.type === "double_elimination") {
|
|
const winners = getRounds({ type: "winners", bracket });
|
|
const losers = getRounds({ type: "losers", bracket });
|
|
|
|
return [...winners, ...losers];
|
|
}
|
|
|
|
if (bracket.type === "single_elimination") {
|
|
return getRounds({ type: "single", bracket });
|
|
}
|
|
|
|
assertUnreachable(bracket.type);
|
|
}, [bracket, maps]);
|
|
|
|
const mapCountsWithGlobalCount = (newCount: number) => {
|
|
const newMap = new Map(bracket.defaultRoundBestOfs);
|
|
|
|
for (const [groupId, value] of newMap.entries()) {
|
|
const newGroupMap: typeof value = new Map(value);
|
|
for (const [roundNumber, roundValue] of value.entries()) {
|
|
newGroupMap.set(roundNumber, { ...roundValue, count: newCount });
|
|
}
|
|
|
|
newMap.set(groupId, newGroupMap);
|
|
}
|
|
|
|
return newMap;
|
|
};
|
|
|
|
const mapCountsWithGlobalPickBanStyle = (
|
|
newPickBanStyle: TournamentRoundMaps["pickBan"],
|
|
): Set<number> => {
|
|
if (!newPickBanStyle) {
|
|
setRoundsWithPickBan(new Set());
|
|
return new Set();
|
|
}
|
|
|
|
const newRoundsWithPickBan = new Set(roundsWithPickBan);
|
|
|
|
for (const round of rounds) {
|
|
newRoundsWithPickBan.add(round.id);
|
|
}
|
|
|
|
setRoundsWithPickBan(newRoundsWithPickBan);
|
|
return newRoundsWithPickBan;
|
|
};
|
|
|
|
// TODO: could also validate you aren't going up from winners finals to grands etc. (different groups)
|
|
const validateNoDecreasingCount = () => {
|
|
for (const groupCounts of mapCounts.values()) {
|
|
let roundPreviousValue = 0;
|
|
for (const [, roundValue] of Array.from(groupCounts.entries()).sort(
|
|
// sort by round number
|
|
(a, b) => a[0] - b[0],
|
|
)) {
|
|
if (roundPreviousValue > roundValue.count) {
|
|
return false;
|
|
}
|
|
|
|
roundPreviousValue = roundValue.count;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
};
|
|
|
|
const lacksToSetMapPool =
|
|
tournament.ctx.toSetMapPool.length === 0 &&
|
|
tournament.ctx.mapPickingStyle === "TO";
|
|
|
|
const globalSelections =
|
|
bracket.type === "round_robin" || bracket.type === "swiss";
|
|
|
|
return (
|
|
<Dialog isOpen={isOpen} close={close} className="w-max">
|
|
<fetcher.Form method="post" className="map-list-dialog__container">
|
|
<input type="hidden" name="bracketIdx" value={bracketIdx} />
|
|
<input
|
|
type="hidden"
|
|
name="maps"
|
|
value={JSON.stringify(
|
|
Array.from(maps.entries()).map(([key, value]) => ({
|
|
roundId: key,
|
|
type: countType,
|
|
...value,
|
|
})),
|
|
)}
|
|
/>
|
|
<h2 className="text-lg text-center">{bracket.name}</h2>
|
|
{lacksToSetMapPool ? (
|
|
<div>
|
|
You need to select map pool in the{" "}
|
|
<Link to={calendarEditPage(tournament.ctx.eventId)}>
|
|
tournament settings
|
|
</Link>{" "}
|
|
before bracket can be started
|
|
</div>
|
|
) : (
|
|
<>
|
|
<div className="stack horizontal items-center justify-between">
|
|
<div className="stack horizontal lg flex-wrap">
|
|
<PickBanSelect
|
|
pickBanStyle={pickBanStyle}
|
|
onPickBanStyleChange={(pickBanStyle) => {
|
|
let newRoundsWithPickBan = roundsWithPickBan;
|
|
if (globalSelections) {
|
|
newRoundsWithPickBan =
|
|
mapCountsWithGlobalPickBanStyle(pickBanStyle);
|
|
}
|
|
|
|
setPickBanStyle(pickBanStyle);
|
|
setMaps(
|
|
generateTournamentRoundMaplist({
|
|
mapCounts,
|
|
pool: tournament.ctx.toSetMapPool,
|
|
rounds: bracket.data.round,
|
|
type: bracket.type,
|
|
roundsWithPickBan: newRoundsWithPickBan,
|
|
pickBanStyle,
|
|
}),
|
|
);
|
|
}}
|
|
/>
|
|
{globalSelections ? (
|
|
<GlobalMapCountInput
|
|
onSetCount={(newCount) => {
|
|
const newMapCounts = mapCountsWithGlobalCount(newCount);
|
|
const newMaps = generateTournamentRoundMaplist({
|
|
mapCounts: newMapCounts,
|
|
pool: tournament.ctx.toSetMapPool,
|
|
rounds: bracket.data.round,
|
|
type: bracket.type,
|
|
roundsWithPickBan,
|
|
pickBanStyle,
|
|
});
|
|
setMaps(newMaps);
|
|
setMapCounts(newMapCounts);
|
|
}}
|
|
/>
|
|
) : null}
|
|
{globalSelections ? (
|
|
<GlobalCountTypeSelect onSetCountType={setCountType} />
|
|
) : null}
|
|
</div>
|
|
{tournament.ctx.toSetMapPool.length > 0 ? (
|
|
<Button
|
|
size="tiny"
|
|
icon={<RefreshArrowsIcon />}
|
|
variant="outlined"
|
|
onClick={() =>
|
|
setMaps(
|
|
generateTournamentRoundMaplist({
|
|
mapCounts,
|
|
pool: tournament.ctx.toSetMapPool,
|
|
rounds: bracket.data.round,
|
|
type: bracket.type,
|
|
roundsWithPickBan,
|
|
pickBanStyle,
|
|
}),
|
|
)
|
|
}
|
|
>
|
|
Reroll all maps
|
|
</Button>
|
|
) : null}
|
|
</div>
|
|
<div className="stack horizontal md flex-wrap justify-center">
|
|
{rounds.map((round) => {
|
|
const roundMaps = maps.get(round.id);
|
|
invariant(roundMaps, "Expected maps to be defined");
|
|
|
|
return (
|
|
<RoundMapList
|
|
key={round.id}
|
|
name={round.name}
|
|
maps={roundMaps}
|
|
onHoverMap={setHoveredMap}
|
|
hoveredMap={hoveredMap}
|
|
includeRoundSpecificSelections={
|
|
bracket.type !== "round_robin"
|
|
}
|
|
onCountChange={(newCount) => {
|
|
const newMapCounts = new Map(mapCounts);
|
|
const bracketRound = bracket.data.round.find(
|
|
(r) => r.id === round.id,
|
|
);
|
|
invariant(bracketRound, "Expected round to be defined");
|
|
|
|
const groupInfo = newMapCounts.get(bracketRound.group_id);
|
|
invariant(groupInfo, "Expected group info to be defined");
|
|
const oldMapInfo = newMapCounts
|
|
.get(bracketRound.group_id)
|
|
?.get(bracketRound.number);
|
|
invariant(oldMapInfo, "Expected map info to be defined");
|
|
|
|
groupInfo.set(bracketRound.number, {
|
|
...oldMapInfo,
|
|
count: newCount,
|
|
});
|
|
|
|
const newMaps = generateTournamentRoundMaplist({
|
|
mapCounts: newMapCounts,
|
|
pool: tournament.ctx.toSetMapPool,
|
|
rounds: bracket.data.round,
|
|
type: bracket.type,
|
|
roundsWithPickBan,
|
|
pickBanStyle,
|
|
});
|
|
setMaps(newMaps);
|
|
setMapCounts(newMapCounts);
|
|
}}
|
|
onPickBanChange={
|
|
pickBanStyle
|
|
? (hasPickBan) => {
|
|
const newRoundsWithPickBan = new Set(
|
|
roundsWithPickBan,
|
|
);
|
|
if (hasPickBan) {
|
|
newRoundsWithPickBan.add(round.id);
|
|
} else {
|
|
newRoundsWithPickBan.delete(round.id);
|
|
}
|
|
|
|
setRoundsWithPickBan(newRoundsWithPickBan);
|
|
setMaps(
|
|
generateTournamentRoundMaplist({
|
|
mapCounts,
|
|
pool: tournament.ctx.toSetMapPool,
|
|
rounds: bracket.data.round,
|
|
type: bracket.type,
|
|
roundsWithPickBan: newRoundsWithPickBan,
|
|
pickBanStyle,
|
|
}),
|
|
);
|
|
}
|
|
: undefined
|
|
}
|
|
onRoundMapListChange={(newRoundMaps) => {
|
|
const newMaps = new Map(maps);
|
|
newMaps.set(round.id, newRoundMaps);
|
|
|
|
setMaps(newMaps);
|
|
}}
|
|
/>
|
|
);
|
|
})}
|
|
</div>
|
|
{!validateNoDecreasingCount() ? (
|
|
<div className="text-warning text-center">
|
|
Invalid selection: tournament progression decreases in map count
|
|
</div>
|
|
) : pickBanStyle && roundsWithPickBan.size === 0 ? (
|
|
<div className="text-warning text-center">
|
|
Invalid selection: pick/ban style selected but no rounds have it
|
|
enabled
|
|
</div>
|
|
) : (
|
|
<SubmitButton
|
|
variant="outlined"
|
|
size="tiny"
|
|
testId="confirm-finalize-bracket-button"
|
|
_action="START_BRACKET"
|
|
className="mx-auto"
|
|
>
|
|
Start the bracket
|
|
</SubmitButton>
|
|
)}
|
|
</>
|
|
)}
|
|
</fetcher.Form>
|
|
</Dialog>
|
|
);
|
|
}
|
|
|
|
function GlobalMapCountInput({
|
|
onSetCount,
|
|
}: {
|
|
onSetCount: (bestOf: number) => void;
|
|
}) {
|
|
return (
|
|
<div>
|
|
<Label htmlFor="count">Count</Label>
|
|
<select id="count" onChange={(e) => onSetCount(Number(e.target.value))}>
|
|
<option value="3">3</option>
|
|
<option value="5">5</option>
|
|
<option value="7">7</option>
|
|
</select>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function GlobalCountTypeSelect({
|
|
onSetCountType,
|
|
}: {
|
|
onSetCountType: (type: TournamentRoundMaps["type"]) => void;
|
|
}) {
|
|
return (
|
|
<div>
|
|
<Label htmlFor="count-type">Count type</Label>
|
|
<select
|
|
id="count-type"
|
|
onChange={(e) =>
|
|
onSetCountType(e.target.value as TournamentRoundMaps["type"])
|
|
}
|
|
>
|
|
<option value="BEST_OF">Best of</option>
|
|
<option value="PLAY_ALL">Play all</option>
|
|
</select>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function PickBanSelect({
|
|
pickBanStyle,
|
|
onPickBanStyleChange,
|
|
}: {
|
|
pickBanStyle: TournamentRoundMaps["pickBan"];
|
|
onPickBanStyleChange: (pickBanStyle: TournamentRoundMaps["pickBan"]) => void;
|
|
}) {
|
|
return (
|
|
<div>
|
|
<Label htmlFor="pick-ban-style">Pick/ban</Label>
|
|
<select
|
|
id="pick-ban-style"
|
|
value={pickBanStyle ?? "NONE"}
|
|
onChange={(e) =>
|
|
onPickBanStyleChange(
|
|
e.target.value === "NONE"
|
|
? undefined
|
|
: (e.target.value as TournamentRoundMaps["pickBan"]),
|
|
)
|
|
}
|
|
>
|
|
<option value="NONE">None</option>
|
|
<option value="COUNTERPICK">Counterpick</option>
|
|
<option value="BAN_2">Ban 2</option>
|
|
</select>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const serializedMapMode = (
|
|
map: NonNullable<TournamentRoundMaps["list"]>[number],
|
|
) => `${map.mode}-${map.stageId}`;
|
|
|
|
function RoundMapList({
|
|
name,
|
|
maps,
|
|
onRoundMapListChange,
|
|
onHoverMap,
|
|
onCountChange,
|
|
onPickBanChange,
|
|
hoveredMap,
|
|
includeRoundSpecificSelections,
|
|
}: {
|
|
name: string;
|
|
maps: Omit<TournamentRoundMaps, "type">;
|
|
onRoundMapListChange: (maps: Omit<TournamentRoundMaps, "type">) => void;
|
|
onHoverMap: (map: string | null) => void;
|
|
onCountChange: (count: number) => void;
|
|
onPickBanChange?: (hasPickBan: boolean) => void;
|
|
hoveredMap: string | null;
|
|
includeRoundSpecificSelections: boolean;
|
|
}) {
|
|
const id = React.useId();
|
|
const [editing, setEditing] = React.useState(false);
|
|
|
|
return (
|
|
<div>
|
|
<h3 className="stack horizontal sm">
|
|
<div>{name}</div>{" "}
|
|
<Button
|
|
variant={editing ? "minimal-success" : "minimal"}
|
|
onClick={() => setEditing(!editing)}
|
|
testId="edit-round-maps-button"
|
|
>
|
|
{editing ? "Save" : "Edit"}
|
|
</Button>
|
|
</h3>
|
|
{editing && includeRoundSpecificSelections ? (
|
|
<div className="stack xs horizontal">
|
|
{[3, 5, 7].map((count) => (
|
|
<div key={count}>
|
|
<Label htmlFor={`bo-${count}-${id}`}>Bo{count}</Label>
|
|
<input
|
|
id={`bo-${count}-${id}`}
|
|
type="radio"
|
|
value={count}
|
|
checked={maps.count === count}
|
|
onChange={() => onCountChange(count)}
|
|
/>
|
|
</div>
|
|
))}
|
|
{onPickBanChange ? (
|
|
<div>
|
|
<Label htmlFor={`pick-ban-${id}`}>Pick/ban</Label>
|
|
<Toggle
|
|
tiny
|
|
checked={Boolean(maps.pickBan)}
|
|
setChecked={onPickBanChange}
|
|
id={`pick-ban-${id}`}
|
|
/>
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
) : null}
|
|
<ol className="pl-0">
|
|
{nullFilledArray(
|
|
maps.pickBan === "BAN_2" ? maps.count + 2 : maps.count,
|
|
).map((_, i) => {
|
|
const map = maps.list?.[i];
|
|
|
|
if (map) {
|
|
return (
|
|
<MapListRow
|
|
key={i}
|
|
map={map}
|
|
number={i + 1}
|
|
editing={editing}
|
|
onHoverMap={onHoverMap}
|
|
hoveredMap={hoveredMap}
|
|
onMapChange={(map) => {
|
|
onRoundMapListChange({
|
|
...maps,
|
|
list: maps.list?.map((m, j) => (i === j ? map : m)),
|
|
});
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
const isTeamsPick = !maps.list && i === 0;
|
|
|
|
return (
|
|
<MysteryRow
|
|
key={i}
|
|
number={i + 1}
|
|
isCounterpicks={!isTeamsPick && maps.pickBan === "COUNTERPICK"}
|
|
/>
|
|
);
|
|
})}
|
|
</ol>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function MapListRow({
|
|
map,
|
|
number,
|
|
editing,
|
|
onMapChange,
|
|
onHoverMap,
|
|
hoveredMap,
|
|
}: {
|
|
map: NonNullable<TournamentRoundMaps["list"]>[number];
|
|
number: number;
|
|
editing: boolean;
|
|
onMapChange: (map: NonNullable<TournamentRoundMaps["list"]>[number]) => void;
|
|
onHoverMap: (map: string | null) => void;
|
|
hoveredMap: string | null;
|
|
}) {
|
|
const { t } = useTranslation(["game-misc"]);
|
|
const tournament = useTournament();
|
|
|
|
if (editing) {
|
|
return (
|
|
<li className="map-list-dialog__map-list-row">
|
|
<div className="stack horizontal items-center xs">
|
|
<span className="text-lg">{number}.</span>
|
|
<select
|
|
value={serializedMapMode(map)}
|
|
onChange={(e) => {
|
|
const [mode, stageId] = e.target.value.split("-");
|
|
onMapChange({
|
|
mode: mode as ModeShort,
|
|
stageId: Number(stageId) as StageId,
|
|
});
|
|
}}
|
|
>
|
|
{tournament.ctx.toSetMapPool.map((map) => (
|
|
<option
|
|
key={serializedMapMode(map)}
|
|
value={serializedMapMode(map)}
|
|
>
|
|
{t(`game-misc:MODE_SHORT_${map.mode}`)}{" "}
|
|
{t(`game-misc:STAGE_${map.stageId}`)}
|
|
</option>
|
|
))}
|
|
</select>
|
|
</div>
|
|
</li>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<li
|
|
className={clsx("map-list-dialog__map-list-row", {
|
|
"text-theme-secondary font-bold": serializedMapMode(map) === hoveredMap,
|
|
})}
|
|
onMouseEnter={() => onHoverMap(serializedMapMode(map))}
|
|
>
|
|
<div className="stack horizontal items-center xs">
|
|
<span className="text-lg">{number}.</span>
|
|
<ModeImage mode={map.mode} size={24} />
|
|
<StageImage stageId={map.stageId} height={24} className="rounded-sm" />
|
|
{t(`game-misc:STAGE_${map.stageId}`)}
|
|
</div>
|
|
</li>
|
|
);
|
|
}
|
|
|
|
function MysteryRow({
|
|
number,
|
|
isCounterpicks,
|
|
}: {
|
|
number: number;
|
|
isCounterpicks: boolean;
|
|
}) {
|
|
return (
|
|
<li className="map-list-dialog__map-list-row">
|
|
<div
|
|
className={clsx("stack horizontal items-center xs text-lighter", {
|
|
"text-info": isCounterpicks,
|
|
})}
|
|
>
|
|
<span className="text-lg">{number}.</span>
|
|
{isCounterpicks ? <>Counterpick</> : <>Team's pick</>}
|
|
</div>
|
|
</li>
|
|
);
|
|
}
|