From 20d1a90e65d08c16f30d8d9adac005dda7f4dad1 Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Wed, 20 Mar 2024 17:56:22 +0000 Subject: fix(mobile): Fix flicker on search --- apps/mobile/components/bookmarks/BookmarkList.tsx | 54 ++++++---------------- .../components/bookmarks/UpdatingBookmarkList.tsx | 52 +++++++++++++++++++++ 2 files changed, 67 insertions(+), 39 deletions(-) create mode 100644 apps/mobile/components/bookmarks/UpdatingBookmarkList.tsx (limited to 'apps/mobile/components') diff --git a/apps/mobile/components/bookmarks/BookmarkList.tsx b/apps/mobile/components/bookmarks/BookmarkList.tsx index 8a19c045..9176f66d 100644 --- a/apps/mobile/components/bookmarks/BookmarkList.tsx +++ b/apps/mobile/components/bookmarks/BookmarkList.tsx @@ -1,53 +1,29 @@ -import { useEffect, useRef, useState } from "react"; +import { useRef } from "react"; import { ActivityIndicator, Keyboard, Text, View } from "react-native"; import Animated, { LinearTransition } from "react-native-reanimated"; -import { api } from "@/lib/trpc"; import { useScrollToTop } from "@react-navigation/native"; -import type { ZGetBookmarksRequest } from "@hoarder/trpc/types/bookmarks"; +import type { ZBookmark } from "@hoarder/trpc/types/bookmarks"; -import FullPageSpinner from "../ui/FullPageSpinner"; import BookmarkCard from "./BookmarkCard"; export default function BookmarkList({ - query, + bookmarks, header, + onRefresh, + fetchNextPage, + isFetchingNextPage, + isRefreshing, }: { - query: ZGetBookmarksRequest; + bookmarks: ZBookmark[]; + onRefresh: () => void, + isRefreshing: boolean, + fetchNextPage?: () => void, header?: React.ReactElement; + isFetchingNextPage?: boolean, }) { - const apiUtils = api.useUtils(); - const [refreshing, setRefreshing] = useState(false); const flatListRef = useRef(null); useScrollToTop(flatListRef); - const { - data, - isPending, - isPlaceholderData, - error, - fetchNextPage, - isFetchingNextPage, - } = api.bookmarks.getBookmarks.useInfiniteQuery(query, { - initialCursor: null, - getNextPageParam: (lastPage) => lastPage.nextCursor, - }); - - useEffect(() => { - setRefreshing(isPending || isPlaceholderData); - }, [isPending, isPlaceholderData]); - - if (error) { - return {JSON.stringify(error)}; - } - - if (isPending || !data) { - return ; - } - - const onRefresh = () => { - apiUtils.bookmarks.getBookmarks.invalidate(); - apiUtils.bookmarks.getBookmark.invalidate(); - }; return ( No Bookmarks } - data={data.pages.flatMap((p) => p.bookmarks)} - refreshing={refreshing} + data={bookmarks} + refreshing={isRefreshing} onRefresh={onRefresh} onScrollBeginDrag={Keyboard.dismiss} keyExtractor={(b) => b.id} - onEndReached={() => fetchNextPage()} + onEndReached={fetchNextPage} ListFooterComponent={ isFetchingNextPage ? ( 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 {JSON.stringify(error)}; + } + + if (isPending || !data) { + return ; + } + + const onRefresh = () => { + apiUtils.bookmarks.getBookmarks.invalidate(); + apiUtils.bookmarks.getBookmark.invalidate(); + }; + + return ( + p.bookmarks)} + header={header} + onRefresh={onRefresh} + fetchNextPage={fetchNextPage} + isFetchingNextPage={isFetchingNextPage} + isRefreshing={isPending || isPlaceholderData} + /> + ); +} -- cgit v1.2.3-70-g09d2