aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/app/dashboard/lists
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-13 04:27:21 +0000
committerMohamedBassem <me@mbassem.com>2024-03-13 04:29:52 +0000
commit3a4b858c03bf775e63521f8f0e0a5e9e304dbceb (patch)
tree1473ade5bdec7e5036a13c0c96342020610b5abb /packages/mobile/app/dashboard/lists
parent61e970bb8c75c6edb279447be3f7ca8a00bd607d (diff)
downloadkarakeep-3a4b858c03bf775e63521f8f0e0a5e9e304dbceb.tar.zst
mobile: Add support for viewing lists
Diffstat (limited to 'packages/mobile/app/dashboard/lists')
-rw-r--r--packages/mobile/app/dashboard/lists/[slug].tsx31
1 files changed, 31 insertions, 0 deletions
diff --git a/packages/mobile/app/dashboard/lists/[slug].tsx b/packages/mobile/app/dashboard/lists/[slug].tsx
new file mode 100644
index 00000000..5ebc4446
--- /dev/null
+++ b/packages/mobile/app/dashboard/lists/[slug].tsx
@@ -0,0 +1,31 @@
+import { useLocalSearchParams, Stack } from "expo-router";
+import { View } from "react-native";
+
+import BookmarkList from "@/components/bookmarks/BookmarkList";
+import { api } from "@/lib/trpc";
+
+export default function ListView() {
+ const { slug } = useLocalSearchParams();
+ if (typeof slug !== "string") {
+ throw new Error("Unexpected param type");
+ }
+ const { data: list } = api.lists.get.useQuery({ listId: slug });
+
+ if (!list) {
+ // TODO: Spinner
+ return <View />;
+ }
+
+ return (
+ <>
+ <Stack.Screen
+ options={{
+ headerTitle: `${list.icon} ${list.name}`,
+ }}
+ />
+ <View>
+ <BookmarkList archived={false} ids={list.bookmarks} />
+ </View>
+ </>
+ );
+}