aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/dashboard/(tabs)/highlights.tsx
blob: 7879081ba5cc43e0d71b87658483b63386e04553 (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
53
54
55
56
import { View } from "react-native";
import FullPageError from "@/components/FullPageError";
import HighlightList from "@/components/highlights/HighlightList";
import CustomSafeAreaView from "@/components/ui/CustomSafeAreaView";
import FullPageSpinner from "@/components/ui/FullPageSpinner";
import PageTitle from "@/components/ui/PageTitle";

import { api } from "@karakeep/shared-react/trpc";

export default function Highlights() {
  const apiUtils = api.useUtils();
  const {
    data,
    isPending,
    isPlaceholderData,
    error,
    fetchNextPage,
    isFetchingNextPage,
    refetch,
  } = api.highlights.getAll.useInfiniteQuery(
    {},
    {
      initialCursor: null,
      getNextPageParam: (lastPage) => lastPage.nextCursor,
    },
  );

  if (error) {
    return <FullPageError error={error.message} onRetry={() => refetch()} />;
  }

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

  const onRefresh = () => {
    apiUtils.highlights.getAll.invalidate();
  };

  return (
    <CustomSafeAreaView>
      <HighlightList
        highlights={data.pages.flatMap((p) => p.highlights)}
        header={
          <View className="flex flex-row justify-between">
            <PageTitle title="Highlights" />
          </View>
        }
        onRefresh={onRefresh}
        fetchNextPage={fetchNextPage}
        isFetchingNextPage={isFetchingNextPage}
        isRefreshing={isPending || isPlaceholderData}
      />
    </CustomSafeAreaView>
  );
}