From c458f2733c730cc174500ba308e3a670057d4d84 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 14 Mar 2021 23:07:13 +0100 Subject: Add post content component --- src/components/post/post.svelte | 40 ++++++++++++++++++---------------------- 1 file changed, 18 insertions(+), 22 deletions(-) (limited to 'src/components/post') diff --git a/src/components/post/post.svelte b/src/components/post/post.svelte index 4720533..bf2a190 100644 --- a/src/components/post/post.svelte +++ b/src/components/post/post.svelte @@ -1,27 +1,23 @@ + import { getPost } from '$/stores/post'; + import PostContent from '$/components/post_content/post_content.svelte'; + import ErrorBlock from '$/components/error_block/error_block.svelte'; + import Loader from '$/components/loader/loader.svelte'; - -
-

It's just how it is...

-
-
+ $: store = getPost(id); + $: post = $store.data; + - +{#if $store.loading} + +{/if} +{#if $store.error} + +{/if} +{#if post} + +{/if} -- cgit