From 44b74ff4170090673b6eeacd8c528e0abf47b7aa Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Mon, 1 Dec 2025 19:52:06 +0900 Subject: (김준회) deprecated code 정리 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/b-rfq/initial/delete-initial-rfq-dialog.tsx | 149 ------------------------ 1 file changed, 149 deletions(-) delete mode 100644 lib/b-rfq/initial/delete-initial-rfq-dialog.tsx (limited to 'lib/b-rfq/initial/delete-initial-rfq-dialog.tsx') diff --git a/lib/b-rfq/initial/delete-initial-rfq-dialog.tsx b/lib/b-rfq/initial/delete-initial-rfq-dialog.tsx deleted file mode 100644 index b5a231b7..00000000 --- a/lib/b-rfq/initial/delete-initial-rfq-dialog.tsx +++ /dev/null @@ -1,149 +0,0 @@ -"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 { InitialRfqDetailView } from "@/db/schema" -import { removeInitialRfqs } from "../service" - -interface DeleteInitialRfqDialogProps - extends React.ComponentPropsWithoutRef { - initialRfqs: Row["original"][] - showTrigger?: boolean - onSuccess?: () => void -} - -export function DeleteInitialRfqDialog({ - initialRfqs, - showTrigger = true, - onSuccess, - ...props -}: DeleteInitialRfqDialogProps) { - const [isDeletePending, startDeleteTransition] = React.useTransition() - const isDesktop = useMediaQuery("(min-width: 640px)") - - function onDelete() { - startDeleteTransition(async () => { - const { error } = await removeInitialRfqs({ - ids: initialRfqs.map((rfq) => rfq.id), - }) - - if (error) { - toast.error(error) - return - } - - props.onOpenChange?.(false) - toast.success("초기 RFQ가 삭제되었습니다") - onSuccess?.() - }) - } - - if (isDesktop) { - return ( - - {showTrigger ? ( - - - - ) : null} - - - 정말로 삭제하시겠습니까? - - 이 작업은 되돌릴 수 없습니다. 선택한{" "} - {initialRfqs.length}개의 - 초기 RFQ{initialRfqs.length === 1 ? "를" : "들을"} 영구적으로 삭제합니다. - - - - - - - - - - - ) - } - - return ( - - {showTrigger ? ( - - - - ) : null} - - - 정말로 삭제하시겠습니까? - - 이 작업은 되돌릴 수 없습니다. 선택한{" "} - {initialRfqs.length}개의 - 초기 RFQ{initialRfqs.length === 1 ? "를" : "들을"} 영구적으로 삭제합니다. - - - - - - - - - - - ) -} \ No newline at end of file -- cgit v1.2.3