]> git.r.bdr.sh - rbdr/forum/blobdiff - src/routes/g/[id].svelte
Apply formatting
[rbdr/forum] / src / routes / g / [id].svelte
index d036c3623b9b20b80f079a0a47ab6a85060d52f7..a82e48825f66a659387932e330a2ecdaeb2f545f 100644 (file)
@@ -1,9 +1,33 @@
-<script>
-  export async function load(ctx) {
-    let id = ctx.page.params.id
-    return { props: { id }}
-  }
+<script lang="ts" context="module">
+       export const load = ({
+               page: {
+                       params: { id }
+               }
+       }) => ({ props: { id } });
 </script>
 
-<h1>Tag Index.</h1>
-<p>This component lists topics for tag with id: {id}</p>
+<script lang="ts">
+       import { _ } from 'svelte-i18n';
+       import { getTag } from '$lib/stores/tags';
+       import ErrorBlock from '$lib/components/error_block/error_block.svelte';
+       import Loader from '$lib/components/loader/loader.svelte';
+       import Tag from '$lib/components/tag/tag.svelte';
+       export let id;
+
+       $: store = getTag(id);
+       $: tag = $store.data;
+</script>
+
+<svelte:head>
+       <title>{id}, {$_('tag.title')}</title>
+</svelte:head>
+
+{#if $store.loading}
+       <Loader />
+{/if}
+{#if $store.error}
+       <ErrorBlock message={$_('tag.error.unavailable')} />
+{/if}
+{#if tag}
+       <Tag {tag} />
+{/if}