-
-
Notifications
You must be signed in to change notification settings - Fork 220
/
Copy pathobjectAsync.ts
241 lines (225 loc) · 7.09 KB
/
objectAsync.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
import { getDefault, getFallback } from '../../methods/index.ts';
import type {
BaseSchemaAsync,
ErrorMessage,
InferObjectInput,
InferObjectIssue,
InferObjectOutput,
ObjectEntriesAsync,
ObjectPathItem,
OutputDataset,
} from '../../types/index.ts';
import { _addIssue, _getStandardProps } from '../../utils/index.ts';
import type { object } from './object.ts';
import type { ObjectIssue } from './types.ts';
/**
* Object schema async interface.
*/
export interface ObjectSchemaAsync<
TEntries extends ObjectEntriesAsync,
TMessage extends ErrorMessage<ObjectIssue> | undefined,
> extends BaseSchemaAsync<
InferObjectInput<TEntries>,
InferObjectOutput<TEntries>,
ObjectIssue | InferObjectIssue<TEntries>
> {
/**
* The schema type.
*/
readonly type: 'object';
/**
* The schema reference.
*/
readonly reference: typeof object | typeof objectAsync;
/**
* The expected property.
*/
readonly expects: 'Object';
/**
* The entries schema.
*/
readonly entries: TEntries;
/**
* The error message.
*/
readonly message: TMessage;
}
/**
* Creates an object schema.
*
* Hint: This schema removes unknown entries. The output will only include the
* entries you specify. To include unknown entries, use `looseObjectAsync`. To
* return an issue for unknown entries, use `strictObjectAsync`. To include and
* validate unknown entries, use `objectWithRestAsync`.
*
* @param entries The entries schema.
*
* @returns An object schema.
*/
export function objectAsync<const TEntries extends ObjectEntriesAsync>(
entries: TEntries
): ObjectSchemaAsync<TEntries, undefined>;
/**
* Creates an object schema.
*
* Hint: This schema removes unknown entries. The output will only include the
* entries you specify. To include unknown entries, use `looseObjectAsync`. To
* return an issue for unknown entries, use `strictObjectAsync`. To include and
* validate unknown entries, use `objectWithRestAsync`.
*
* @param entries The entries schema.
* @param message The error message.
*
* @returns An object schema.
*/
export function objectAsync<
const TEntries extends ObjectEntriesAsync,
const TMessage extends ErrorMessage<ObjectIssue> | undefined,
>(entries: TEntries, message: TMessage): ObjectSchemaAsync<TEntries, TMessage>;
// @__NO_SIDE_EFFECTS__
export function objectAsync(
entries: ObjectEntriesAsync,
message?: ErrorMessage<ObjectIssue>
): ObjectSchemaAsync<
ObjectEntriesAsync,
ErrorMessage<ObjectIssue> | undefined
> {
return {
kind: 'schema',
type: 'object',
reference: objectAsync,
expects: 'Object',
async: true,
entries,
message,
get '~standard'() {
return _getStandardProps(this);
},
async '~run'(dataset, config) {
// Get input value from dataset
const input = dataset.value;
// If root type is valid, check nested types
if (input && typeof input === 'object') {
// Set typed to `true` and value to blank object
// @ts-expect-error
dataset.typed = true;
dataset.value = {};
// If key is present or its an optional schema with a default value,
// parse input of key or default value asynchronously
const valueDatasets = await Promise.all(
Object.entries(this.entries).map(async ([key, valueSchema]) => {
if (
key in input ||
((valueSchema.type === 'exact_optional' ||
valueSchema.type === 'optional' ||
valueSchema.type === 'nullish') &&
// @ts-expect-error
valueSchema.default !== undefined)
) {
const value: unknown =
key in input
? // @ts-expect-error
input[key]
: await getDefault(valueSchema);
return [
key,
value,
valueSchema,
await valueSchema['~run']({ value }, config),
] as const;
}
return [
key,
// @ts-expect-error
input[key] as unknown,
valueSchema,
null,
] as const;
})
);
// Process each object entry of schema
for (const [key, value, valueSchema, valueDataset] of valueDatasets) {
// If key is present or its an optional schema with a default value,
// process its value dataset
if (valueDataset) {
// If there are issues, capture them
if (valueDataset.issues) {
// Create object path item
const pathItem: ObjectPathItem = {
type: 'object',
origin: 'value',
input: input as Record<string, unknown>,
key,
value,
};
// Add modified entry dataset issues to issues
for (const issue of valueDataset.issues) {
if (issue.path) {
issue.path.unshift(pathItem);
} else {
// @ts-expect-error
issue.path = [pathItem];
}
// @ts-expect-error
dataset.issues?.push(issue);
}
if (!dataset.issues) {
// @ts-expect-error
dataset.issues = valueDataset.issues;
}
// If necessary, abort early
if (config.abortEarly) {
dataset.typed = false;
break;
}
}
// If not typed, set typed to `false`
if (!valueDataset.typed) {
dataset.typed = false;
}
// Add entry to dataset
// @ts-expect-error
dataset.value[key] = valueDataset.value;
// Otherwise, if key is missing but has a fallback, use it
// @ts-expect-error
} else if (valueSchema.fallback !== undefined) {
// @ts-expect-error
dataset.value[key] = await getFallback(valueSchema);
// Otherwise, if key is missing and required, add issue
} else if (
valueSchema.type !== 'exact_optional' &&
valueSchema.type !== 'optional' &&
valueSchema.type !== 'nullish'
) {
_addIssue(this, 'key', dataset, config, {
input: undefined,
expected: `"${key}"`,
path: [
{
type: 'object',
origin: 'key',
input: input as Record<string, unknown>,
key,
value,
},
],
});
// If necessary, abort early
if (config.abortEarly) {
break;
}
}
}
// Otherwise, add object issue
} else {
_addIssue(this, 'type', dataset, config);
}
// Return output dataset
// @ts-expect-error
return dataset as OutputDataset<
InferObjectOutput<ObjectEntriesAsync>,
ObjectIssue | InferObjectIssue<ObjectEntriesAsync>
>;
},
};
}