aboutsummaryrefslogtreecommitdiff
path: root/src/routes/g
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2021-04-15 23:06:26 +0200
committerRuben Beltran del Rio <ruben@unlimited.pizza>2021-04-15 23:06:26 +0200
commit58f7d52150456713d3132408668a92d0f6f3d084 (patch)
tree4b346042a684e416e53c4f4ac779060b832ad227 /src/routes/g
parent63c3da2af27fcfb1a9893ade03543e3a30949c8d (diff)
Port to sveltekit
Diffstat (limited to 'src/routes/g')
-rw-r--r--src/routes/g/[id].svelte33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/routes/g/[id].svelte b/src/routes/g/[id].svelte
new file mode 100644
index 0000000..023fbd8
--- /dev/null
+++ b/src/routes/g/[id].svelte
@@ -0,0 +1,33 @@
+<script context="module">
+ export const load = ({
+ page: {
+ params: { id }
+ }
+ }) => ({ props: { id } });
+</script>
+
+<script>
+ import { _ } from 'svelte-i18n';
+ import { getTag } from '$/stores/tag';
+ import ErrorBlock from '$/components/error_block/error_block.svelte';
+ import Loader from '$/components/loader/loader.svelte';
+ import Tag from '$/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}