Website/src/components/EloTable.svelte

65 Zeilen
1.8 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/>.
-->
2023-12-03 19:31:29 +01:00
<script lang="ts">
import {statsRepo} from "./repo/repo.ts";
2023-12-05 17:55:48 +01:00
import {t} from "astro-i18n";
2023-12-03 19:31:29 +01:00
export let gamemode: string;
let request = getRequest();
function getRequest() {
return $statsRepo.getRankings(gamemode);
}
</script>
{#await request}
<p>Loading...</p>
{:then data}
<div>
<table>
<tr class="font-bold">
2023-12-05 17:55:48 +01:00
<td>{t("elo.place")}</td>
<td>{t("elo.name")}</td>
<td>{t("elo.elo")}</td>
2023-12-03 19:31:29 +01:00
</tr>
2023-12-24 23:00:20 +01:00
{#each data as player, i (player.id)}
2023-12-03 19:31:29 +01:00
<tr>
<td>{`${i + 1}.`}</td>
<td>{player.name}</td>
<td>{player.elo}</td>
</tr>
{/each}
</table>
</div>
{:catch error}
<p>{error.message}</p>
{/await}
<style lang="scss">
table {
@apply w-full;
}
div {
@apply p-3 bg-gray-200 dark:bg-gray-800 rounded-2xl;
}
</style>