-
-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathtypes.ts
More file actions
396 lines (366 loc) · 11.5 KB
/
Copy pathtypes.ts
File metadata and controls
396 lines (366 loc) · 11.5 KB
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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
export type Subscription = { [key: string]: boolean | undefined };
export type Subscriber<V> = (value: V) => void;
export type IsEqual = (a: any, b: any) => boolean;
export interface AnyObject {
[key: string]: any;
}
export type ValidationErrors = AnyObject | undefined;
export type SubmissionErrors = AnyObject | undefined;
export interface FormSubscription extends Subscription {
active?: boolean;
dirty?: boolean;
dirtyFields?: boolean;
dirtyFieldsSinceLastSubmit?: boolean;
dirtySinceLastSubmit?: boolean;
modifiedSinceLastSubmit?: boolean;
error?: boolean;
errors?: boolean;
hasSubmitErrors?: boolean;
hasValidationErrors?: boolean;
initialValues?: boolean;
invalid?: boolean;
modified?: boolean;
pristine?: boolean;
submitError?: boolean;
submitErrors?: boolean;
submitFailed?: boolean;
submitting?: boolean;
submitSucceeded?: boolean;
touched?: boolean;
valid?: boolean;
validating?: boolean;
values?: boolean;
visited?: boolean;
}
export interface FormState<
FormValues = Record<string, any>,
InitialFormValues extends Partial<FormValues> = Partial<FormValues>
> {
active?: undefined | keyof FormValues;
dirty?: boolean;
dirtyFields?: { [key: string]: boolean };
dirtyFieldsSinceLastSubmit?: { [key: string]: boolean };
dirtySinceLastSubmit?: boolean;
error?: any;
errors?: ValidationErrors;
hasSubmitErrors?: boolean;
hasValidationErrors?: boolean;
initialValues?: InitialFormValues;
invalid?: boolean;
modified?: { [key: string]: boolean };
modifiedSinceLastSubmit?: boolean;
pristine?: boolean;
submitError?: any;
submitErrors?: SubmissionErrors;
submitFailed?: boolean;
submitSucceeded?: boolean;
submitting?: boolean;
touched?: { [key: string]: boolean };
valid?: boolean;
validating?: boolean;
values: FormValues;
visited?: { [key: string]: boolean };
}
export type FormSubscriber<
FormValues = Record<string, any>,
InitialFormValues extends Partial<FormValues> = Partial<FormValues>
> = Subscriber<FormState<FormValues, InitialFormValues>>;
export interface FieldState<FieldValue = any> {
active?: boolean;
blur: () => void;
change: (value: FieldValue | undefined) => void;
data?: AnyObject;
dirty?: boolean;
dirtySinceLastSubmit?: boolean;
error?: any;
focus: () => void;
initial?: FieldValue;
invalid?: boolean;
length?: number;
modified?: boolean;
modifiedSinceLastSubmit?: boolean;
name: string;
pristine?: boolean;
submitError?: any;
submitFailed?: boolean;
submitSucceeded?: boolean;
submitting?: boolean;
touched?: boolean;
valid?: boolean;
validating?: boolean;
value?: FieldValue;
visited?: boolean;
}
export interface FieldSubscription {
active?: boolean;
data?: boolean;
dirty?: boolean;
dirtySinceLastSubmit?: boolean;
error?: boolean;
initial?: boolean;
invalid?: boolean;
length?: boolean;
modified?: boolean;
modifiedSinceLastSubmit?: boolean;
pristine?: boolean;
submitError?: boolean;
submitFailed?: boolean;
submitSucceeded?: boolean;
submitting?: boolean;
touched?: boolean;
valid?: boolean;
validating?: boolean;
value?: boolean;
visited?: boolean;
}
export type FieldSubscriber<FieldValue = any> = Subscriber<FieldState<FieldValue>>;
export type Subscribers<T extends Object> = {
index: number;
entries: {
[key: number]: {
subscriber: Subscriber<T>;
subscription: Subscription;
notified: boolean;
};
};
};
export type Unsubscribe = () => void;
export type FieldValidator<FieldValue = any> = (
value: FieldValue,
allValues: object,
meta?: FieldState<FieldValue>
) => any | Promise<any>;
export type GetFieldValidator<FieldValue = any> = () => FieldValidator<FieldValue> | undefined;
export interface FieldConfig<FieldValue = any> {
afterSubmit?: () => void;
beforeSubmit?: () => void | false;
data?: any;
defaultValue?: any;
getValidator?: GetFieldValidator<FieldValue>;
initialValue?: any;
isEqual?: IsEqual;
silent?: boolean;
validateFields?: string[];
async?: boolean;
}
export type RegisterField<FormValues = Record<string, any>> = <F extends keyof FormValues>(
name: F,
subscriber: FieldSubscriber<FormValues[F]>,
subscription: FieldSubscription,
config?: FieldConfig<FormValues[F]>
) => Unsubscribe;
export interface InternalFieldState<FieldValue = any> {
active: boolean;
afterSubmit?: () => void;
asyncValidationCount: number;
asyncValidationKey: number;
beforeSubmit?: () => void | false;
blur: () => void;
change: (value: any) => void;
data: AnyObject;
focus: () => void;
instanceId?: number;
isEqual: IsEqual;
lastFieldState?: FieldState<FieldValue>;
length?: any;
modified: boolean;
modifiedSinceLastSubmit: boolean;
name: string;
touched: boolean;
validateFields?: string[];
validators: {
[index: number]: GetFieldValidator<FieldValue>;
};
valid: boolean;
validating: boolean;
visited: boolean;
}
export interface InternalFormState<FormValues = Record<string, any>> {
active?: string;
asyncErrors: AnyObject;
dirtySinceLastSubmit: boolean;
modifiedSinceLastSubmit: boolean;
error?: any;
errors: ValidationErrors;
initialValues?: AnyObject;
lastSubmittedValues?: AnyObject;
pristine: boolean;
resetWhileSubmitting: boolean;
submitError?: any;
submitErrors?: AnyObject;
submitFailed: boolean;
submitSucceeded: boolean;
submitting: boolean;
valid: boolean;
validating: number;
values: FormValues;
}
export type ConfigKey =
| "debug"
| "destroyOnUnregister"
| "initialValues"
| "keepDirtyOnReinitialize"
| "mutators"
| "onSubmit"
| "validate"
| "validateOnBlur"
| "callbackScheduler"
| "ignoreUnregister";
export interface FormApi<
FormValues = Record<string, any>,
InitialFormValues extends Partial<FormValues> = Partial<FormValues>
> {
batch: (fn: () => void) => void;
blur: (name: keyof FormValues) => void;
change: <F extends keyof FormValues>(name: F, value?: FormValues[F]) => void;
destroyOnUnregister: boolean;
focus: (name: keyof FormValues) => void;
initialize: (
data: InitialFormValues | ((values: FormValues) => InitialFormValues)
) => void;
isValidationPaused: () => boolean;
getFieldState: <F extends keyof FormValues>(
field: F
) => FieldState<FormValues[F]> | undefined;
getRegisteredFields: () => string[];
getState: () => FormState<FormValues, InitialFormValues>;
mutators: Record<string, (...args: any[]) => any>;
pauseValidation: () => void;
registerField: RegisterField<FormValues>;
reset: (initialValues?: InitialFormValues) => void;
resetFieldState: (name: keyof FormValues) => void;
restart: (initialValues?: InitialFormValues) => void;
resumeValidation: () => void;
setConfig: <K extends ConfigKey>(
name: K,
value: Config<FormValues, InitialFormValues>[K]
) => void;
setCallbackScheduler: (scheduler?: (callback: () => void) => void) => void;
submit: () => Promise<FormValues | undefined> | undefined;
subscribe: (
subscriber: FormSubscriber<FormValues, InitialFormValues>,
subscription: FormSubscription
) => Unsubscribe;
/**
* Subscribes to the state of a specific field in the form.
* @param name - The name of the field to subscribe to.
* @param onChange - A callback function that is called whenever the field state changes.
* @param subscription - An object specifying which parts of the field state to subscribe to.
* @returns A function to unsubscribe from the field state updates.
*/
subscribeFieldState: <F extends keyof FormValues>(
name: F,
onChange: () => void,
subscription: FieldSubscription
) => Unsubscribe;
/**
* Retrieves a snapshot of the current state of a specific field.
* @param name - The name of the field to retrieve the state for.
* @returns The current state of the field, or undefined if the field is not registered.
*/
getFieldSnapshot: <F extends keyof FormValues>(
name: F
) => FieldState<FormValues[F]> | undefined;
/**
* Subscribes to the state of the entire form.
* @param onChange - A callback function that is called whenever the form state changes.
* @param subscription - An object specifying which parts of the form state to subscribe to.
* @returns A function to unsubscribe from the form state updates.
*/
subscribeFormState: (
onChange: () => void,
subscription: FormSubscription
) => Unsubscribe;
/**
* Retrieves a snapshot of the current state of the form.
* @returns The current state of the form, represented by `FormState<FormValues, InitialFormValues>`.
*/
getFormSnapshot: () => FormState<FormValues, InitialFormValues>;
ignoreUnregister: boolean;
}
export type DebugFunction<
FormValues = Record<string, any>,
InitialFormValues extends Partial<FormValues> = Partial<FormValues>
> = (
state: FormState<FormValues, InitialFormValues>,
fieldStates: { [key: string]: FieldState<any> }
) => void;
export interface MutableState<
FormValues = Record<string, any>,
InitialFormValues extends Partial<FormValues> = Partial<FormValues>
> {
fieldSubscribers: { [key: string]: Subscribers<FieldState<any>> };
fields: {
[key: string]: InternalFieldState<any>;
};
formState: InternalFormState<FormValues>;
lastFormState?: FormState<FormValues, InitialFormValues>;
}
export type GetIn = (state: object, complexKey: string) => any;
export type SetIn = (state: object, key: string, value: any, destroyArrays?: boolean) => object;
export type ChangeValue<
FormValues = Record<string, any>,
InitialFormValues extends Partial<FormValues> = Partial<FormValues>
> = (
state: MutableState<FormValues, InitialFormValues>,
name: string,
mutate: (value: any) => any
) => void;
export type RenameField<
FormValues = Record<string, any>,
InitialFormValues extends Partial<FormValues> = Partial<FormValues>
> = (
state: MutableState<FormValues, InitialFormValues>,
from: string,
to: string
) => void;
export interface Tools<
FormValues = Record<string, any>,
InitialFormValues extends Partial<FormValues> = Partial<FormValues>
> {
changeValue: ChangeValue<FormValues, InitialFormValues>;
getIn: GetIn;
renameField: RenameField<FormValues, InitialFormValues>;
resetFieldState: (name: string) => void;
setIn: SetIn;
shallowEqual: IsEqual;
}
export type Mutator<
FormValues = Record<string, any>,
InitialFormValues extends Partial<FormValues> = Partial<FormValues>
> = (
args: any[],
state: MutableState<FormValues, InitialFormValues>,
tools: Tools<FormValues, InitialFormValues>
) => any;
export interface Config<
FormValues = Record<string, any>,
InitialFormValues extends Partial<FormValues> = Partial<FormValues>
> {
debug?: DebugFunction<FormValues, InitialFormValues>;
destroyOnUnregister?: boolean;
initialValues?: InitialFormValues;
keepDirtyOnReinitialize?: boolean;
mutators?: { [key: string]: Mutator<FormValues, InitialFormValues> };
onSubmit: (
values: FormValues,
form: FormApi<FormValues, InitialFormValues>,
callback?: (errors?: SubmissionErrors) => void
) => SubmissionErrors | Promise<SubmissionErrors> | void;
validate?: (
values: FormValues
) => ValidationErrors | Promise<ValidationErrors>;
validateOnBlur?: boolean;
callbackScheduler?: (callback: () => void) => void;
ignoreUnregister?: boolean;
}
export type Decorator<
FormValues = Record<string, any>,
InitialFormValues extends Partial<FormValues> = Partial<FormValues>
> = (form: FormApi<FormValues, InitialFormValues>) => Unsubscribe;
export type StateFilter<T> = (
state: T,
previousState: T | undefined,
subscription: Subscription,
force: boolean
) => T | undefined;