X-Git-Url: https://git.r.bdr.sh/rbdr/forum/blobdiff_plain/a7cf03c192470cbab13edeb1aec99e0c66dede10..852ee620f0a2f6a83cf83eba860ca951b66bb7e2:/src/lib/stores/posts.ts?ds=sidebyside diff --git a/src/lib/stores/posts.ts b/src/lib/stores/posts.ts index 0d3dec3..f592dca 100644 --- a/src/lib/stores/posts.ts +++ b/src/lib/stores/posts.ts @@ -1,4 +1,23 @@ -import { store } from './apollo'; -import { GET_POST } from '$lib/data/queries'; +import { createClient } from '@supabase/supabase-js' +import { single, collection } from './supabase'; +import { supabase } from '$lib/config/config'; -export const getPost = (id: string) => store({ key: 'post', query: GET_POST, variables: { id } }); +import type { Post } from '$lib/data/types'; + +const client = createClient(supabase.url, supabase.key); + +export const post = (id: string, withTopic = false) => single(client + .from('posts') + .select(withTopic ? `*, + topic:topic_id ( + * + ) + `: '*' ) + .eq('id', id), + null); +export const postsForTopic = (id: string) => collection(client + .from('posts') + .select('*') + .eq('topic_id', id) + .order('created_at', { ascending: true }), + []);