]>
Commit | Line | Data |
---|---|---|
6ccc6f60 | 1 | import { createClient } from '@supabase/supabase-js'; |
852ee620 RBR |
2 | import { single, collection } from './supabase'; |
3 | import { supabase } from '$lib/config/config'; | |
a7cf03c1 | 4 | |
be1ce532 RBR |
5 | import type { Forum } from '$lib/data/types'; |
6 | ||
852ee620 RBR |
7 | const client = createClient(supabase.url, supabase.key); |
8 | ||
6ccc6f60 RBR |
9 | export const forum = (id: string, withTopics = false) => |
10 | single<Forum>( | |
11 | client | |
12 | .from('forums') | |
13 | .select( | |
14 | withTopics | |
15 | ? `*, | |
852ee620 RBR |
16 | topics ( |
17 | * | |
18 | ) | |
6ccc6f60 RBR |
19 | ` |
20 | : '*' | |
21 | ) | |
22 | .eq('id', id), | |
23 | null | |
24 | ); | |
852ee620 | 25 | export const forums = collection<Forum>(client.from('forums').select('*'), []); |