aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/components/bookmarks/BookmarkList.tsx
blob: bb4b866862e970be9fc175ae6b0eff9f3d15452b (plain) (blame)
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
import { useEffect, useState } from "react";
import { FlatList } from "react-native";

import BookmarkCard from "./BookmarkCard";

import { api } from "@/lib/trpc";

export default function BookmarkList({
  favourited,
  archived,
}: {
  favourited?: boolean;
  archived?: boolean;
}) {
  const apiUtils = api.useUtils();
  const [refreshing, setRefreshing] = useState(false);
  const { data, isPending, isPlaceholderData } =
    api.bookmarks.getBookmarks.useQuery({
      favourited,
      archived,
    });

  useEffect(() => {
    setRefreshing(isPending || isPlaceholderData);
  }, [isPending, isPlaceholderData]);

  if (isPending || !data) {
    // TODO: Add a spinner
    return;
  }

  const onRefresh = () => {
    apiUtils.bookmarks.getBookmarks.invalidate();
    apiUtils.bookmarks.getBookmark.invalidate();
  };

  return (
    <FlatList
      contentContainerStyle={{
        gap: 10,
      }}
      renderItem={(b) => <BookmarkCard key={b.item.id} bookmark={b.item} />}
      data={data.bookmarks}
      refreshing={refreshing}
      onRefresh={onRefresh}
    />
  );
}