From 629c5ab0292a5953812cece93389735581493cc9 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Thu, 8 May 2025 09:47:00 +0000 Subject: 0508 기술영업 조선 아이템 매트릭스 개발 건(drizzle push 필요) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/items-ship/table/delete-items-dialog.tsx | 169 +++++++++++++++++++++++++++ 1 file changed, 169 insertions(+) create mode 100644 lib/items-ship/table/delete-items-dialog.tsx (limited to 'lib/items-ship/table/delete-items-dialog.tsx') diff --git a/lib/items-ship/table/delete-items-dialog.tsx b/lib/items-ship/table/delete-items-dialog.tsx new file mode 100644 index 00000000..1b847550 --- /dev/null +++ b/lib/items-ship/table/delete-items-dialog.tsx @@ -0,0 +1,169 @@ +"use client" + +import * as React from "react" +import { type Row } from "@tanstack/react-table" +import { Loader, Trash } from "lucide-react" +import { toast } from "sonner" + +import { useMediaQuery } from "@/hooks/use-media-query" +import { Button } from "@/components/ui/button" +import { + Dialog, + DialogClose, + DialogContent, + DialogDescription, + DialogFooter, + DialogHeader, + DialogTitle, + DialogTrigger, +} from "@/components/ui/dialog" +import { + Drawer, + DrawerClose, + DrawerContent, + DrawerDescription, + DrawerFooter, + DrawerHeader, + DrawerTitle, + DrawerTrigger, +} from "@/components/ui/drawer" + +import { Item } from "@/db/schema/items" +import { removeShipbuildingItems } from "../service" +import { ItemType } from "./excel/item-excel-template" + +interface DeleteItemsDialogProps + extends React.ComponentPropsWithoutRef { + items: Row["original"][] + itemType?: ItemType + showTrigger?: boolean + onSuccess?: () => void +} + +export function DeleteItemsDialog({ + items, + itemType = 'shipbuilding', + showTrigger = true, + onSuccess, + ...props +}: DeleteItemsDialogProps) { + const [isDeletePending, startDeleteTransition] = React.useTransition() + const isDesktop = useMediaQuery("(min-width: 640px)") + + // 아이템 타입에 따른 텍스트 설정 + const getItemTypeText = () => { + switch (itemType) { + case 'offshoreTop': + return '해양 Top 아이템'; + case 'offshoreHull': + return '해양 Hull 아이템'; + default: + return '조선 아이템'; + } + }; + + async function onDelete() { + try { + startDeleteTransition(async () => { + const { error } = await removeShipbuildingItems({ + ids: items.map((item) => item.id), + }) + + if (error) { + toast.error(error) + return + } + + props.onOpenChange?.(false) + toast.success("아이템 삭제 완료") + onSuccess?.() + }) + } catch (error) { + toast.error("오류가 발생했습니다.") + console.error(error) + } + } + + if (isDesktop) { + return ( + + {showTrigger ? ( + + + + ) : null} + + + 정말로 삭제하시겠습니까? + + 이 작업은 되돌릴 수 없습니다. 선택한{" "} + {items.length} + 개의 {getItemTypeText()}이(가) 영구적으로 삭제됩니다. + + + + + + + + + + + ) + } + + return ( + + {showTrigger ? ( + + + + ) : null} + + + 정말로 삭제하시겠습니까? + + 이 작업은 되돌릴 수 없습니다. 선택한{" "} + {items.length} + 개의 {getItemTypeText()}이(가) 영구적으로 삭제됩니다. + + + + + + + + + + + ) +} -- cgit v1.2.3