summaryrefslogtreecommitdiff
path: root/lib/tech-vendors/table/update-vendor-sheet.tsx
blob: 3cbb2ba33c8e7be1bca6ea0ae4ce9b8016568bee (plain)
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
"use client"

import * as React from "react"
import { zodResolver } from "@hookform/resolvers/zod"
import { useForm } from "react-hook-form"
import { 
  Loader, 
  Activity, 
  AlertCircle, 
  AlertTriangle, 
  Circle as CircleIcon
} from "lucide-react"
import { toast } from "sonner"

import { Button } from "@/components/ui/button"
import {
  Form,
  FormControl,
  FormField,
  FormItem,
  FormLabel,
  FormMessage
} from "@/components/ui/form"
import { Input } from "@/components/ui/input"
import {
  Sheet,
  SheetClose,
  SheetContent,
  SheetDescription,
  SheetFooter,
  SheetHeader,
  SheetTitle,
} from "@/components/ui/sheet"
import {
  Select,
  SelectContent,
  SelectGroup,
  SelectItem,
  SelectTrigger,
  SelectValue,
} from "@/components/ui/select"
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
import { useSession } from "next-auth/react"

import { TechVendor, techVendors } from "@/db/schema/techVendors"
import { updateTechVendorSchema, type UpdateTechVendorSchema } from "../validations"
import { modifyTechVendor } from "../service"
import { normalizeEmailFields } from "../utils"

interface UpdateVendorSheetProps
  extends React.ComponentPropsWithRef<typeof Sheet> {
  vendor: TechVendor | null
}
type StatusType = (typeof techVendors.status.enumValues)[number];

type StatusConfig = {
  Icon: React.ElementType;
  className: string;
  label: string;
};

// 상태 표시 유틸리티 함수
const getStatusConfig = (status: StatusType): StatusConfig => {
  switch(status) {
    case "ACTIVE":
      return { 
        Icon: Activity,
        className: "text-emerald-600", 
        label: "활성 상태"
      };
    case "INACTIVE":
      return { 
        Icon: AlertCircle,
        className: "text-gray-600", 
        label: "비활성 상태"
      };
    case "BLACKLISTED":
      return { 
        Icon: AlertTriangle,
        className: "text-slate-800", 
        label: "거래 금지"
      };
    case "QUOTE_COMPARISON":
      return { 
        Icon: AlertTriangle,
        className: "text-slate-800", 
        label: "비교 견적"
      };
    case "PENDING_INVITE":
      return { 
        Icon: AlertTriangle,
        className: "text-slate-800", 
        label: "초대 대기"
      };
    case "INVITED":
      return { 
        Icon: AlertTriangle,
        className: "text-slate-800", 
        label: "초대 완료"
      };
    default:
      return { 
        Icon: CircleIcon,
        className: "text-gray-600", 
        label: status
      };
  }
};

// 폼 컴포넌트
export function UpdateVendorSheet({ vendor, ...props }: UpdateVendorSheetProps) {
  const [isPending, startTransition] = React.useTransition()
  const { data: session } = useSession()
  
  // 폼 정의 - UpdateVendorSchema 타입을 직접 사용
  const form = useForm<UpdateTechVendorSchema>({
    resolver: zodResolver(updateTechVendorSchema),
    defaultValues: {
      // 업체 기본 정보
      vendorName: vendor?.vendorName ?? "",
      vendorCode: vendor?.vendorCode ?? "",
      address: vendor?.address ?? "",
      country: vendor?.country ?? "",
      countryEng: vendor?.countryEng ?? "",
      countryFab: vendor?.countryFab ?? "",
      phone: vendor?.phone ?? "",
      email: vendor?.email ?? "",
      website: vendor?.website ?? "",
      techVendorType: vendor?.techVendorType ? vendor.techVendorType.split(',').map(s => s.trim()).filter(Boolean) as ("조선" | "해양TOP" | "해양HULL")[] : [],
      status: vendor?.status ?? "ACTIVE",
      // 에이전트 정보
      agentName: vendor?.agentName ?? "",
      agentEmail: vendor?.agentEmail ?? "",
      agentPhone: vendor?.agentPhone ?? "",
      // 대표자 정보
      representativeName: vendor?.representativeName ?? "",
      representativeEmail: vendor?.representativeEmail ?? "",
      representativePhone: vendor?.representativePhone ?? "",
      representativeBirth: vendor?.representativeBirth ?? "",
    },
  })

  React.useEffect(() => {
    if (vendor) {
      form.reset({
        vendorName: vendor?.vendorName ?? "",
        vendorCode: vendor?.vendorCode ?? "",
        address: vendor?.address ?? "",
        country: vendor?.country ?? "",
        countryEng: vendor?.countryEng ?? "",
        countryFab: vendor?.countryFab ?? "",
        phone: vendor?.phone ?? "",
        email: vendor?.email ?? "",
        website: vendor?.website ?? "",
        techVendorType: vendor?.techVendorType ? vendor.techVendorType.split(',').map(s => s.trim()).filter(Boolean) as ("조선" | "해양TOP" | "해양HULL")[] : [],
        status: vendor?.status ?? "ACTIVE",
        // 에이전트 정보
        agentName: vendor?.agentName ?? "",
        agentEmail: vendor?.agentEmail ?? "",
        agentPhone: vendor?.agentPhone ?? "",
        // 대표자 정보
        representativeName: vendor?.representativeName ?? "",
        representativeEmail: vendor?.representativeEmail ?? "",
        representativePhone: vendor?.representativePhone ?? "",
        representativeBirth: vendor?.representativeBirth ?? "",
      });
    }
  }, [vendor, form]);

  // 제출 핸들러
  async function onSubmit(data: UpdateTechVendorSchema) {
    if (!vendor) return
    
    if (!session?.user?.id) {
      toast.error("사용자 인증 정보를 찾을 수 없습니다.")
      return
    }
    
    startTransition(async () => {
      try {
        // Add status change comment if status has changed
        const oldStatus = vendor.status ?? "ACTIVE" // Default to ACTIVE if undefined
        const newStatus = data.status ?? "ACTIVE" // Default to ACTIVE if undefined
        
        const statusComment = 
          oldStatus !== newStatus 
            ? `상태 변경: ${getStatusConfig(oldStatus).label} → ${getStatusConfig(newStatus).label}`
            : ""  // Empty string instead of undefined
        
        // 이메일 필드들을 소문자로 변환
        const normalizedEmails = normalizeEmailFields({
          email: data.email,
          agentEmail: data.agentEmail,
          representativeEmail: data.representativeEmail,
        })

        // 업체 정보 업데이트 - userId와 상태 변경 코멘트 추가
        const { error } = await modifyTechVendor({
          id: String(vendor.id),
          userId: Number(session.user.id), // Add user ID from session
          comment: statusComment, // Add comment for status changes
          ...data,  // 모든 데이터 전달 - 서비스 함수에서 필요한 필드만 처리
          email: normalizedEmails.email || undefined,
          agentEmail: normalizedEmails.agentEmail || undefined,
          representativeEmail: normalizedEmails.representativeEmail || undefined,
          techVendorType: Array.isArray(data.techVendorType) ? data.techVendorType.join(',') : undefined,
        })
        
        if (error) throw new Error(error)
        
        toast.success("업체 정보가 업데이트되었습니다!")
        form.reset()
        props.onOpenChange?.(false)
      } catch (err: unknown) {
        toast.error(String(err))
      }
    })
  }

  return (
    <Sheet {...props}>
      <SheetContent className="flex flex-col gap-6 sm:max-w-xl overflow-y-auto">
        <SheetHeader className="text-left">
          <SheetTitle>업체 정보 수정</SheetTitle>
          <SheetDescription>
            업체 세부 정보를 수정하고 변경 사항을 저장하세요
          </SheetDescription>
        </SheetHeader>
        
        <Form {...form}>
          <form onSubmit={form.handleSubmit(onSubmit)} className="space-y-6">
            
            {/* 업체 기본 정보 섹션 */}
            <Card>
              <CardHeader className="pb-3">
                <CardTitle className="text-base">
                  업체 기본 정보
                </CardTitle>
                <CardDescription>
                  업체의 기본 정보를 관리합니다
                </CardDescription>
              </CardHeader>
              <CardContent className="space-y-4">
                <div className="grid grid-cols-1 md:grid-cols-2 gap-4">
                  {/* 업체명 */}
                  <FormField
                    control={form.control}
                    name="vendorName"
                    render={({ field }) => (
                      <FormItem>
                        <FormLabel>업체명</FormLabel>
                        <FormControl>
                          <Input placeholder="업체명 입력" {...field} />
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    )}
                  />

                  {/* 업체 코드 */}
                  <FormField
                    control={form.control}
                    name="vendorCode"
                    render={({ field }) => (
                      <FormItem>
                        <FormLabel>업체 코드</FormLabel>
                        <FormControl>
                          <Input placeholder="예: ABC123" {...field} />
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    )}
                  />

                  {/* 이메일 */}
                  <FormField
                    control={form.control}
                    name="email"
                    render={({ field }) => (
                      <FormItem>
                                               <FormLabel>이메일</FormLabel>
                        <FormControl>
                          <Input placeholder="예: info@company.com" {...field} />
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    )}
                  />

                  {/* 전화번호 */}
                  <FormField
                    control={form.control}
                    name="phone"
                    render={({ field }) => (
                      <FormItem>
                                               <FormLabel>전화번호</FormLabel>
                        <FormControl>
                          <Input placeholder="예: 010-1234-5678" {...field} />
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    )}
                  />

                  {/* 웹사이트 */}
                  <FormField
                    control={form.control}
                    name="website"
                    render={({ field }) => (
                      <FormItem>
                                               <FormLabel>웹사이트</FormLabel>
                        <FormControl>
                          <Input placeholder="예: https://www.company.com" {...field} />
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    )}
                  />
                </div>

                {/* 주소 */}
                <FormField
                  control={form.control}
                  name="address"
                  render={({ field }) => (
                    <FormItem>
                                           <FormLabel>주소</FormLabel>
                      <FormControl>
                        <Input placeholder="주소 입력" {...field} />
                      </FormControl>
                      <FormMessage />
                    </FormItem>
                  )}
                />

                <div className="grid grid-cols-1 md:grid-cols-3 gap-4">
                  {/* 국가 */}
                  <FormField
                    control={form.control}
                    name="country"
                    render={({ field }) => (
                      <FormItem>
                        <FormLabel>국가</FormLabel>
                        <FormControl>
                          <Input placeholder="예: 대한민국" {...field} />
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    )}
                  />

                  {/* 국가(영문) */}
                  <FormField
                    control={form.control}
                    name="countryEng"
                    render={({ field }) => (
                      <FormItem>
                        <FormLabel>국가(영문)</FormLabel>
                        <FormControl>
                          <Input placeholder="예: South Korea" {...field} />
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    )}
                  />

                  {/* 제조국가 */}
                  <FormField
                    control={form.control}
                    name="countryFab"
                    render={({ field }) => (
                      <FormItem>
                        <FormLabel>제조국가</FormLabel>
                        <FormControl>
                          <Input placeholder="제조국가 입력" {...field} />
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    )}
                  />
                </div>

                {/* 벤더 타입 */}
                <FormField
                  control={form.control}
                  name="techVendorType"
                  render={({ field }) => (
                    <FormItem>
                                           <FormLabel>벤더 타입 *</FormLabel>
                      <div className="flex gap-6">
                        {["조선", "해양TOP", "해양HULL"].map((type) => (
                          <div key={type} className="flex items-center space-x-2">
                            <input
                              type="checkbox"
                              id={`update-${type}`}
                              checked={field.value?.includes(type as "조선" | "해양TOP" | "해양HULL")}
                              onChange={(e) => {
                                const currentValue = Array.isArray(field.value) ? field.value : [];
                                if (e.target.checked) {
                                  field.onChange([...currentValue, type]);
                                } else {
                                  field.onChange(currentValue.filter((v: string) => v !== type));
                                }
                              }}
                              className="w-4 h-4"
                            />
                            <label htmlFor={`update-${type}`} className="text-sm font-medium cursor-pointer">
                              {type}
                            </label>
                          </div>
                        ))}
                      </div>
                      <FormMessage />
                    </FormItem>
                  )}
                />
              </CardContent>
            </Card>

            {/* 승인 상태 섹션 */}
            <Card>
                             <CardHeader className="pb-3">
                 <CardTitle className="text-base">
                   승인 상태
                 </CardTitle>
                <CardDescription>
                  업체의 승인 상태를 관리합니다
                </CardDescription>
              </CardHeader>
              <CardContent>
                <FormField
                  control={form.control}
                  name="status"
                  render={({ field }) => {
                    const selectedConfig = getStatusConfig(field.value ?? "ACTIVE");
                    const SelectedIcon = selectedConfig?.Icon || CircleIcon;

                    return (
                      <FormItem>
                        <FormLabel>업체 승인 상태</FormLabel>
                        <FormControl>
                          <Select
                            value={field.value || ""}
                            onValueChange={field.onChange}
                          >
                            <SelectTrigger className="w-full">
                              <SelectValue>
                                {field.value && (
                                  <div className="flex items-center">
                                    <SelectedIcon className={`mr-2 h-4 w-4 ${selectedConfig.className}`} />
                                    <span>{selectedConfig.label}</span>
                                  </div>
                                )}
                              </SelectValue>
                            </SelectTrigger>
                            <SelectContent>
                              <SelectGroup>
                                {techVendors.status.enumValues.map((status) => {
                                  const config = getStatusConfig(status);
                                  const StatusIcon = config.Icon;
                                  return (
                                    <SelectItem key={status} value={status}>
                                      <div className="flex items-center">
                                        <StatusIcon className={`mr-2 h-4 w-4 ${config.className}`} />
                                        <span>{config.label}</span>
                                      </div>
                                    </SelectItem>
                                  );
                                })}
                              </SelectGroup>
                            </SelectContent>
                          </Select>
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    );
                  }}
                />
              </CardContent>
            </Card>

            {/* 에이전트 정보 섹션 */}
            <Card>
                             <CardHeader className="pb-3">
                 <CardTitle className="text-base">
                   에이전트 정보
                 </CardTitle>
                <CardDescription>
                  해당 업체의 에이전트 정보를 관리합니다
                </CardDescription>
              </CardHeader>
              <CardContent>
                <div className="grid grid-cols-1 md:grid-cols-2 gap-4">
                  {/* 에이전트명 */}
                  <FormField
                    control={form.control}
                    name="agentName"
                    render={({ field }) => (
                      <FormItem>
                        <FormLabel>에이전트명</FormLabel>
                        <FormControl>
                          <Input placeholder="에이전트명 입력" {...field} />
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    )}
                  />

                  {/* 에이전트 전화번호 */}
                  <FormField
                    control={form.control}
                    name="agentPhone"
                    render={({ field }) => (
                      <FormItem>
                                                 <FormLabel>에이전트 전화번호</FormLabel>
                        <FormControl>
                          <Input placeholder="에이전트 전화번호 입력" {...field} />
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    )}
                  />

                  {/* 에이전트 이메일 */}
                  <FormField
                    control={form.control}
                    name="agentEmail"
                    render={({ field }) => (
                      <FormItem className="md:col-span-2">
                                                 <FormLabel>에이전트 이메일</FormLabel>
                        <FormControl>
                          <Input type="email" placeholder="에이전트 이메일 입력" {...field} />
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    )}
                  />
                </div>
              </CardContent>
            </Card>

            {/* 대표자 정보 섹션 */}
            <Card>
                             <CardHeader className="pb-3">
                 <CardTitle className="text-base">
                   대표자 정보
                 </CardTitle>
                <CardDescription>
                  업체 대표자의 정보를 관리합니다
                </CardDescription>
              </CardHeader>
              <CardContent>
                <div className="grid grid-cols-1 md:grid-cols-2 gap-4">
                  {/* 대표자명 */}
                  <FormField
                    control={form.control}
                    name="representativeName"
                    render={({ field }) => (
                      <FormItem>
                        <FormLabel>대표자명</FormLabel>
                        <FormControl>
                          <Input placeholder="대표자명 입력" {...field} />
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    )}
                  />

                  {/* 대표자 생년월일 */}
                  <FormField
                    control={form.control}
                    name="representativeBirth"
                    render={({ field }) => (
                      <FormItem>
                        <FormLabel>대표자 생년월일</FormLabel>
                        <FormControl>
                          <Input placeholder="YYYY-MM-DD" {...field} />
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    )}
                  />

                  {/* 대표자 전화번호 */}
                  <FormField
                    control={form.control}
                    name="representativePhone"
                    render={({ field }) => (
                      <FormItem>
                                                 <FormLabel>대표자 전화번호</FormLabel>
                        <FormControl>
                          <Input placeholder="대표자 전화번호 입력" {...field} />
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    )}
                  />

                  {/* 대표자 이메일 */}
                  <FormField
                    control={form.control}
                    name="representativeEmail"
                    render={({ field }) => (
                      <FormItem>
                                                 <FormLabel>대표자 이메일</FormLabel>
                        <FormControl>
                          <Input type="email" placeholder="대표자 이메일 입력" {...field} />
                        </FormControl>
                        <FormMessage />
                      </FormItem>
                    )}
                  />
                </div>
              </CardContent>
            </Card>

            <SheetFooter className="gap-2 pt-2 sm:space-x-0">
              <SheetClose asChild>
                <Button type="button" variant="outline">
                  취소
                </Button>
              </SheetClose>
              <Button disabled={isPending}>
                {isPending && (
                  <Loader className="mr-2 h-4 w-4 animate-spin" aria-hidden="true" />
                )}
                저장
              </Button>
            </SheetFooter>
          </form>
        </Form>
      </SheetContent>
    </Sheet>
  )
}