diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-01-02 17:57:40 +0100 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-01-02 17:57:40 +0100 |
commit | 1cde40b45916d1f99a4cda7837b516cde761f127 (patch) | |
tree | e74367db95dd4e9200783c78df2b3d811d834ead /web/pw-server/src/routes/matches/index.svelte | |
parent | 69331eb08a6199bfa8378e08cf378803b076eaae (diff) | |
download | planetwars.dev-1cde40b45916d1f99a4cda7837b516cde761f127.tar.xz planetwars.dev-1cde40b45916d1f99a4cda7837b516cde761f127.zip |
basic match views
Diffstat (limited to 'web/pw-server/src/routes/matches/index.svelte')
-rw-r--r-- | web/pw-server/src/routes/matches/index.svelte | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/web/pw-server/src/routes/matches/index.svelte b/web/pw-server/src/routes/matches/index.svelte index dcfb43b..448048b 100644 --- a/web/pw-server/src/routes/matches/index.svelte +++ b/web/pw-server/src/routes/matches/index.svelte @@ -1 +1,36 @@ +<script lang="ts" context="module"> + export async function load() { + const res = await fetch("/api/matches", { + headers: { + "Content-Type": "application/json", + }, + }); + + if (res.ok) { + return { + props: { + matches: await res.json(), + }, + }; + } + + return { + status: res.status, + error: new Error("failed to load matches"), + }; + } +</script> + +<script lang="ts"> + import dayjs from "dayjs"; + export let matches; +</script> + <a href="/matches/new">new match</a> +<ul> + {#each matches as match} + <li> + <a href="/matches/{match['id']}">{dayjs(match["created_at"]).format("YYYY-MM-DD HH:mm")}</a> + </li> + {/each} +</ul> |