aboutsummaryrefslogtreecommitdiff
path: root/web/pw-server/src/routes/matches/index.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'web/pw-server/src/routes/matches/index.svelte')
-rw-r--r--web/pw-server/src/routes/matches/index.svelte35
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>