-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathdefaults.ts
74 lines (65 loc) · 2.34 KB
/
defaults.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
/* eslint-disable @typescript-eslint/no-explicit-any */
import type { ValidationAdapter, ClientValidationAdapter } from './adapters/adapters.js';
import type { SuperValidateOptions, SuperValidated } from './superValidate.js';
type SuperSchemaData<T extends Record<string, unknown>> = Partial<T> | null | undefined;
type SuperSchemaOptions<T extends Record<string, unknown>> = Pick<
SuperValidateOptions<T>,
'id' | 'defaults'
>;
export function defaults<
Out extends Record<string, unknown>,
M = App.Superforms.Message extends never ? any : App.Superforms.Message,
In extends Record<string, unknown> = Out
>(
adapter: ValidationAdapter<Out, In>,
options?: SuperSchemaOptions<Out>
): SuperValidated<Out, M, In>;
export function defaults<
Out extends Record<string, unknown>,
M = App.Superforms.Message extends never ? any : App.Superforms.Message,
In extends Record<string, unknown> = Out
>(
defaults: SuperSchemaData<Out>,
adapter: ValidationAdapter<Out, In>,
options?: SuperSchemaOptions<Out>
): SuperValidated<Out, M, In>;
export function defaults<
Out extends Record<string, unknown>,
M = App.Superforms.Message extends never ? any : App.Superforms.Message,
In extends Record<string, unknown> = Out
>(
defaults: Out,
adapter: ClientValidationAdapter<Out, In>,
options?: SuperSchemaOptions<Out>
): SuperValidated<Out, M, In>;
export function defaults<
Out extends Record<string, unknown>,
M = App.Superforms.Message extends never ? any : App.Superforms.Message,
In extends Record<string, unknown> = Out
>(
data: SuperSchemaData<Out> | ValidationAdapter<Out, In> | Out,
adapter?: ValidationAdapter<Out, In> | ClientValidationAdapter<Out, In> | SuperSchemaOptions<Out>,
options?: SuperSchemaOptions<Out>
): SuperValidated<Out, M, In> {
if (data && 'superFormValidationLibrary' in data) {
options = adapter as SuperSchemaOptions<Out>;
adapter = data;
data = null;
}
const validator = adapter as ValidationAdapter<Out, In>;
const optionDefaults = options?.defaults ?? validator.defaults;
return {
id: options?.id ?? validator.id ?? '',
valid: false,
posted: false,
errors: {},
data: { ...optionDefaults, ...data },
constraints: validator.constraints,
shape: validator.shape
};
}
export function defaultValues<T extends Record<string, unknown>>(
adapter: ValidationAdapter<T, Record<string, unknown>>
): T {
return adapter.defaults;
}