aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/components/bookmarks/UpdatingBookmarkList.tsx
blob: 33ddf5ff2486e0e1fd6bace688bae9e6434df63c (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
49
50
51
52
import { Text } from "react-native";
import { api } from "@/lib/trpc";

import type { ZGetBookmarksRequest } from "@hoarder/shared/types/bookmarks";

import FullPageSpinner from "../ui/FullPageSpinner";
import BookmarkList from "./BookmarkList";

export default function UpdatingBookmarkList({
  query,
  header,
}: {
  query: ZGetBookmarksRequest;
  header?: React.ReactElement;
}) {
  const apiUtils = api.useUtils();
  const {
    data,
    isPending,
    isPlaceholderData,
    error,
    fetchNextPage,
    isFetchingNextPage,
  } = api.bookmarks.getBookmarks.useInfiniteQuery(query, {
    initialCursor: null,
    getNextPageParam: (lastPage) => lastPage.nextCursor,
  });

  if (error) {
    return <Text>{JSON.stringify(error)}</Text>;
  }

  if (isPending || !data) {
    return <FullPageSpinner />;
  }

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

  return (
    <BookmarkList
      bookmarks={data.pages.flatMap((p) => p.bookmarks)}
      header={header}
      onRefresh={onRefresh}
      fetchNextPage={fetchNextPage}
      isFetchingNextPage={isFetchingNextPage}
      isRefreshing={isPending || isPlaceholderData}
    />
  );
}