1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
|
"use client"
import * as React from "react"
import { zodResolver } from "@hookform/resolvers/zod"
import { useForm } from "react-hook-form"
import { CalendarIcon, Loader } from "lucide-react"
import { format } from "date-fns"
import { toast } from "sonner"
import { Button } from "@/components/ui/button"
import {
Dialog,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
} from "@/components/ui/dialog"
import {
Form,
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage,
} from "@/components/ui/form"
import { Textarea } from "@/components/ui/textarea"
import {
Select,
SelectContent,
SelectGroup,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select"
import { Calendar } from "@/components/ui/calendar"
import {
Popover,
PopoverContent,
PopoverTrigger,
} from "@/components/ui/popover"
import { z } from "zod"
// Validation schema for editing investigation
const editInvestigationSchema = z.object({
confirmedAt: z.union([
z.date(),
z.string().transform((str) => str ? new Date(str) : undefined)
]).optional(),
evaluationResult: z.enum(["APPROVED", "SUPPLEMENT", "REJECTED"]).optional(),
investigationNotes: z.string().max(1000, "QM 의견은 1000자 이내로 입력해주세요.").optional(),
})
type EditInvestigationSchema = z.infer<typeof editInvestigationSchema>
interface EditInvestigationDialogProps {
isOpen: boolean
onClose: () => void
investigation: {
id: number
confirmedAt?: Date | null
evaluationResult?: string | null
investigationNotes?: string | null
} | null
onSubmit: (data: EditInvestigationSchema) => Promise<void>
}
export function EditInvestigationDialog({
isOpen,
onClose,
investigation,
onSubmit,
}: EditInvestigationDialogProps) {
const [isPending, startTransition] = React.useTransition()
const form = useForm<EditInvestigationSchema>({
resolver: zodResolver(editInvestigationSchema),
defaultValues: {
confirmedAt: investigation?.confirmedAt || undefined,
evaluationResult: investigation?.evaluationResult as "APPROVED" | "SUPPLEMENT" | "REJECTED" | undefined,
investigationNotes: investigation?.investigationNotes || "",
},
})
// Reset form when investigation changes
React.useEffect(() => {
if (investigation) {
form.reset({
confirmedAt: investigation.confirmedAt || undefined,
evaluationResult: investigation.evaluationResult as "APPROVED" | "SUPPLEMENT" | "REJECTED" | undefined,
investigationNotes: investigation.investigationNotes || "",
})
}
}, [investigation, form])
const handleSubmit = async (values: EditInvestigationSchema) => {
startTransition(async () => {
try {
await onSubmit(values)
toast.success("실사 정보가 업데이트되었습니다!")
onClose()
} catch (error) {
console.error("실사 정보 업데이트 오류:", error)
toast.error("실사 정보 업데이트 중 오류가 발생했습니다.")
}
})
}
return (
<Dialog open={isOpen} onOpenChange={onClose}>
<DialogContent className="sm:max-w-[425px]">
<DialogHeader>
<DialogTitle>실사 정보 수정</DialogTitle>
<DialogDescription>
구매자체평가 실사 정보를 수정합니다.
</DialogDescription>
</DialogHeader>
<Form {...form}>
<form onSubmit={form.handleSubmit(handleSubmit)} className="space-y-4">
{/* 실사 확정일 */}
<FormField
control={form.control}
name="confirmedAt"
render={({ field }) => (
<FormItem className="flex flex-col">
<FormLabel>실사 확정일</FormLabel>
<Popover>
<PopoverTrigger asChild>
<FormControl>
<Button
variant="outline"
className={`w-full pl-3 text-left font-normal ${!field.value && "text-muted-foreground"}`}
>
{field.value ? (
format(field.value, "yyyy년 MM월 dd일")
) : (
<span>날짜를 선택하세요</span>
)}
<CalendarIcon className="ml-auto h-4 w-4 opacity-50" />
</Button>
</FormControl>
</PopoverTrigger>
<PopoverContent className="w-auto p-0" align="start">
<Calendar
mode="single"
selected={field.value}
onSelect={field.onChange}
initialFocus
/>
</PopoverContent>
</Popover>
<FormMessage />
</FormItem>
)}
/>
{/* 평가 결과 */}
<FormField
control={form.control}
name="evaluationResult"
render={({ field }) => (
<FormItem>
<FormLabel>평가 결과</FormLabel>
<FormControl>
<Select value={field.value || ""} onValueChange={field.onChange}>
<SelectTrigger>
<SelectValue placeholder="평가 결과를 선택하세요" />
</SelectTrigger>
<SelectContent>
<SelectGroup>
<SelectItem value="APPROVED">승인</SelectItem>
<SelectItem value="SUPPLEMENT">보완</SelectItem>
<SelectItem value="REJECTED">불가</SelectItem>
</SelectGroup>
</SelectContent>
</Select>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
{/* QM 의견 */}
<FormField
control={form.control}
name="investigationNotes"
render={({ field }) => (
<FormItem>
<FormLabel>QM 의견</FormLabel>
<FormControl>
<Textarea
placeholder="실사에 대한 QM 의견을 입력하세요..."
{...field}
className="min-h-[80px]"
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<DialogFooter>
<Button type="button" variant="outline" onClick={onClose} disabled={isPending}>
취소
</Button>
<Button type="submit" disabled={isPending}>
{isPending && <Loader className="mr-2 h-4 w-4 animate-spin" />}
저장
</Button>
</DialogFooter>
</form>
</Form>
</DialogContent>
</Dialog>
)
}
|