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
|
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";
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", "IN_REVIEW", "REJECTED"]),
// 협력업체명 검색
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),
// 정렬
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 updateTechVendorSchema = z.object({
vendorName: z.string().min(1, "업체명은 필수 입력사항입니다"),
vendorCode: z.string().optional(),
address: z.string().optional(),
country: z.string().optional(),
phone: z.string().optional(),
email: z.string().email("유효한 이메일 주소를 입력해주세요").optional(),
website: z.string().url("유효한 URL을 입력해주세요").optional(),
techVendorType: z.union([
z.array(z.enum(VENDOR_TYPES)).min(1, "최소 하나의 벤더 타입을 선택해주세요"),
z.string().min(1, "벤더 타입을 선택해주세요")
]).optional(),
status: z.enum(techVendors.status.enumValues).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),
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().url("유효하지 않은 URL입니다. https:// 혹은 http:// 로 시작하는 주소를 입력해주세요.").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(),
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(),
isPrimary: z.boolean().optional(),
});
// 아이템 생성 스키마
export const createTechVendorItemSchema = z.object({
vendorId: z.number(),
itemCode: z.string().max(100, "Max length 100"),
itemName: z.string().min(1, "Item name is required").max(255, "Max length 255"),
});
// 아이템 업데이트 스키마
export const updateTechVendorItemSchema = z.object({
itemName: z.string().optional(),
itemCode: z.string().max(100, "Max length 100"),
});
// 타입 내보내기
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 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>
|