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
|
import { tasks, type Task } from "@/db/schema/tasks";
import {
createSearchParamsCache,
parseAsArrayOf,
parseAsInteger,
parseAsString,
parseAsStringEnum,
} from "nuqs/server"
import * as z from "zod"
import { getFiltersStateParser, getSortingStateParser } from "@/lib/parsers"
import { Vendor, VendorContact, VendorItemsView, vendors } from "@/db/schema/vendors";
import { rfqs } from "@/db/schema/rfq"
export const searchParamsCache = createSearchParamsCache({
// 공통 플래그
flags: parseAsArrayOf(z.enum(["advancedTable", "floatingBar"])).withDefault(
[]
),
// 페이징
page: parseAsInteger.withDefault(1),
perPage: parseAsInteger.withDefault(10),
// 정렬 (vendors 테이블에 맞춰 Vendor 타입 지정)
sort: getSortingStateParser<Vendor>().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"]),
// 벤더명 검색
vendorName: parseAsString.withDefault(""),
// 국가 검색
country: parseAsString.withDefault(""),
// 예) 코드 검색
vendorCode: parseAsString.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),
// 정렬 (vendors 테이블에 맞춰 Vendor 타입 지정)
sort: getSortingStateParser<VendorContact>().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),
// 정렬 (vendors 테이블에 맞춰 Vendor 타입 지정)
sort: getSortingStateParser<VendorItemsView>().withDefault([
{ id: "createdAt", desc: true }, // createdAt 기준 내림차순
]),
// 고급 필터
filters: getFiltersStateParser().withDefault([]),
joinOperator: parseAsStringEnum(["and", "or"]).withDefault("and"),
// 검색 키워드
search: parseAsString.withDefault(""),
itemName: parseAsString.withDefault(""),
itemCode: parseAsString.withDefault(""),
description: parseAsString.withDefault(""),
});
export const updateVendorSchema = z.object({
vendorName: z.string().min(1, "Vendor name is required").max(255, "Max length 255").optional(),
vendorCode: z.string().max(100, "Max length 100").optional(),
address: z.string().optional(),
country: z.string().max(100, "Max length 100").optional(),
phone: z.string().max(50, "Max length 50").optional(),
email: z.string().email("Invalid email").max(255).optional(),
website: z.string().url("Invalid URL").max(255).optional(),
// status는 특정 값만 허용하도록 enum 사용 예시
// 필요 시 'SUSPENDED', 'BLACKLISTED' 등 추가하거나 제거 가능
status: z.enum(vendors.status.enumValues)
.optional()
.default("ACTIVE"),
});
const contactSchema = z.object({
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),
contactPhone: z.string().max(50).optional(),
isPrimary: z.boolean().default(false).optional()})
const vendorStatusEnum = z.enum(vendors.status.enumValues)
// CREATE 시: 일부 필드는 필수, 일부는 optional
export const createVendorSchema = z
.object({
vendorName: z
.string()
.min(1, "Vendor name is required")
.max(255, "Max length 255"),
email: z.string().email("Invalid email").max(255),
taxId: z.string().max(100, "Max length 100"),
// 나머지 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().url("Invalid URL").max(255).optional(),
creditRatingAttachment: z.any().optional(), // 신용평가 첨부
cashFlowRatingAttachment: z.any().optional(), // 현금흐름 첨부
attachedFiles: z.any()
.refine(
val => {
// Validate that files exist and there's at least one file
return val &&
(Array.isArray(val) ? val.length > 0 :
val instanceof FileList ? val.length > 0 :
val && typeof val === 'object' && 'length' in val && val.length > 0);
},
{ message: "첨부 파일은 필수입니다." }
),
status: vendorStatusEnum.default("PENDING_REVIEW"),
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(),
corporateRegistrationNumber: z.union([z.string().max(100), z.literal("")]).optional(),
creditAgency: z.string().max(50).optional(),
creditRating: z.string().max(50).optional(),
cashFlowRating: z.string().max(50).optional(),
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) 업체일 경우 필수입니다.",
})
}
if (!data.corporateRegistrationNumber) {
ctx.addIssue({
code: "custom",
path: ["corporateRegistrationNumber"],
message: "법인등록번호는 한국(KR) 업체일 경우 필수입니다.",
})
}
// 2) 신용/현금흐름 등급도 필수라면
if (!data.creditAgency) {
ctx.addIssue({
code: "custom",
path: ["creditAgency"],
message: "신용평가사 선택은 한국(KR) 업체일 경우 필수입니다.",
})
}
if (!data.creditRating) {
ctx.addIssue({
code: "custom",
path: ["creditRating"],
message: "신용평가등급은 한국(KR) 업체일 경우 필수입니다.",
})
}
if (!data.cashFlowRating) {
ctx.addIssue({
code: "custom",
path: ["cashFlowRating"],
message: "현금흐름등급은 한국(KR) 업체일 경우 필수입니다.",
})
}
}
}
)
export const createVendorContactSchema = 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(),
isPrimary: z.boolean(),
});
export const updateVendorContactSchema = 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(),
isPrimary: z.boolean().optional(),
});
export const createVendorItemSchema = z.object({
vendorId: z.number(),
itemCode: z.string().max(100, "Max length 100"),
});
export const updateVendorItemSchema = z.object({
itemName: z.string().optional(),
itemCode: z.string().max(100, "Max length 100"),
description: z.string().optional()
});
export const searchParamsRfqHistoryCache = createSearchParamsCache({
// 공통 플래그
flags: parseAsArrayOf(z.enum(["advancedTable", "floatingBar"])).withDefault(
[]
),
// 페이징
page: parseAsInteger.withDefault(1),
perPage: parseAsInteger.withDefault(10),
// 정렬
sort: getSortingStateParser<typeof rfqs.$inferSelect>().withDefault([
{ id: "createdAt", desc: true },
]),
// 고급 필터
filters: getFiltersStateParser().withDefault([]),
joinOperator: parseAsStringEnum(["and", "or"]).withDefault("and"),
// 검색 키워드
search: parseAsString.withDefault(""),
// RFQ 특화 필터
rfqCode: parseAsString.withDefault(""),
projectCode: parseAsString.withDefault(""),
projectName: parseAsString.withDefault(""),
status: parseAsStringEnum(["DRAFT", "IN_PROGRESS", "COMPLETED", "CANCELLED"]),
vendorStatus: parseAsStringEnum(["INVITED", "ACCEPTED", "DECLINED", "SUBMITTED", "AWARDED", "REJECTED"]),
dueDate: parseAsString.withDefault(""),
});
export type GetVendorsSchema = Awaited<ReturnType<typeof searchParamsCache.parse>>
export type GetVendorContactsSchema = Awaited<ReturnType<typeof searchParamsContactCache.parse>>
export type GetVendorItemsSchema = Awaited<ReturnType<typeof searchParamsItemCache.parse>>
export type UpdateVendorSchema = z.infer<typeof updateVendorSchema>
export type CreateVendorSchema = z.infer<typeof createVendorSchema>
export type CreateVendorContactSchema = z.infer<typeof createVendorContactSchema>
export type UpdateVendorContactSchema = z.infer<typeof updateVendorContactSchema>
export type CreateVendorItemSchema = z.infer<typeof createVendorItemSchema>
export type UpdateVendorItemSchema = z.infer<typeof updateVendorItemSchema>
export type GetRfqHistorySchema = Awaited<ReturnType<typeof searchParamsRfqHistoryCache.parse>>
|