From 93afb75619a02aa741b464634911b994620092be Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Sun, 28 Jul 2024 20:03:15 -0700 Subject: feat(mobile): Add ability to manage lists --- apps/mobile/app/sharing.tsx | 40 ++++++++++++++++++++++++++++++++-------- 1 file changed, 32 insertions(+), 8 deletions(-) (limited to 'apps/mobile/app/sharing.tsx') diff --git a/apps/mobile/app/sharing.tsx b/apps/mobile/app/sharing.tsx index d1d39e5b..ee7bd609 100644 --- a/apps/mobile/app/sharing.tsx +++ b/apps/mobile/app/sharing.tsx @@ -1,10 +1,13 @@ -import { useEffect, useState } from "react"; +import { useEffect, useRef, useState } from "react"; import { ActivityIndicator, Text, View } from "react-native"; import { useRouter } from "expo-router"; import { useShareIntentContext } from "expo-share-intent"; +import ListPickerModal from "@/components/bookmarks/ListPickerModal"; +import { Button } from "@/components/ui/Button"; import useAppSettings from "@/lib/settings"; import { api } from "@/lib/trpc"; import { useUploadAsset } from "@/lib/upload"; +import { BottomSheetModal } from "@gorhom/bottom-sheet"; import { z } from "zod"; import { BookmarkTypes, ZBookmark } from "@hoarder/shared/types/bookmarks"; @@ -80,18 +83,39 @@ export default function Sharing() { const router = useRouter(); const [mode, setMode] = useState({ type: "idle" }); + let autoCloseTimeoutId: NodeJS.Timeout | null = null; + const addToListSheetRef = useRef(null); + let comp; switch (mode.type) { case "idle": { comp = ; break; } + case "alreadyExists": case "success": { - comp = Hoarded!; - break; - } - case "alreadyExists": { - comp = Already Hoarded!; + comp = ( + + router.replace("dashboard")} + /> + + {mode.type === "alreadyExists" ? "Already Hoarded!" : "Hoarded!"} + +