From 50ae0b8f02c034e60d4cbb504620dfa1575a836f Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 28 Jul 2025 09:19:42 +0000 Subject: (박서영) 설계 document Numbering Rule 개발-최겸 업로드 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../table/combo-box-options-add-dialog.tsx | 142 +++++++++++++++++++++ 1 file changed, 142 insertions(+) create mode 100644 lib/docu-list-rule/combo-box-settings/table/combo-box-options-add-dialog.tsx (limited to 'lib/docu-list-rule/combo-box-settings/table/combo-box-options-add-dialog.tsx') diff --git a/lib/docu-list-rule/combo-box-settings/table/combo-box-options-add-dialog.tsx b/lib/docu-list-rule/combo-box-settings/table/combo-box-options-add-dialog.tsx new file mode 100644 index 00000000..1fb8950c --- /dev/null +++ b/lib/docu-list-rule/combo-box-settings/table/combo-box-options-add-dialog.tsx @@ -0,0 +1,142 @@ +"use client" + +import * as React from "react" +import { zodResolver } from "@hookform/resolvers/zod" +import { useForm } from "react-hook-form" +import { toast } from "sonner" +import * as z from "zod" +import { Plus } from "lucide-react" + +import { Button } from "@/components/ui/button" +import { + Dialog, + DialogContent, + DialogDescription, + DialogFooter, + DialogHeader, + DialogTitle, + DialogTrigger, +} from "@/components/ui/dialog" +import { + Form, + FormControl, + FormField, + FormItem, + FormLabel, + FormMessage, +} from "@/components/ui/form" +import { Input } from "@/components/ui/input" + +import { createComboBoxOption } from "../service" + +const createOptionSchema = z.object({ + description: z.string().min(1, "값은 필수입니다."), + remark: z.string().optional(), +}) + +type CreateOptionSchema = z.infer + +interface ComboBoxOptionsAddDialogProps { + codeGroupId: number + onSuccess?: () => void +} + +export function ComboBoxOptionsAddDialog({ codeGroupId, onSuccess }: ComboBoxOptionsAddDialogProps) { + const [open, setOpen] = React.useState(false) + const [isPending, startTransition] = React.useTransition() + + const form = useForm({ + resolver: zodResolver(createOptionSchema), + defaultValues: { + description: "", + remark: "", + }, + }) + + const handleSubmit = (data: CreateOptionSchema) => { + startTransition(async () => { + try { + const result = await createComboBoxOption({ + codeGroupId, + code: "", // 서비스에서 자동 생성 + description: data.description, + remark: data.remark, + }) + + if (result.success) { + toast.success("옵션이 성공적으로 추가되었습니다.") + setOpen(false) + form.reset() + onSuccess?.() + } else { + toast.error(`옵션 추가 실패: ${result.error}`) + } + } catch (error) { + console.error("Create error:", error) + toast.error("옵션 추가 중 오류가 발생했습니다.") + } + }) + } + + const handleCancel = () => { + setOpen(false) + form.reset() + } + + return ( + + + + + + + 옵션 추가 + + 새로운 Combo Box 옵션을 추가합니다. + + +
+ + ( + + + + + + + + )} + /> + ( + + 비고 + + + + + + )} + /> + + + + + + +
+
+ ) +} \ No newline at end of file -- cgit v1.2.3