-<script>
- export async function load(ctx) {
- let id = ctx.page.params.id
- return { props: { id }}
- }
+<script lang="ts" context="module">
+ export const load = ({
+ params: { id }
+ }) => ({ props: { id } });
</script>
-<h1>Forum Index.</h1>
-<p>This component lists topics for forum with id: {id}</p>
+<script lang="ts">
+ 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: string;
+
+ import { forum } from '$lib/stores/forums';
+ $: response = forum(id, true);
+</script>
+
+<svelte:head>
+ <title>{$_(`forum.name.${id}`)}, {$_('forum.forum')}</title>
+</svelte:head>
+
+{#if $response.loading}
+ <Loader />
+{/if}
+{#if $response.error}
+ <ErrorBlock message={$_('forum.error.unavailable')} />
+{/if}
+{#if $response.data}
+ <Forum forum={$response.data} />
+{/if}