diff options
Diffstat (limited to 'hi-ui/src/routes/(app)')
| -rw-r--r-- | hi-ui/src/routes/(app)/ch/[channel]/+page.js | 13 | ||||
| -rw-r--r-- | hi-ui/src/routes/(app)/ch/[channel]/+page.svelte | 12 |
2 files changed, 12 insertions, 13 deletions
diff --git a/hi-ui/src/routes/(app)/ch/[channel]/+page.js b/hi-ui/src/routes/(app)/ch/[channel]/+page.js deleted file mode 100644 index 5fd493a..0000000 --- a/hi-ui/src/routes/(app)/ch/[channel]/+page.js +++ /dev/null @@ -1,13 +0,0 @@ -export const ssr = false; - -import { activeChannel } from '$lib/store'; - - -/** @type {import('./$types').PageLoad} */ -export function load({ params }) { - let { channel } = params; - activeChannel.update((value) => { - value.set(channel) - return value; - }); -} diff --git a/hi-ui/src/routes/(app)/ch/[channel]/+page.svelte b/hi-ui/src/routes/(app)/ch/[channel]/+page.svelte index 26b493e..ef439d0 100644 --- a/hi-ui/src/routes/(app)/ch/[channel]/+page.svelte +++ b/hi-ui/src/routes/(app)/ch/[channel]/+page.svelte @@ -1,5 +1,17 @@ <script> + import { afterNavigate } from '$app/navigation'; + import { page } from '$app/stores'; + + import { activeChannel } from '$lib/store'; import ActiveChannel from '$lib/components/ActiveChannel.svelte'; + + afterNavigate(async () => { + let { channel } = $page.params; + activeChannel.update((value) => { + value.set(channel) + return value; + }); + }); </script> <ActiveChannel /> |
