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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
|
"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 { useSession } from "next-auth/react"
import { Button } from "@/components/ui/button"
import {
Form,
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage,
} 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 { Rfq, RfqWithItemCount } from "@/db/schema/rfq"
import { RfqType, updateRfqSchema, type UpdateRfqSchema } from "../validations"
import { modifyRfq, getBudgetaryRfqs } from "../service"
import { ProjectSelector } from "@/components/ProjectSelector"
import { type Project } from "../service"
import { ParentRfqSelector } from "./ParentRfqSelector"
interface UpdateRfqSheetProps
extends React.ComponentPropsWithRef<typeof Sheet> {
rfq: RfqWithItemCount | null
}
// 부모 RFQ 정보 타입 정의
interface ParentRfq {
id: number;
rfqCode: string;
description: string | null;
rfqType: RfqType;
projectId: number | null;
projectCode: string | null;
projectName: string | null;
}
export function UpdateRfqSheet({ rfq, ...props }: UpdateRfqSheetProps) {
const [isUpdatePending, startUpdateTransition] = React.useTransition()
const { data: session } = useSession()
const userId = Number(session?.user?.id || 1)
const [selectedParentRfq, setSelectedParentRfq] = React.useState<ParentRfq | null>(null)
// RFQ의 타입 가져오기
const rfqType = rfq?.rfqType || RfqType.PURCHASE;
// 초기 부모 RFQ ID 가져오기
const initialParentRfqId = rfq?.parentRfqId;
// 현재 RFQ 타입에 따라 선택 가능한 부모 RFQ 타입들 결정
const getParentRfqTypes = (): RfqType[] => {
switch(rfqType) {
case RfqType.PURCHASE:
// PURCHASE는 BUDGETARY와 PURCHASE_BUDGETARY를 부모로 가질 수 있음
return [RfqType.BUDGETARY, RfqType.PURCHASE_BUDGETARY];
case RfqType.PURCHASE_BUDGETARY:
// PURCHASE_BUDGETARY는 BUDGETARY만 부모로 가질 수 있음
return [RfqType.BUDGETARY];
default:
return [];
}
};
// 부모 RFQ 타입들
const parentRfqTypes = getParentRfqTypes();
// 부모 RFQ를 보여줄지 결정
const shouldShowParentRfqSelector = rfqType === RfqType.PURCHASE || rfqType === RfqType.PURCHASE_BUDGETARY;
// 타입에 따른 타이틀 생성
const getTypeTitle = () => {
switch(rfqType) {
case RfqType.PURCHASE:
return "Purchase RFQ";
case RfqType.BUDGETARY:
return "Budgetary RFQ";
case RfqType.PURCHASE_BUDGETARY:
return "Purchase Budgetary RFQ";
default:
return "RFQ";
}
};
// 타입 설명 가져오기
const getTypeDescription = () => {
switch(rfqType) {
case RfqType.PURCHASE:
return "실제 구매 발주 전에 가격을 요청";
case RfqType.BUDGETARY:
return "기술영업 단계에서 입찰가 산정을 위한 견적 요청";
case RfqType.PURCHASE_BUDGETARY:
return "프로젝트 수주 후, 공식 입찰 전 예산 책정을 위한 가격 요청";
default:
return "";
}
};
// 부모 RFQ 선택기 레이블 및 설명 가져오기
const getParentRfqSelectorLabel = () => {
if (rfqType === RfqType.PURCHASE) {
return "부모 RFQ (BUDGETARY/PURCHASE_BUDGETARY)";
} else if (rfqType === RfqType.PURCHASE_BUDGETARY) {
return "부모 RFQ (BUDGETARY)";
}
return "부모 RFQ";
};
const getParentRfqDescription = () => {
if (rfqType === RfqType.PURCHASE) {
return "BUDGETARY 또는 PURCHASE_BUDGETARY 타입의 RFQ를 부모로 선택할 수 있습니다.";
} else if (rfqType === RfqType.PURCHASE_BUDGETARY) {
return "BUDGETARY 타입의 RFQ만 부모로 선택할 수 있습니다.";
}
return "";
};
// 초기 부모 RFQ 로드
React.useEffect(() => {
if (initialParentRfqId && shouldShowParentRfqSelector) {
const loadInitialParentRfq = async () => {
try {
const result = await getBudgetaryRfqs({
rfqId: initialParentRfqId
});
if ('rfqs' in result && result.rfqs && result.rfqs.length > 0) {
setSelectedParentRfq(result.rfqs[0] as unknown as ParentRfq);
}
} catch (error) {
console.error("부모 RFQ 로드 오류:", error);
}
};
loadInitialParentRfq();
}
}, [initialParentRfqId, shouldShowParentRfqSelector]);
// RHF setup
const form = useForm<UpdateRfqSchema>({
resolver: zodResolver(updateRfqSchema),
defaultValues: {
id: rfq?.rfqId ?? 0, // PK
rfqCode: rfq?.rfqCode ?? "",
description: rfq?.description ?? "",
projectId: rfq?.projectId, // 프로젝트 ID
parentRfqId: rfq?.parentRfqId, // 부모 RFQ ID
dueDate: rfq?.dueDate ?? undefined, // null을 undefined로 변환
status: rfq?.status ?? "DRAFT",
createdBy: rfq?.createdBy ?? userId,
},
});
// 프로젝트 선택 처리
const handleProjectSelect = (project: Project | null) => {
if (project === null) {
return;
}
form.setValue("projectId", project.id);
};
// 부모 RFQ 선택 처리
const handleParentRfqSelect = (rfq: ParentRfq | null) => {
setSelectedParentRfq(rfq);
form.setValue("parentRfqId", rfq?.id);
};
async function onSubmit(input: UpdateRfqSchema) {
startUpdateTransition(async () => {
if (!rfq) return
const { error } = await modifyRfq({
...input,
rfqType: rfqType as RfqType,
})
if (error) {
toast.error(error)
return
}
form.reset()
props.onOpenChange?.(false) // close the sheet
toast.success("RFQ updated!")
})
}
return (
<Sheet {...props}>
<SheetContent className="flex flex-col gap-6 sm:max-w-md">
<SheetHeader className="text-left">
<SheetTitle>Update {getTypeTitle()}</SheetTitle>
<SheetDescription>
Update the {getTypeTitle()} details and save the changes
<div className="mt-1 text-xs text-muted-foreground">
{getTypeDescription()}
</div>
</SheetDescription>
</SheetHeader>
{/* RHF Form */}
<Form {...form}>
<form onSubmit={form.handleSubmit(onSubmit)} className="flex flex-col gap-4">
{/* Hidden or code-based id field */}
<FormField
control={form.control}
name="id"
render={({ field }) => (
<input type="hidden" {...field} />
)}
/>
{/* Hidden rfqType field */}
{/* <FormField
control={form.control}
name="rfqType"
render={({ field }) => (
<input type="hidden" {...field} />
)}
/> */}
{/* Project Selector - 재사용 컴포넌트 사용 */}
<FormField
control={form.control}
name="projectId"
render={({ field }) => (
<FormItem>
<FormLabel>Project</FormLabel>
<FormControl>
<ProjectSelector
selectedProjectId={field.value}
onProjectSelect={handleProjectSelect}
placeholder="프로젝트 선택..."
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
{/* Parent RFQ Selector - PURCHASE 또는 PURCHASE_BUDGETARY 타입일 때만 표시 */}
{shouldShowParentRfqSelector && (
<FormField
control={form.control}
name="parentRfqId"
render={({ field }) => (
<FormItem>
<FormLabel>{getParentRfqSelectorLabel()}</FormLabel>
<FormControl>
<ParentRfqSelector
selectedRfqId={field.value as number | undefined}
onRfqSelect={handleParentRfqSelect}
rfqType={rfqType}
parentRfqTypes={parentRfqTypes}
placeholder={
rfqType === RfqType.PURCHASE
? "BUDGETARY 또는 PURCHASE_BUDGETARY RFQ 선택..."
: "BUDGETARY RFQ 선택..."
}
/>
</FormControl>
<div className="text-xs text-muted-foreground mt-1">
{getParentRfqDescription()}
</div>
<FormMessage />
</FormItem>
)}
/>
)}
{/* rfqCode */}
<FormField
control={form.control}
name="rfqCode"
render={({ field }) => (
<FormItem>
<FormLabel>RFQ Code</FormLabel>
<FormControl>
<Input placeholder="e.g. RFQ-2025-001" {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
{/* description */}
<FormField
control={form.control}
name="description"
render={({ field }) => (
<FormItem>
<FormLabel>Description</FormLabel>
<FormControl>
<Input placeholder="Description" {...field} value={field.value || ""} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
{/* dueDate (type="date") */}
<FormField
control={form.control}
name="dueDate"
render={({ field }) => (
<FormItem>
<FormLabel>Due Date</FormLabel>
<FormControl>
<Input
type="date"
// convert Date -> yyyy-mm-dd
value={field.value ? field.value.toISOString().slice(0, 10) : ""}
onChange={(e) => {
const val = e.target.value
field.onChange(val ? new Date(val + "T00:00:00") : undefined)
}}
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
{/* status (Select) */}
<FormField
control={form.control}
name="status"
render={({ field }) => (
<FormItem>
<FormLabel>Status</FormLabel>
<FormControl>
<Select
onValueChange={field.onChange}
value={field.value ?? "DRAFT"}
>
<SelectTrigger className="capitalize">
<SelectValue placeholder="Select status" />
</SelectTrigger>
<SelectContent>
<SelectGroup>
{["DRAFT", "PUBLISHED", "EVALUATION", "AWARDED"].map((item) => (
<SelectItem key={item} value={item} className="capitalize">
{item}
</SelectItem>
))}
</SelectGroup>
</SelectContent>
</Select>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
{/* createdBy (hidden or read-only) */}
<FormField
control={form.control}
name="createdBy"
render={({ field }) => (
<input type="hidden" {...field} />
)}
/>
<SheetFooter className="gap-2 pt-2 sm:space-x-0">
<SheetClose asChild>
<Button type="button" variant="outline">
Cancel
</Button>
</SheetClose>
<Button disabled={isUpdatePending}>
{isUpdatePending && (
<Loader className="mr-2 size-4 animate-spin" aria-hidden="true" />
)}
Save
</Button>
</SheetFooter>
</form>
</Form>
</SheetContent>
</Sheet>
)
}
|