]> git.r.bdr.sh - rbdr/forum/blobdiff - src/routes/f/[id].svelte
Update / use typescript
[rbdr/forum] / src / routes / f / [id].svelte
index d1fae4cff0ff45ed43e5045291c2524621d00e49..eb65c22c7446d697309e26eee97e844295ff4a2e 100644 (file)
@@ -1,9 +1,34 @@
+<script context="module">
+       export const load = ({
+         page: {
+           params: { id }
+         }
+       }) => ({ props: { id } });
+</script>
+
 <script>
-  export async function load(ctx) {
-    let id = ctx.page.params.id
-    return { props: { id }}
-  }
+       import { _ } from 'svelte-i18n';
+       import Forum from '$lib/components/forum/forum.svelte';
+       import ErrorBlock from '$lib/components/error_block/error_block.svelte';
+       import Loader from '$lib/components/loader/loader.svelte';
+
+       export let id;
+
+       import { getForum } from '$lib/stores/forums';
+       $: store = getForum(id);
+       $: forum = $store.data;
 </script>
 
-<h1>Forum Index.</h1>
-<p>This component lists topics for forum with id: {id}</p>
+<svelte:head>
+       <title>{$_(`forum.name.${id}`)}, {$_('forum.forum')}</title>
+</svelte:head>
+
+{#if $store.loading}
+       <Loader />
+{/if}
+{#if $store.error}
+       <ErrorBlock message={$_('forum.error.unavailable')} />
+{/if}
+{#if forum}
+       <Forum {forum} />
+{/if}