X-Git-Url: https://git.r.bdr.sh/rbdr/forum/blobdiff_plain/cac85db02ff00732cf75d473dc3411332f33d845..852ee620f0a2f6a83cf83eba860ca951b66bb7e2:/src/lib/stores/topics.ts diff --git a/src/lib/stores/topics.ts b/src/lib/stores/topics.ts index 8d69d80..04c1e9e 100644 --- a/src/lib/stores/topics.ts +++ b/src/lib/stores/topics.ts @@ -1,5 +1,32 @@ -import { store } from './apollo'; -import { GET_TOPIC } from '$lib/data/queries'; +import { createClient } from '@supabase/supabase-js' +import { single, collection } from './supabase'; +import { supabase } from '$lib/config/config'; -export const getTopic = (id: string) => - store({ key: 'topic', query: GET_TOPIC, variables: { id } }); +import type { Topic } from '$lib/data/types'; + +const client = createClient(supabase.url, supabase.key); + +export const topic = (id: string, withPosts = false) => single(client + .from('topics') + .select(withPosts ? `*, + forum: forums (*), + tags: topic_tags (*), + posts ( + *, + author:author_id (*) + ) + `: '*' ) + .eq('id', id), + null); +export const topicsForForum = (id: string) => collection(client + .from('topics') + .select('*') + .eq('forum_id', id), + []); +export const topicsForTag = (id: string) => collection(client + .from('topics') + .select(` + *,tags!inner(*) + `) + .eq('tags.tag', id), + []);