diff options
Diffstat (limited to 'apps/mobile/components/bookmarks/UpdatingBookmarkList.tsx')
| -rw-r--r-- | apps/mobile/components/bookmarks/UpdatingBookmarkList.tsx | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/apps/mobile/components/bookmarks/UpdatingBookmarkList.tsx b/apps/mobile/components/bookmarks/UpdatingBookmarkList.tsx new file mode 100644 index 00000000..8495ee22 --- /dev/null +++ b/apps/mobile/components/bookmarks/UpdatingBookmarkList.tsx @@ -0,0 +1,52 @@ +import { Text } from "react-native"; +import { api } from "@/lib/trpc"; + +import type { ZGetBookmarksRequest } from "@hoarder/trpc/types/bookmarks"; + +import FullPageSpinner from "../ui/FullPageSpinner"; +import BookmarkList2 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 ( + <BookmarkList2 + bookmarks={data.pages.flatMap((p) => p.bookmarks)} + header={header} + onRefresh={onRefresh} + fetchNextPage={fetchNextPage} + isFetchingNextPage={isFetchingNextPage} + isRefreshing={isPending || isPlaceholderData} + /> + ); +} |
