From 3a4b858c03bf775e63521f8f0e0a5e9e304dbceb Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Wed, 13 Mar 2024 04:27:21 +0000 Subject: mobile: Add support for viewing lists --- packages/mobile/app/dashboard/(tabs)/_layout.tsx | 9 +++- packages/mobile/app/dashboard/(tabs)/lists.tsx | 67 ++++++++++++++++++++++++ 2 files changed, 75 insertions(+), 1 deletion(-) create mode 100644 packages/mobile/app/dashboard/(tabs)/lists.tsx (limited to 'packages/mobile/app/dashboard/(tabs)') diff --git a/packages/mobile/app/dashboard/(tabs)/_layout.tsx b/packages/mobile/app/dashboard/(tabs)/_layout.tsx index c15f37f1..74557eda 100644 --- a/packages/mobile/app/dashboard/(tabs)/_layout.tsx +++ b/packages/mobile/app/dashboard/(tabs)/_layout.tsx @@ -1,5 +1,5 @@ import { Tabs } from "expo-router"; -import { Home, Settings } from "lucide-react-native"; +import { ClipboardList, Home, Settings } from "lucide-react-native"; import React from "react"; export default function TabLayout() { @@ -12,6 +12,13 @@ export default function TabLayout() { tabBarIcon: ({ color }) => , }} /> + , + }} + /> { + setRefreshing(isPending); + }, [isPending]); + + if (!lists) { + // Add spinner + return ; + } + + const onRefresh = () => { + apiUtils.lists.list.invalidate(); + }; + + const links = [ + { + id: "fav", + logo: "⭐️", + name: "Favourites", + href: "/dashboard/favourites", + }, + { + id: "arch", + logo: "🗄️", + name: "Archive", + href: "/dashboard/archive", + }, + ]; + + links.push( + ...lists.lists.map((l) => ({ + id: l.id, + logo: l.icon, + name: l.name, + href: `/dashboard/lists/${l.id}`, + })), + ); + + return ( + ( + + + {l.item.logo} {l.item.name} + + + )} + data={links} + refreshing={refreshing} + onRefresh={onRefresh} + /> + ); +} -- cgit v1.2.3-70-g09d2