-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcoercion.ts
369 lines (341 loc) · 9.47 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
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
import {
type BaseIssue,
type GenericSchema,
type GenericSchemaAsync,
type PipeItem,
type SchemaWithPipe,
type SchemaWithPipeAsync,
type TransformAction,
pipe,
pipeAsync,
transform as vTransform,
unknown as valibotUnknown,
} 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 transform action and 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 transformAction = vTransform((output: unknown) =>
type.type === "blob" || type.type === "file"
? coerceFile(output)
: coerceString(output, transform),
);
const schema = type.async
? pipeAsync(unknown, transformAction, type)
: pipe(unknown, transformAction, type);
return { transformAction, schema };
}
/**
* Helpers for coercing array value
* Modify the value only if it's an array, otherwise return the value as-is
*/
function coerceArray<T extends GenericSchema | GenericSchemaAsync>(type: T) {
// `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): unknown => {
if (Array.isArray(output)) {
return output;
}
if (
typeof output === "undefined" ||
typeof coerceFile(coerceString(output)) === "undefined"
) {
return [];
}
return [output];
};
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
*/
function coerceFile(file: unknown) {
if (
typeof File !== "undefined" &&
file instanceof File &&
file.name === "" &&
file.size === 0
) {
return undefined;
}
return file;
}
/**
* Generate a wrapped schema with coercion
* @param type The schema to be coerced
* @param rewrap Whether the result schema should be rewrapped with the `type` schema.
* See <https://github.com/chimame/conform-to-valibot/issues/53> for cases that need rewrapping.
* @returns The coerced schema
*/
function generateWrappedSchema<T extends GenericSchema | GenericSchemaAsync>(
type: T,
rewrap = false,
) {
const { transformAction, schema: wrapSchema } = enableTypeCoercion(
// @ts-expect-error
type.wrapped,
);
if (transformAction) {
// `expects` is required to generate error messages for `TupleSchema`, so it is passed to `UnkonwSchema` for coercion.
const unknown = { ...valibotUnknown(), expects: type.expects };
const schema = type.async
? pipeAsync(unknown, transformAction, type)
: pipe(unknown, transformAction, type);
if (rewrap) {
return {
transformAction: undefined,
schema: type.reference(schema),
};
}
return { transformAction, schema };
}
const wrappedSchema = {
...type,
wrapped: wrapSchema,
};
return {
transformAction: undefined,
schema: wrappedSchema,
};
}
/**
* 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,
): {
transformAction: TransformAction<unknown, unknown> | undefined;
// If we use just `T` for type of `schema`, `enabltTypeCoercion<GenericSchema<string, string>>` will return
// `GenericSchema<string, string>`. However, we want it to return `GenericSchema<unknown, string>`.
schema: T extends GenericSchema<unknown, infer Output, infer Issue>
? GenericSchema<unknown, Output, Issue>
: T extends GenericSchemaAsync<unknown, infer OutputAsync, infer IssueAsync>
? GenericSchemaAsync<unknown, OutputAsync, IssueAsync>
: never;
};
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>>[]]
>),
): {
transformAction: TransformAction<unknown, unknown> | undefined;
schema: GenericSchema | GenericSchemaAsync;
} {
if ("pipe" in type) {
const { transformAction, schema: coercedSchema } = enableTypeCoercion(
type.pipe[0],
);
const schema = type.async
? pipeAsync(coercedSchema, ...type.pipe.slice(1))
: // @ts-expect-error `coercedSchema` must be sync here but TypeScript can't infer that.
pipe(coercedSchema, ...type.pipe.slice(1));
return { transformAction, schema };
}
switch (type.type) {
case "string":
case "literal":
case "enum":
case "undefined": {
return coerce(type);
}
case "number": {
return coerce(type, Number);
}
case "boolean": {
return coerce(type, (text) => (text === "on" ? true : text));
}
case "date": {
return coerce(type, (timestamp) => {
const date = new Date(timestamp);
if (Number.isNaN(date.getTime())) {
return timestamp;
}
return date;
});
}
case "bigint": {
return coerce(type, BigInt);
}
case "file":
case "blob": {
return coerce(type);
}
case "array": {
const arraySchema = {
...type,
// @ts-expect-error
item: enableTypeCoercion(type.item).schema,
};
return {
transformAction: undefined,
schema: coerceArray(arraySchema),
};
}
case "exact_optional": {
// @ts-expect-error
const { schema: wrapSchema } = enableTypeCoercion(type.wrapped);
const exactOptionalSchema = {
...type,
wrapped: wrapSchema,
};
return {
transformAction: undefined,
schema: exactOptionalSchema,
};
}
case "nullish":
case "optional": {
return generateWrappedSchema(type, true);
}
case "undefinedable":
case "nullable":
case "non_optional":
case "non_nullish":
case "non_nullable": {
return generateWrappedSchema(type);
}
case "union":
case "intersect": {
const unionSchema = {
...type,
// @ts-expect-error
options: type.options.map(
// @ts-expect-error
(option) => enableTypeCoercion(option as GenericSchema).schema,
),
};
return {
transformAction: undefined,
schema: unionSchema,
};
}
case "variant": {
const variantSchema = {
...type,
// @ts-expect-error
options: type.options.map(
// @ts-expect-error
(option) => enableTypeCoercion(option as GenericSchema).schema,
),
};
return {
transformAction: undefined,
schema: variantSchema,
};
}
case "tuple": {
const tupleSchema = {
...type,
// @ts-expect-error
items: type.items.map(
// @ts-expect-error
(option) => enableTypeCoercion(option).schema,
),
};
return {
transformAction: undefined,
schema: tupleSchema,
};
}
case "tuple_with_rest": {
const tupleWithRestSchema = {
...type,
// @ts-expect-error
items: type.items.map(
// @ts-expect-error
(option) => enableTypeCoercion(option).schema,
),
// @ts-expect-error
rest: enableTypeCoercion(type.rest).schema,
};
return {
transformAction: undefined,
schema: tupleWithRestSchema,
};
}
case "loose_object":
case "strict_object":
case "object": {
const objectSchema = {
...type,
entries: Object.fromEntries(
// @ts-expect-error
Object.entries(type.entries).map(([key, def]) => [
key,
enableTypeCoercion(def as GenericSchema).schema,
]),
),
};
return {
transformAction: undefined,
schema: objectSchema,
};
}
case "object_with_rest": {
const objectWithRestSchema = {
...type,
entries: Object.fromEntries(
// @ts-expect-error
Object.entries(type.entries).map(([key, def]) => [
key,
enableTypeCoercion(def as GenericSchema).schema,
]),
),
// @ts-expect-error
rest: enableTypeCoercion(type.rest).schema,
};
return {
transformAction: undefined,
schema: objectWithRestSchema,
};
}
}
return coerce(type);
}