From 140554021e83ca375845584f8d7e5e476434f1c0 Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Mon, 26 Aug 2024 18:00:00 +0300 Subject: feature(mobile): Add ability to create basic lists from the app --- apps/mobile/app/dashboard/(tabs)/lists.tsx | 32 +++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) (limited to 'apps/mobile/app/dashboard/(tabs)') diff --git a/apps/mobile/app/dashboard/(tabs)/lists.tsx b/apps/mobile/app/dashboard/(tabs)/lists.tsx index 9e4b0929..c7e3a874 100644 --- a/apps/mobile/app/dashboard/(tabs)/lists.tsx +++ b/apps/mobile/app/dashboard/(tabs)/lists.tsx @@ -1,15 +1,32 @@ -import { useEffect, useState } from "react"; +import { useEffect, useRef, useState } from "react"; import { FlatList, Pressable, Text, View } from "react-native"; +import * as Haptics from "expo-haptics"; import { Link } from "expo-router"; +import NewListModal from "@/components/lists/NewListModal"; import { TailwindResolver } from "@/components/TailwindResolver"; import CustomSafeAreaView from "@/components/ui/CustomSafeAreaView"; import PageTitle from "@/components/ui/PageTitle"; import { api } from "@/lib/trpc"; -import { ChevronRight } from "lucide-react-native"; +import { BottomSheetModal } from "@gorhom/bottom-sheet"; +import { ChevronRight, Plus } from "lucide-react-native"; import { useBookmarkLists } from "@hoarder/shared-react/hooks/lists"; import { ZBookmarkListTreeNode } from "@hoarder/shared/utils/listUtils"; +function HeaderRight({ openNewListModal }: { openNewListModal: () => void }) { + return ( + { + Haptics.selectionAsync(); + openNewListModal(); + }} + > + + + ); +} + interface ListLink { id: string; logo: string; @@ -53,6 +70,7 @@ export default function Lists() { {}, ); const apiUtils = api.useUtils(); + const newListModal = useRef(null); useEffect(() => { setRefreshing(isPending); @@ -94,9 +112,17 @@ export default function Lists() { return ( + } + ListHeaderComponent={ + + + newListModal.current?.present()} + /> + + } contentContainerStyle={{ gap: 5, }} -- cgit v1.2.3-70-g09d2