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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
"use client"
import * as React from "react"
import { zodResolver } from "@hookform/resolvers/zod"
import { Loader } from "lucide-react"
import { useForm } from "react-hook-form"
import { toast } from "sonner"
import * as z from "zod"
import { Button } from "@/components/ui/button"
import {
Form,
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage,
FormDescription,
} from "@/components/ui/form"
import {
Select,
SelectContent,
SelectGroup,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select"
import {
Sheet,
SheetClose,
SheetContent,
SheetDescription,
SheetFooter,
SheetHeader,
SheetTitle,
} from "@/components/ui/sheet"
import { Input } from "@/components/ui/input"
import {
Dropzone,
DropzoneZone,
DropzoneUploadIcon,
DropzoneTitle,
DropzoneDescription,
DropzoneInput
} from "@/components/ui/dropzone"
import { updateTemplate } from "../service"
import { BasicContractTemplate } from "@/db/schema"
// 업데이트 템플릿 스키마 정의 (유효기간 필드 추가)
export const updateTemplateSchema = z.object({
templateName: z.string().min(1, "템플릿 이름은 필수입니다."),
validityPeriod: z.coerce
.number({ invalid_type_error: "유효기간은 숫자여야 합니다." })
.int("유효기간은 정수여야 합니다.")
.min(1, "유효기간은 최소 1개월 이상이어야 합니다.")
.max(120, "유효기간은 최대 120개월(10년)을 초과할 수 없습니다.")
.default(12),
status: z.enum(["ACTIVE", "INACTIVE"], {
required_error: "상태는 필수 선택사항입니다.",
}),
file: z.instanceof(File, { message: "파일을 업로드해주세요." }).optional(),
})
export type UpdateTemplateSchema = z.infer<typeof updateTemplateSchema>
interface UpdateTemplateSheetProps
extends React.ComponentPropsWithRef<typeof Sheet> {
template: BasicContractTemplate | null
onSuccess?: () => void
}
export function UpdateTemplateSheet({ template, onSuccess, ...props }: UpdateTemplateSheetProps) {
const [isUpdatePending, startUpdateTransition] = React.useTransition()
const [selectedFile, setSelectedFile] = React.useState<File | null>(null)
// 템플릿 데이터 확인을 위한 로그
console.log(template)
const form = useForm<UpdateTemplateSchema>({
resolver: zodResolver(updateTemplateSchema),
defaultValues: {
templateName: template?.templateName ?? "",
validityPeriod: template?.validityPeriod ?? 12, // 기본값 12개월
status: (template?.status as "ACTIVE" | "INACTIVE") || "ACTIVE"
},
mode: "onChange"
})
// 파일 선택 핸들러
const handleFileChange = (files: File[]) => {
if (files.length > 0) {
const file = files[0];
setSelectedFile(file);
form.setValue("file", file);
}
};
// 템플릿 변경 시 폼 값 업데이트
React.useEffect(() => {
if (template) {
form.reset({
templateName: template.templateName,
validityPeriod: template.validityPeriod ?? 12, // 기존 값이 없으면 기본값 12개월
status: template.status as "ACTIVE" | "INACTIVE",
});
}
}, [template, form]);
// 유효기간 선택 옵션
const validityOptions = [
{ value: "3", label: "3개월" },
{ value: "6", label: "6개월" },
{ value: "12", label: "1년" },
{ value: "24", label: "2년" },
{ value: "36", label: "3년" },
{ value: "60", label: "5년" },
];
function onSubmit(input: UpdateTemplateSchema) {
startUpdateTransition(async () => {
if (!template) return
// FormData 객체 생성하여 파일과 데이터를 함께 전송
const formData = new FormData();
formData.append("templateName", input.templateName);
formData.append("validityPeriod", input.validityPeriod.toString()); // 유효기간 추가
formData.append("status", input.status);
if (input.file) {
formData.append("file", input.file);
}
try {
// 서비스 함수 호출
const { error } = await updateTemplate({
id: template.id,
formData,
});
if (error) {
toast.error(error);
return;
}
form.reset();
setSelectedFile(null);
props.onOpenChange?.(false);
toast.success("템플릿이 성공적으로 업데이트되었습니다.");
onSuccess?.();
} catch (error) {
console.error("Update error:", error);
toast.error("템플릿 업데이트 중 오류가 발생했습니다.");
}
});
}
return (
<Sheet {...props}>
<SheetContent className="flex flex-col gap-6 sm:max-w-md">
<SheetHeader className="text-left">
<SheetTitle>템플릿 업데이트</SheetTitle>
<SheetDescription>
템플릿 정보를 수정하고 변경사항을 저장하세요
</SheetDescription>
</SheetHeader>
<Form {...form}>
<form
onSubmit={form.handleSubmit(onSubmit)}
className="flex flex-col gap-4"
>
<FormField
control={form.control}
name="templateName"
render={({ field }) => (
<FormItem>
<FormLabel>템플릿 이름</FormLabel>
<FormControl>
<Input placeholder="템플릿 이름을 입력하세요" {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="validityPeriod"
render={({ field }) => (
<FormItem>
<FormLabel>계약 유효기간</FormLabel>
<Select
value={field.value?.toString()}
onValueChange={(value) => field.onChange(parseInt(value))}
>
<FormControl>
<SelectTrigger>
<SelectValue placeholder="유효기간을 선택하세요" />
</SelectTrigger>
</FormControl>
<SelectContent>
{validityOptions.map(option => (
<SelectItem key={option.value} value={option.value}>
{option.label}
</SelectItem>
))}
</SelectContent>
</Select>
<FormDescription>
계약서의 유효 기간을 설정합니다. 이 기간이 지나면 재계약이 필요합니다.
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="status"
render={({ field }) => (
<FormItem>
<FormLabel>상태</FormLabel>
<Select
defaultValue={field.value}
onValueChange={field.onChange}
>
<FormControl>
<SelectTrigger>
<SelectValue placeholder="템플릿 상태 선택" />
</SelectTrigger>
</FormControl>
<SelectContent>
<SelectGroup>
<SelectItem value="ACTIVE">활성</SelectItem>
<SelectItem value="INACTIVE">비활성</SelectItem>
</SelectGroup>
</SelectContent>
</Select>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="file"
render={() => (
<FormItem>
<FormLabel>템플릿 파일 (선택사항)</FormLabel>
<FormControl>
<Dropzone
onDrop={handleFileChange}
>
<DropzoneZone>
<DropzoneUploadIcon className="h-10 w-10 text-muted-foreground" />
<DropzoneTitle>
{selectedFile
? selectedFile.name
: template?.fileName
? `현재 파일: ${template.fileName}`
: "새 파일을 드래그하세요"}
</DropzoneTitle>
<DropzoneDescription>
{selectedFile
? `파일 크기: ${(selectedFile.size / 1024).toFixed(2)} KB`
: "또는 클릭하여 파일을 선택하세요 (선택사항)"}
</DropzoneDescription>
<DropzoneInput />
</DropzoneZone>
</Dropzone>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<SheetFooter className="gap-2 pt-2 sm:space-x-0">
<SheetClose asChild>
<Button type="button" variant="outline">
취소
</Button>
</SheetClose>
<Button
type="submit"
disabled={isUpdatePending || !form.formState.isValid}
>
{isUpdatePending && (
<Loader
className="mr-2 size-4 animate-spin"
aria-hidden="true"
/>
)}
저장
</Button>
</SheetFooter>
</form>
</Form>
</SheetContent>
</Sheet>
)
}
|