From e0999f701cd1834c3d940113cd8dd5247c5fe95f Mon Sep 17 00:00:00 2001 From: Mohamed Bassem Date: Fri, 19 Apr 2024 00:09:27 +0100 Subject: feature: Nested lists (#110). Fixes #62 * feature: Add support for nested lists * prevent moving the parent to a subtree --- .../lists/DeleteListConfirmationDialog.tsx | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 apps/web/components/dashboard/lists/DeleteListConfirmationDialog.tsx (limited to 'apps/web/components/dashboard/lists/DeleteListConfirmationDialog.tsx') diff --git a/apps/web/components/dashboard/lists/DeleteListConfirmationDialog.tsx b/apps/web/components/dashboard/lists/DeleteListConfirmationDialog.tsx new file mode 100644 index 00000000..bf1969bf --- /dev/null +++ b/apps/web/components/dashboard/lists/DeleteListConfirmationDialog.tsx @@ -0,0 +1,61 @@ +import { usePathname, useRouter } from "next/navigation"; +import { ActionButton } from "@/components/ui/action-button"; +import ActionConfirmingDialog from "@/components/ui/action-confirming-dialog"; +import { toast } from "@/components/ui/use-toast"; + +import type { ZBookmarkList } from "@hoarder/shared/types/lists"; +import { useDeleteBookmarkList } from "@hoarder/shared-react/hooks/lists"; + +export default function DeleteListConfirmationDialog({ + list, + children, + open, + setOpen, +}: { + list: ZBookmarkList; + children?: React.ReactNode; + open: boolean; + setOpen: (v: boolean) => void; +}) { + const currentPath = usePathname(); + const router = useRouter(); + + const { mutate: deleteList, isPending } = useDeleteBookmarkList({ + onSuccess: () => { + toast({ + description: `List "${list.icon} ${list.name}" is deleted!`, + }); + setOpen(false); + if (currentPath.includes(list.id)) { + router.push("/dashboard/lists"); + } + }, + onError: () => { + toast({ + variant: "destructive", + description: `Something went wrong`, + }); + }, + }); + + return ( + ( + deleteList({ listId: list.id })} + > + Delete + + )} + > + {children} + + ); +} -- cgit v1.2.3-70-g09d2