aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/components/bookmarks/BookmarkList.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-13 14:33:54 +0000
committerMohamedBassem <me@mbassem.com>2024-03-13 14:43:52 +0000
commita2ca7db052c0ce20b404f6f81b691850b3318b97 (patch)
treed060d3a541f0305c1df7e88ac321e6166d8000d9 /packages/mobile/components/bookmarks/BookmarkList.tsx
parent408984d9325f12937ac5747505370dec26e46d3f (diff)
downloadkarakeep-a2ca7db052c0ce20b404f6f81b691850b3318b97.tar.zst
mobile: Optimistic UI updates on actions
Diffstat (limited to 'packages/mobile/components/bookmarks/BookmarkList.tsx')
-rw-r--r--packages/mobile/components/bookmarks/BookmarkList.tsx23
1 files changed, 12 insertions, 11 deletions
diff --git a/packages/mobile/components/bookmarks/BookmarkList.tsx b/packages/mobile/components/bookmarks/BookmarkList.tsx
index 519ec47c..af5c9de7 100644
--- a/packages/mobile/components/bookmarks/BookmarkList.tsx
+++ b/packages/mobile/components/bookmarks/BookmarkList.tsx
@@ -1,5 +1,6 @@
import { useEffect, useState } from "react";
-import { FlatList, Text, View } from "react-native";
+import { Text, View } from "react-native";
+import Animated, { LinearTransition } from "react-native-reanimated";
import BookmarkCard from "./BookmarkCard";
@@ -37,25 +38,25 @@ export default function BookmarkList({
apiUtils.bookmarks.getBookmark.invalidate();
};
- if (!data.bookmarks.length) {
- return (
- <View className="h-full items-center justify-center">
- <Text className="text-xl">No Bookmarks</Text>
- </View>
- );
- }
-
return (
- <FlatList
+ <Animated.FlatList
+ itemLayoutAnimation={LinearTransition}
contentContainerStyle={{
gap: 15,
marginVertical: 15,
alignItems: "center",
+ height: "100%",
}}
- renderItem={(b) => <BookmarkCard key={b.item.id} bookmark={b.item} />}
+ renderItem={(b) => <BookmarkCard bookmark={b.item} />}
+ ListEmptyComponent={
+ <View className="h-full items-center justify-center">
+ <Text className="text-xl">No Bookmarks</Text>
+ </View>
+ }
data={data.bookmarks}
refreshing={refreshing}
onRefresh={onRefresh}
+ keyExtractor={(b) => b.id}
/>
);
}