-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmyZod.ts
60 lines (53 loc) · 1.48 KB
/
myZod.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
import * as z from "zod";
import "zod-openapi/extend";
export * from "zod";
// Extend ZodType
z.ZodType.prototype.coalesce = function (defaultValue) {
return this.transform((value) => value ?? defaultValue);
};
// Export type as part of the package
declare module "zod" {
interface ZodType<
Output,
Def extends z.ZodTypeDef = z.ZodTypeDef,
Input = Output,
> {
coalesce(
defaultValue: NonNullable<Output>,
): z.ZodEffects<this, NonNullable<Output>>;
}
}
// Alias support
interface AliasChoice {
field: string;
aliases: string[];
}
export function aliasedObject<
O extends z.ZodObject<S>,
S extends z.ZodRawShape,
>(
schema: O,
aliasChoices: AliasChoice[],
) {
return z.preprocess((item: unknown) => {
const obj = z.record(z.unknown()).safeParse(item);
if (obj.success) {
for (const choice of aliasChoices) {
// If the field contains a value, skip
if (obj.data[choice.field]) {
continue;
}
// Replace with the first found alias value
const foundAlias = choice.aliases.find((alias) =>
alias in obj.data
);
if (foundAlias) {
obj.data[choice.field] = obj.data[foundAlias];
}
}
// Reassign the object
item = obj.data;
}
return obj.data;
}, schema);
}