X-Git-Url: https://git.r.bdr.sh/rbdr/forum/blobdiff_plain/be1ce532b26aea4e3e2258da78849bd245f7f78b..6ccc6f60fc85e665c8a07a169efbe8d09c9d9e8e:/src/lib/stores/topics.ts diff --git a/src/lib/stores/topics.ts b/src/lib/stores/topics.ts index 0e39769..1842a4d 100644 --- a/src/lib/stores/topics.ts +++ b/src/lib/stores/topics.ts @@ -1,7 +1,39 @@ -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'; import type { Topic } from '$lib/data/types'; -export const getTopic = (id: string) => - store({ key: 'topic', query: GET_TOPIC, variables: { id } }); +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 topicsForTag = (id: string) => + collection( + client + .from('topics') + .select( + ` + *,tags!inner(*) + ` + ) + .eq('tags.tag', id), + [] + );