forked from chimame/conform-to-valibot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoercion.ts
269 lines (249 loc) · 7.59 KB
/
coercion.ts
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
import {
unknown as valibotUnknown,
pipe,
pipeAsync,
transform as vTransform,
type SchemaWithPipe,
type PipeItem,
type BaseIssue,
type GenericSchema,
type GenericSchemaAsync,
type SchemaWithPipeAsync,
} from "valibot";
/**
* Helpers for coercing string value
* Modify the value only if it's a string, otherwise return the value as-is
*/
export function coerceString(
value: unknown,
transform?: (text: string) => unknown,
) {
if (typeof value !== "string") {
return value;
}
if (value === "") {
return undefined;
}
if (typeof transform !== "function") {
return value;
}
try {
return transform(value);
} catch {
return undefined;
}
}
/**
* Reconstruct the provided schema with additional preprocessing steps
* This coerce empty values to undefined and transform strings to the correct type
* @param type The schema to be coerced
* @param transform The transformation function
* @returns The coerced schema
*/
function coerce<T extends GenericSchema | GenericSchemaAsync>(
type: T,
transform?: (text: string) => unknown,
) {
// `expects` is required to generate error messages for `TupleSchema`, so it is passed to `UnkonwSchema` for coercion.
const unknown = { ...valibotUnknown(), expects: type.expects };
const transformFunction = (output: unknown) =>
type.type === "blob" ? coerceFile(output) : coerceString(output, transform);
if (type.async) {
return pipeAsync(unknown, vTransform(transformFunction), type);
}
return pipe(unknown, vTransform(transformFunction), type);
}
/**
* Helpers for coercing file
* Modify the value only if it's a file, otherwise return the value as-is
*/
export function coerceFile(file: unknown) {
if (
typeof File !== "undefined" &&
file instanceof File &&
file.name === "" &&
file.size === 0
) {
return undefined;
}
return file;
}
/**
* If a pipe is assigned by referencing the original schema, convert it to assign the original pipe to the coerced schema.
* @param originalSchema The original schema
* @param coercionSchema The schema to be coerced
* @returns The coerced schema with the original pipe
*/
function generateReturnSchema<
T extends GenericSchema | GenericSchemaAsync,
E extends
| GenericSchema
| GenericSchemaAsync
| SchemaWithPipe<
[GenericSchema, ...PipeItem<unknown, unknown, BaseIssue<unknown>>[]]
>
| SchemaWithPipeAsync<
[
GenericSchema | GenericSchemaAsync,
...PipeItem<unknown, unknown, BaseIssue<unknown>>[],
]
>,
>(
originalSchema:
| T
| (T extends GenericSchema
? SchemaWithPipe<
[T, ...PipeItem<unknown, unknown, BaseIssue<unknown>>[]]
>
: SchemaWithPipeAsync<
[T, ...PipeItem<unknown, unknown, BaseIssue<unknown>>[]]
>),
coercionSchema: E,
) {
if ("pipe" in originalSchema) {
if (originalSchema.async && coercionSchema.async) {
return pipeAsync(
coercionSchema,
// @ts-expect-error
...originalSchema.pipe.slice(1),
);
}
return pipe(
coercionSchema,
// @ts-expect-error
...originalSchema.pipe.slice(1),
);
}
return coercionSchema;
}
/**
* Reconstruct the provided schema with additional preprocessing steps
* This coerce empty values to undefined and transform strings to the correct type
*/
export function enableTypeCoercion<
T extends GenericSchema | GenericSchemaAsync,
>(
type:
| T
| (T extends GenericSchema
? SchemaWithPipe<
[T, ...PipeItem<unknown, unknown, BaseIssue<unknown>>[]]
>
: SchemaWithPipeAsync<
[T, ...PipeItem<unknown, unknown, BaseIssue<unknown>>[]]
>),
):
| ReturnType<typeof coerce>
| ReturnType<typeof generateReturnSchema>
| (T extends GenericSchema
? SchemaWithPipe<[T, ...PipeItem<unknown, unknown, BaseIssue<unknown>>[]]>
: SchemaWithPipeAsync<
[T, ...PipeItem<unknown, unknown, BaseIssue<unknown>>[]]
>) {
const originalSchema = "pipe" in type ? type.pipe[0] : type;
if (
type.type === "string" ||
type.type === "literal" ||
type.type === "enum" ||
type.type === "undefined"
) {
return coerce(type);
} else if (type.type === "number") {
return coerce(type, Number);
} else if (type.type === "boolean") {
return coerce(type, (text) => (text === "on" ? true : text));
} else if (type.type === "date") {
return coerce(type, (timestamp) => {
const date = new Date(timestamp);
// z.date() does not expose a quick way to set invalid_date error
// This gets around it by returning the original string if it's invalid
// See https://github.com/colinhacks/zod/issues/1526
if (Number.isNaN(date.getTime())) {
return timestamp;
}
return date;
});
} else if (type.type === "bigint") {
return coerce(type, BigInt);
} else if (type.type === "blob") {
return coerce(type);
} else if (type.type === "array") {
const arraySchema = {
...originalSchema,
// @ts-expect-error
item: enableTypeCoercion(originalSchema.item),
};
return generateReturnSchema(type, arraySchema);
} else if (
type.type === "optional" ||
type.type === "nullish" ||
type.type === "nullable" ||
type.type === "non_optional" ||
type.type === "non_nullish" ||
type.type === "non_nullable"
) {
// @ts-expect-error
const wrapSchema = enableTypeCoercion(type.wrapped);
if ("pipe" in wrapSchema) {
// `expects` is required to generate error messages for `TupleSchema`, so it is passed to `UnkonwSchema` for coercion.
const unknown = { ...valibotUnknown(), expects: type.expects };
if (type.async) {
return pipeAsync(unknown, wrapSchema.pipe[1], type);
}
return pipe(unknown, wrapSchema.pipe[1], type);
}
const wrappedSchema = {
...originalSchema,
// @ts-expect-error
wrapped: enableTypeCoercion(originalSchema.wrapped),
};
return generateReturnSchema(type, wrappedSchema);
} else if (type.type === "union" || type.type === "intersect") {
const unionSchema = {
...originalSchema,
// @ts-expect-error
options: originalSchema.options.map((option) =>
enableTypeCoercion(option as GenericSchema),
),
};
return generateReturnSchema(type, unionSchema);
} else if (type.type === "variant") {
const variantSchema = {
...originalSchema,
// @ts-expect-error
options: originalSchema.options.map((option) =>
enableTypeCoercion(option as GenericSchema),
),
};
return generateReturnSchema(type, variantSchema);
} else if (type.type === "tuple") {
const tupleSchema = {
...originalSchema,
// @ts-expect-error
items: originalSchema.items.map((option) => enableTypeCoercion(option)),
};
return generateReturnSchema(type, tupleSchema);
} else if (type.type === "tuple_with_rest") {
const tupleWithRestSchema = {
...originalSchema,
// @ts-expect-error
items: originalSchema.items.map((option) => enableTypeCoercion(option)),
// @ts-expect-error
rest: enableTypeCoercion(originalSchema.rest),
};
return generateReturnSchema(type, tupleWithRestSchema);
} else if (type.type === "object") {
const objectSchema = {
...originalSchema,
entries: Object.fromEntries(
// @ts-expect-error
Object.entries(originalSchema.entries).map(([key, def]) => [
key,
enableTypeCoercion(def as GenericSchema),
]),
),
};
return generateReturnSchema(type, objectSchema);
}
return coerce(type);
}