All checks were successful
SteamWarCI Build successful
- Consolidated player fetching logic in stores.ts to utilize dataRepo. - Introduced teams fetching logic in stores.ts. - Updated permissions structure in stores.ts for better clarity. - Enhanced data schemas in data.ts with new ResponseUser and ResponseTeam schemas. - Expanded event-related schemas in event.ts to include groups, relations, and event creation/update structures. - Improved code formatting for consistency and readability across files.
94 lines
3.6 KiB
Svelte
94 lines
3.6 KiB
Svelte
<!--
|
|
- This file is a part of the SteamWar software.
|
|
-
|
|
- Copyright (C) 2025 SteamWar.de-Serverteam
|
|
-
|
|
- This program is free software: you can redistribute it and/or modify
|
|
- it under the terms of the GNU Affero General Public License as published by
|
|
- the Free Software Foundation, either version 3 of the License, or
|
|
- (at your option) any later version.
|
|
-
|
|
- This program is distributed in the hope that it will be useful,
|
|
- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
- GNU Affero General Public License for more details.
|
|
-
|
|
- You should have received a copy of the GNU Affero General Public License
|
|
- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
-->
|
|
|
|
<script lang="ts">
|
|
import { Button } from "@components/ui/button";
|
|
import { Table, TableHeader, TableRow, TableHead, TableBody, TableCell, TableCaption } from "@components/ui/table";
|
|
import type { ExtendedEvent } from "@type/event.ts";
|
|
import { eventRepo } from "@repo/event";
|
|
import { Popover, PopoverContent, PopoverTrigger } from "@components/ui/popover";
|
|
import { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from "@components/ui/command";
|
|
import { teams } from "@components/stores/stores";
|
|
|
|
const { event }: { event: ExtendedEvent } = $props();
|
|
|
|
let team = $state(event.teams);
|
|
|
|
async function addTeam(value: number) {
|
|
await $eventRepo.updateTeams(event.event.id.toString(), [value]);
|
|
team = await $eventRepo.listTeams(event.event.id.toString());
|
|
}
|
|
|
|
async function removeTeam(value: number) {
|
|
await $eventRepo.deleteTeams(event.event.id.toString(), [value]);
|
|
team = await $eventRepo.listTeams(event.event.id.toString());
|
|
}
|
|
|
|
let teamSearch = $state("");
|
|
</script>
|
|
|
|
<Table>
|
|
<TableHeader>
|
|
<TableRow>
|
|
<TableHead>Team</TableHead>
|
|
<TableHead>Name</TableHead>
|
|
<TableHead>Action</TableHead>
|
|
</TableRow>
|
|
</TableHeader>
|
|
<TableBody>
|
|
{#each team as t (t.id)}
|
|
<TableRow>
|
|
<TableCell>{t.kuerzel}</TableCell>
|
|
<TableCell>{t.name}</TableCell>
|
|
<TableCell>
|
|
<Button onclick={() => removeTeam(t.id)}>Remove</Button>
|
|
</TableCell>
|
|
</TableRow>
|
|
{/each}
|
|
{#if team.length === 0}
|
|
<TableRow>
|
|
<TableCell class="text-center col-span-3">No teams available</TableCell>
|
|
</TableRow>
|
|
{/if}
|
|
</TableBody>
|
|
<Popover>
|
|
<TableCaption>
|
|
<PopoverTrigger>
|
|
<Button>Add Team</Button>
|
|
</PopoverTrigger>
|
|
</TableCaption>
|
|
<PopoverContent class="p-0">
|
|
<Command shouldFilter={false}>
|
|
<CommandInput bind:value={teamSearch} placeholder="Search teams..." />
|
|
<CommandList>
|
|
<CommandEmpty>No teams found :(</CommandEmpty>
|
|
<CommandGroup heading="Teams">
|
|
{#each $teams
|
|
.filter((v) => v.name.includes(teamSearch))
|
|
.filter((v) => !team.some((k) => k.id === v.id))
|
|
.filter((v, i) => i < 50) as t (t.id)}
|
|
<CommandItem value={t.id.toString()} onSelect={() => addTeam(t.id)} keywords={[t.name, t.kuerzel]}>{t.name}</CommandItem>
|
|
{/each}
|
|
</CommandGroup>
|
|
</CommandList>
|
|
</Command>
|
|
</PopoverContent>
|
|
</Popover>
|
|
</Table>
|