]>
Commit | Line | Data |
---|---|---|
cac85db0 RBR |
1 | <script lang="ts"> |
2 | import '../app.css'; | |
a7cf03c1 | 3 | import '$lib/i18n'; |
879fa389 | 4 | |
58f7d521 | 5 | import { isLoading } from 'svelte-i18n'; |
879fa389 RBR |
6 | import { _ } from 'svelte-i18n'; |
7 | ||
a7cf03c1 | 8 | import { getForums } from '$lib/stores/forums'; |
879fa389 | 9 | |
a7cf03c1 RBR |
10 | import ErrorBlock from '$lib/components/error_block/error_block.svelte'; |
11 | import ForumList from '$lib/components/forum_list/forum_list.svelte'; | |
12 | import Header from '$lib/components/header/header.svelte'; | |
13 | import Loader from '$lib/components/loader/loader.svelte'; | |
14 | import Footer from '$lib/components/footer/footer.svelte'; | |
73973eda RBR |
15 | |
16 | $: store = getForums(); | |
17 | $: forums = $store.data; | |
58f7d521 RBR |
18 | </script> |
19 | ||
20 | {#if $isLoading} | |
21 | <Loader /> | |
22 | {:else} | |
23 | <Header /> | |
be1ce532 | 24 | <main class="col-start-2 col-span-11"> |
58f7d521 RBR |
25 | <slot /> |
26 | </main> | |
be1ce532 RBR |
27 | <nav |
28 | class="col-start-1 row-start-2 border-r-2 border-2-black border-solid" | |
29 | title={$_('forum_list.title')} | |
30 | > | |
cac85db0 RBR |
31 | {#if $store.loading} |
32 | <Loader /> | |
33 | {/if} | |
34 | {#if $store.error} | |
35 | <ErrorBlock message={$_('forum_list.error.unavailable')} /> | |
36 | {/if} | |
37 | {#if forums} | |
38 | <ForumList {forums} /> | |
39 | {/if} | |
40 | </nav> | |
58f7d521 RBR |
41 | <Footer /> |
42 | {/if} |