File size: 1,150 Bytes
bb88c4d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// @ts-nocheck
import { LiveList } from "@liveblocks/client";
import { useStorage } from "./useStorage";
import { onDestroy } from "svelte";
import type { Writable } from "svelte/store";
import { writable } from "svelte/store";
import { useRoom } from "./useRoom";

/**
 * Works similarly to `liveblocks-react` useList
 * https://liveblocks.io/docs/api-reference/liveblocks-react#useList
 *
 * The main difference is that it returns a Svelte store:
 * const list = useList()
 * $list.push([{ item: 1 }])
 * console.log([...$list])
 */
export function useList<T>(
  name: string,
  initial?: any[]
): Writable<LiveList<T>> {
  const room = useRoom();
  const rootStore = useStorage();
  const list = writable<LiveList<T>>();
  let unsubscribe = () => {};

  const unsubscribeRoot = rootStore.subscribe((root) => {
    if (!root) {
      return;
    }

    if (!root.get(name)) {
      root.set(name, new LiveList<T>(initial));
    }

    list.set(root.get(name));

    unsubscribe();
    unsubscribe = room.subscribe(root.get(name) as LiveList<T>, (newList) => {
      list.set(newList);
    });
  });

  onDestroy(unsubscribeRoot);

  return list;
}