-<script context="module">
- export const load = ({
- page: {
- params: { id }
- }
- }) => ({ props: { id } });
+<script lang="ts" context="module">
+ export const load = ({ params: { id } }) => ({ props: { id } });
</script>
-<script>
+<script lang="ts">
import { _ } from 'svelte-i18n';
- import { getTag } from '$lib/stores/tags';
+ import { topicsForTag } from '$lib/stores/topics';
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;
+ export let id: string;
- $: store = getTag(id);
- $: tag = $store.data;
+ $: tagResponse = topicsForTag(id);
</script>
<svelte:head>
<title>{id}, {$_('tag.title')}</title>
</svelte:head>
-{#if $store.loading}
+{#if $tagResponse.loading}
<Loader />
{/if}
-{#if $store.error}
+{#if $tagResponse.error}
<ErrorBlock message={$_('tag.error.unavailable')} />
{/if}
-{#if tag}
- <Tag {tag} />
+{#if $tagResponse.data}
+ <Tag topics={$tagResponse.data} tag={id} />
{/if}