]> git.r.bdr.sh - rbdr/forum/blobdiff - src/lib/stores/topics.ts
Lint, rm unused code
[rbdr/forum] / src / lib / stores / topics.ts
index 8d69d801341d7ba2da5d4e642b7901a27038f3d5..1842a4d368ba488152caf8791bb2b3449c2befb0 100644 (file)
@@ -1,5 +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';
 
-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<Topic>(
+               client
+                       .from('topics')
+                       .select(
+                               withPosts
+                                       ? `*, 
+    forum: forums (*),
+    tags: topic_tags (*),
+    posts (
+      *,
+      author:author_id (*)
+    )
+  `
+                                       : '*'
+                       )
+                       .eq('id', id),
+               null
+       );
+export const topicsForTag = (id: string) =>
+       collection<Topic>(
+               client
+                       .from('topics')
+                       .select(
+                               `
+    *,tags!inner(*)
+  `
+                       )
+                       .eq('tags.tag', id),
+               []
+       );