summaryrefslogtreecommitdiff
path: root/lib/tech-vendors/validations.ts
blob: 618ad22e83f925a978a194ade358b85a6509c6c4 (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
import {
  createSearchParamsCache,
  parseAsArrayOf,
  parseAsInteger,
  parseAsString,
  parseAsStringEnum,
} from "nuqs/server"
import * as z from "zod"

import { getFiltersStateParser, getSortingStateParser } from "@/lib/parsers"
import { techVendors, TechVendor, TechVendorContact, TechVendorItemsView, VENDOR_TYPES } from "@/db/schema/techVendors";

// TechVendorPossibleItem 타입 정의
export interface TechVendorPossibleItem {
  id: number;
  vendorId: number;
  vendorCode: string | null;
  vendorEmail: string | null;
  itemCode: string;
  workType: string | null;
  shipTypes: string | null;
  itemList: string | null;
  subItemList: string | null;
  createdAt: Date;
  updatedAt: Date;
  // 조인된 정보
  techVendorType?: "조선" | "해양TOP" | "해양HULL";
}

export const searchParamsCache = createSearchParamsCache({
  // 공통 플래그
  flags: parseAsArrayOf(z.enum(["advancedTable", "floatingBar"])).withDefault(
    []
  ),

  // 페이징
  page: parseAsInteger.withDefault(1),
  perPage: parseAsInteger.withDefault(10),

  // 정렬 (techVendors 테이블에 맞춰 TechVendor 타입 지정)
  sort: getSortingStateParser<TechVendor>().withDefault([
    { id: "createdAt", desc: true }, // createdAt 기준 내림차순
  ]),

  // 고급 필터
  filters: getFiltersStateParser().withDefault([]),
  joinOperator: parseAsStringEnum(["and", "or"]).withDefault("and"),

  // 검색 키워드
  search: parseAsString.withDefault(""),

  // -----------------------------------------------------------------
  // 기술영업 협력업체에 특화된 검색 필드
  // -----------------------------------------------------------------
  // 상태 (ACTIVE, INACTIVE, BLACKLISTED 등) 중에서 선택
  status: parseAsStringEnum(["ACTIVE", "INACTIVE", "BLACKLISTED", "PENDING_REVIEW"]),

  // 협력업체명 검색
  vendorName: parseAsString.withDefault(""),

  // 국가 검색
  country: parseAsString.withDefault(""),

  // 예) 코드 검색
  vendorCode: parseAsString.withDefault(""),

  // 벤더 타입 필터링 (다중 선택 가능)
  vendorType: parseAsStringEnum(["ship", "top", "hull"]),

  // workTypes 필터링 (다중 선택 가능)
  workTypes: parseAsArrayOf(parseAsStringEnum([
    // 조선 workTypes
    "기장", "전장", "선실", "배관", "철의", "선체",
    // 해양TOP workTypes
    "TM", "TS", "TE", "TP",
    // 해양HULL workTypes
    "HA", "HE", "HH", "HM", "NC", "HO", "HP"
  ])).withDefault([]),

  // 필요하다면 이메일 검색 / 웹사이트 검색 등 추가 가능
  email: parseAsString.withDefault(""),
  website: parseAsString.withDefault(""),
});

export const searchParamsContactCache = createSearchParamsCache({
  // 공통 플래그
  flags: parseAsArrayOf(z.enum(["advancedTable", "floatingBar"])).withDefault(
    []
  ),

  // 페이징
  page: parseAsInteger.withDefault(1),
  perPage: parseAsInteger.withDefault(10),

  // 정렬
  sort: getSortingStateParser<TechVendorContact>().withDefault([
    { id: "createdAt", desc: true }, // createdAt 기준 내림차순
  ]),

  // 고급 필터
  filters: getFiltersStateParser().withDefault([]),
  joinOperator: parseAsStringEnum(["and", "or"]).withDefault("and"),

  // 검색 키워드
  search: parseAsString.withDefault(""),

  // 특정 필드 검색
  contactName: parseAsString.withDefault(""),
  contactPosition: parseAsString.withDefault(""),
  contactEmail: parseAsString.withDefault(""),
  contactPhone: parseAsString.withDefault(""),
});

export const searchParamsItemCache = createSearchParamsCache({
  // 공통 플래그
  flags: parseAsArrayOf(z.enum(["advancedTable", "floatingBar"])).withDefault(
    []
  ),

  // 페이징
  page: parseAsInteger.withDefault(1),
  perPage: parseAsInteger.withDefault(10),

  // 정렬
  sort: getSortingStateParser<TechVendorItemsView>().withDefault([
    { id: "createdAt", desc: true }, // createdAt 기준 내림차순
  ]),

  // 고급 필터
  filters: getFiltersStateParser().withDefault([]),
  joinOperator: parseAsStringEnum(["and", "or"]).withDefault("and"),

  // 검색 키워드
  search: parseAsString.withDefault(""),

  // 특정 필드 검색
  itemName: parseAsString.withDefault(""),
  itemCode: parseAsString.withDefault(""),
});

export const searchParamsPossibleItemsCache = createSearchParamsCache({
  // 공통 플래그
  flags: parseAsArrayOf(z.enum(["advancedTable", "floatingBar"])).withDefault(
    []
  ),

  // 페이징
  page: parseAsInteger.withDefault(1),
  perPage: parseAsInteger.withDefault(10),

  // 정렬
  sort: getSortingStateParser<TechVendorPossibleItem>().withDefault([
    { id: "createdAt", desc: true },
  ]),

  // 고급 필터
  filters: getFiltersStateParser().withDefault([]),
  joinOperator: parseAsStringEnum(["and", "or"]).withDefault("and"),

  // 검색 키워드
  search: parseAsString.withDefault(""),

  // 개별 필터 필드들
  itemCode: parseAsString.withDefault(""),
  workType: parseAsString.withDefault(""),
  itemList: parseAsString.withDefault(""),
  shipTypes: parseAsString.withDefault(""),
  subItemList: parseAsString.withDefault(""),
});

// 기술영업 벤더 기본 정보 업데이트 스키마
export const updateTechVendorSchema = z.object({
  vendorName: z.string().min(1, "업체명은 필수 입력사항입니다"),
  vendorCode: z.string().optional(),
  address: z.string().optional(),
  country: z.string().optional(),
  countryEng: z.string().optional(),
  countryFab: z.string().optional(),
  phone: z.string().optional(),
  email: z.string().email("유효한 이메일 주소를 입력해주세요").optional(),
  website: z.string().optional(),
  techVendorType: z.union([
    z.array(z.enum(VENDOR_TYPES)).min(1, "최소 하나의 벤더 타입을 선택해주세요"),
    z.string().min(1, "벤더 타입을 선택해주세요")
  ]).optional(),
  status: z.enum(techVendors.status.enumValues).optional(),
  // 에이전트 정보
  agentName: z.string().optional(),
  agentEmail: z.string().email("유효한 이메일 주소를 입력해주세요").optional().or(z.literal("")),
  agentPhone: z.string().optional(),
  // 대표자 정보
  representativeName: z.string().optional(),
  representativeEmail: z.string().email("유효한 이메일 주소를 입력해주세요").optional().or(z.literal("")),
  representativePhone: z.string().optional(),
  representativeBirth: z.string().optional(),
  userId: z.number().optional(),
  comment: z.string().optional(),
});

// 연락처 스키마
const contactSchema = z.object({
  id: z.number().optional(),
  contactName: z
    .string()
    .min(1, "Contact name is required")
    .max(255, "Max length 255"),
  contactPosition: z.string().max(100).optional(),
  contactEmail: z.string().email("Invalid email").max(255),
  contactCountry: z.string().max(100).optional(),
  contactPhone: z.string().max(50).optional(),
  isPrimary: z.boolean().default(false).optional()
});

// 기술영업 벤더 생성 스키마
export const createTechVendorSchema = z
  .object({
    vendorName: z
      .string()
      .min(1, "Vendor name is required")
      .max(255, "Max length 255"),

    email: z.string().email("Invalid email").max(255),
    // 나머지 optional
    vendorCode: z.string().max(100, "Max length 100").optional(),
    address: z.string().optional(),
    country: z.string()
      .min(1, "국가 선택은 필수입니다.")
      .max(100, "Max length 100"),
    phone: z.string().max(50, "Max length 50").optional(),
    website: z.string().max(255).optional(),

    files: z.any().optional(),
    status: z.enum(techVendors.status.enumValues).default("ACTIVE"),
    techVendorType: z.union([
    z.array(z.enum(VENDOR_TYPES)).min(1, "최소 하나의 벤더 타입을 선택해주세요"),
    z.string().min(1, "벤더 타입을 선택해주세요")
  ]).default(["조선"]),

    representativeName: z.union([z.string().max(255), z.literal("")]).optional(),
    representativeBirth: z.union([z.string().max(20), z.literal("")]).optional(),
    representativeEmail: z.union([z.string().email("Invalid email").max(255), z.literal("")]).optional(),
    representativePhone: z.union([z.string().max(50), z.literal("")]).optional(),
    taxId: z.string().min(1, { message: "사업자등록번호를 입력해주세요" }),

    items: z.string().min(1, { message: "공급품목을 입력해주세요" }),

    contacts: z
      .array(contactSchema)
      .nonempty("At least one contact is required.")
  })
  .superRefine((data, ctx) => {
    if (data.country === "KR") {
      // 1) 대표자 정보가 누락되면 각각 에러 발생
      if (!data.representativeName) {
        ctx.addIssue({
          code: "custom",
          path: ["representativeName"],
          message: "대표자 이름은 한국(KR) 업체일 경우 필수입니다.",
        })
      }
      if (!data.representativeBirth) {
        ctx.addIssue({
          code: "custom",
          path: ["representativeBirth"],
          message: "대표자 생년월일은 한국(KR) 업체일 경우 필수입니다.",
        })
      }
      if (!data.representativeEmail) {
        ctx.addIssue({
          code: "custom",
          path: ["representativeEmail"],
          message: "대표자 이메일은 한국(KR) 업체일 경우 필수입니다.",
        })
      }
      if (!data.representativePhone) {
        ctx.addIssue({
          code: "custom",
          path: ["representativePhone"],
          message: "대표자 전화번호는 한국(KR) 업체일 경우 필수입니다.",
        })
      }

    }
  });

// 연락처 생성 스키마
export const createTechVendorContactSchema = z.object({
  vendorId: z.number(),
  contactName: z.string()
    .min(1, "Contact name is required")
    .max(255, "Max length 255"),
  contactPosition: z.string().max(100, "Max length 100"),
  contactEmail: z.string().email(),
  contactPhone: z.string().max(50, "Max length 50").optional(),
  contactCountry: z.string().max(100, "Max length 100").optional(),
  isPrimary: z.boolean(),
});

// 연락처 업데이트 스키마
export const updateTechVendorContactSchema = z.object({
  contactName: z.string()
    .min(1, "Contact name is required")
    .max(255, "Max length 255"),
  contactPosition: z.string().max(100, "Max length 100").optional(),
  contactEmail: z.string().email().optional(),
  contactPhone: z.string().max(50, "Max length 50").optional(),
  contactCountry: z.string().max(100, "Max length 100").optional(),
  isPrimary: z.boolean().optional(),
});

// 아이템 생성 스키마
export const createTechVendorItemSchema = z.object({
  vendorId: z.number(),
  itemCode: z.string().max(100, "Max length 100"),
  itemList: z.string().min(1, "Item list is required").max(255, "Max length 255"),
});

// 아이템 업데이트 스키마
export const updateTechVendorItemSchema = z.object({
  itemList: z.string().optional(),
  itemCode: z.string().max(100, "Max length 100"),
});

// Possible Items 생성 스키마
export const createTechVendorPossibleItemSchema = z.object({
  vendorId: z.number(),
  itemCode: z.string().min(1, "아이템 코드는 필수입니다"),
  workType: z.string().optional(),
  shipTypes: z.string().optional(),
  itemList: z.string().optional(),
  subItemList: z.string().optional(),
});

// Possible Items 업데이트 스키마
export const updateTechVendorPossibleItemSchema = createTechVendorPossibleItemSchema.extend({
  id: z.number(),
});

export const searchParamsRfqHistoryCache = createSearchParamsCache({
  // 공통 플래그
  flags: parseAsArrayOf(z.enum(["advancedTable", "floatingBar"])).withDefault(
    []
  ),

  // 페이징
  page: parseAsInteger.withDefault(1),
  perPage: parseAsInteger.withDefault(10),

  // 정렬 (RFQ 히스토리에 맞춰)
  sort: getSortingStateParser<{
    id: number;
    rfqCode: string | null;
    description: string | null;
    projectCode: string | null;
    projectName: string | null;
    projectType: string | null; // 프로젝트 타입 추가
    status: string;
    totalAmount: string | null;
    currency: string | null;
    dueDate: Date | null;
    createdAt: Date;
    quotationCode: string | null;
    submittedAt: Date | null;
  }>().withDefault([
    { id: "createdAt", desc: true },
  ]),

  // 고급 필터
  filters: getFiltersStateParser().withDefault([]),
  joinOperator: parseAsStringEnum(["and", "or"]).withDefault("and"),

  // 검색 키워드
  search: parseAsString.withDefault(""),

  // RFQ 히스토리 특화 필드
  rfqCode: parseAsString.withDefault(""),
  description: parseAsString.withDefault(""),
  projectCode: parseAsString.withDefault(""),
  projectName: parseAsString.withDefault(""),
  projectType: parseAsStringEnum(["SHIP", "TOP", "HULL"]), // 프로젝트 타입 필터 추가
  status: parseAsStringEnum(["DRAFT", "PUBLISHED", "EVALUATION", "AWARDED"]),
});

// 타입 내보내기
export type GetTechVendorsSchema = Awaited<ReturnType<typeof searchParamsCache.parse>>
export type GetTechVendorContactsSchema = Awaited<ReturnType<typeof searchParamsContactCache.parse>>
export type GetTechVendorItemsSchema = Awaited<ReturnType<typeof searchParamsItemCache.parse>>
export type GetTechVendorPossibleItemsSchema = Awaited<ReturnType<typeof searchParamsPossibleItemsCache.parse>>
export type GetTechVendorRfqHistorySchema = Awaited<ReturnType<typeof searchParamsRfqHistoryCache.parse>>

export type UpdateTechVendorSchema = z.infer<typeof updateTechVendorSchema>
export type CreateTechVendorSchema = z.infer<typeof createTechVendorSchema>
export type CreateTechVendorContactSchema = z.infer<typeof createTechVendorContactSchema>
export type UpdateTechVendorContactSchema = z.infer<typeof updateTechVendorContactSchema>
export type CreateTechVendorItemSchema = z.infer<typeof createTechVendorItemSchema>
export type UpdateTechVendorItemSchema = z.infer<typeof updateTechVendorItemSchema>
export type CreateTechVendorPossibleItemSchema = z.infer<typeof createTechVendorPossibleItemSchema>
export type UpdateTechVendorPossibleItemSchema = z.infer<typeof updateTechVendorPossibleItemSchema>