Files
Website/src/components/EloTable.svelte
Chaoscaot 73bd6a5e96
All checks were successful
SteamWarCI Build successful
Fix Website
2025-03-01 20:07:09 +01:00

68 lines
1.9 KiB
Svelte

<!--
- This file is a part of the SteamWar software.
-
- Copyright (C) 2023 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 {t} from "astro-i18n";
import {statsRepo} from "@repo/stats.ts";
import "@styles/table.css"
interface Props {
gamemode: string;
topFive?: boolean;
}
let { gamemode, topFive = false }: Props = $props();
let request = getRequest();
function getRequest() {
return $statsRepo.getRankings(gamemode);
}
</script>
{#await request}
<p>Loading...</p>
{:then data}
{@const topFiveData = data.slice(0, 5)}
<div>
<table>
<thead>
<tr>
<th>{t("elo.place")}</th>
<th>{t("elo.name")}</th>
<th>{t("elo.elo")}</th>
</tr>
</thead>
<tbody>
{#each (topFive ? topFiveData : data) as player, i (player.name)}
<tr>
<td>{`${i + 1}.`}</td>
<td>{player.name}</td>
<td>{player.elo}</td>
</tr>
{/each}
</tbody>
</table>
</div>
{:catch error}
<p>{error.message}</p>
{/await}