From 7400914396eea0c9a1fb7bc59e022babc2186f42 Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Fri, 9 Feb 2024 16:47:17 +0000 Subject: [feature] Add the ability to favourite and archive bookmarks --- .../bookmarks/components/BookmarkOptions.tsx | 84 ++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 packages/web/app/dashboard/bookmarks/components/BookmarkOptions.tsx (limited to 'packages/web/app/dashboard/bookmarks/components/BookmarkOptions.tsx') diff --git a/packages/web/app/dashboard/bookmarks/components/BookmarkOptions.tsx b/packages/web/app/dashboard/bookmarks/components/BookmarkOptions.tsx new file mode 100644 index 00000000..15ce64c7 --- /dev/null +++ b/packages/web/app/dashboard/bookmarks/components/BookmarkOptions.tsx @@ -0,0 +1,84 @@ +"use client"; + +import { useToast } from "@/components/ui/use-toast"; +import APIClient from "@/lib/api"; +import { ZBookmark, ZUpdateBookmarksRequest } from "@/lib/types/api/bookmarks"; +import { useRouter } from "next/navigation"; +import { Button } from "@/components/ui/button"; +import { + DropdownMenu, + DropdownMenuContent, + DropdownMenuItem, + DropdownMenuTrigger, +} from "@/components/ui/dropdown-menu"; +import { Archive, MoreHorizontal, Star, Trash2 } from "lucide-react"; + +export default function BookmarkOptions({ bookmark }: { bookmark: ZBookmark }) { + const { toast } = useToast(); + const router = useRouter(); + const linkId = bookmark.id; + + const unbookmarkLink = async () => { + const [_, error] = await APIClient.deleteBookmark(linkId); + + if (error) { + toast({ + variant: "destructive", + title: "Something went wrong", + description: "There was a problem with your request.", + }); + } else { + toast({ + description: "The bookmark has been deleted!", + }); + } + + router.refresh(); + }; + + const updateBookmark = async (req: ZUpdateBookmarksRequest) => { + const [_, error] = await APIClient.updateBookmark(linkId, req); + + if (error) { + toast({ + variant: "destructive", + title: "Something went wrong", + description: "There was a problem with your request.", + }); + } else { + toast({ + description: "The bookmark has been updated!", + }); + } + + router.refresh(); + }; + + return ( + + + + + + updateBookmark({ favourited: !bookmark.favourited })} + > + + {bookmark.favourited ? "Un-favourite" : "Favourite"} + + updateBookmark({ archived: !bookmark.archived })} + > + + {bookmark.archived ? "Un-archive" : "Archive"} + + + + Delete + + + + ); +} -- cgit v1.2.3-70-g09d2