diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-05-31 01:04:10 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-05-31 01:04:10 +0200 |
| commit | 852ee620f0a2f6a83cf83eba860ca951b66bb7e2 (patch) | |
| tree | 3b1db871625c89f08c3c6422c135f84ec116943b /src/routes/f | |
| parent | d2cd7f1b4c318ac8587ab3dc1dec4a44b6d592fe (diff) | |
Use supabase
Diffstat (limited to 'src/routes/f')
| -rw-r--r-- | src/routes/f/[id].svelte | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/src/routes/f/[id].svelte b/src/routes/f/[id].svelte index fc103d2..103e8f8 100644 --- a/src/routes/f/[id].svelte +++ b/src/routes/f/[id].svelte @@ -1,8 +1,6 @@ <script lang="ts" context="module"> export const load = ({ - page: { - params: { id } - } + params: { id } }) => ({ props: { id } }); </script> @@ -14,21 +12,20 @@ export let id: string; - import { getForum } from '$lib/stores/forums'; - $: store = getForum(id); - $: forum = $store.data; + import { forum } from '$lib/stores/forums'; + $: response = forum(id, true); </script> <svelte:head> <title>{$_(`forum.name.${id}`)}, {$_('forum.forum')}</title> </svelte:head> -{#if $store.loading} +{#if $response.loading} <Loader /> {/if} -{#if $store.error} +{#if $response.error} <ErrorBlock message={$_('forum.error.unavailable')} /> {/if} -{#if forum} - <Forum {forum} /> +{#if $response.data} + <Forum forum={$response.data} /> {/if} |