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>
|
|
|
|
{#each data as player, i}
|
|
|
|
<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>
|
|
|
|
|