-
Notifications
You must be signed in to change notification settings - Fork 0
/
createForm.tsx
436 lines (391 loc) · 12.1 KB
/
createForm.tsx
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
import * as React from "react"
import type { SomeZodObject, TypeOf, z, ZodTypeAny } from "zod"
import type {
ComponentOrTagName,
FormSchema,
KeysOfStrings,
ObjectFromSchema,
} from "./prelude"
import { objectFromSchema, mapObject, browser } from "./prelude"
import type {
UseFormReturn,
FieldError,
Path,
ValidationMode,
DeepPartial,
} from "react-hook-form"
import { useForm, FormProvider } from "react-hook-form"
import { zodResolver } from "@hookform/resolvers/zod"
import type { FormErrors, FormValues } from "./mutations"
import type {
ComponentMappings,
FieldComponent,
FieldType,
Option,
} from "./createField"
import { createField } from "./createField"
import { mapChildren, reduceElements } from "./childrenTraversal"
import { defaultRenderField } from "./defaultRenderField"
import { inferLabel } from "./inferLabel"
import type { ZodTypeName } from "./shapeInfo"
import { shapeInfo } from "./shapeInfo"
import { coerceToForm } from "./coercions"
type FormMethod = "get" | "post" | "put" | "patch" | "delete"
type BaseFormProps = {
method?: FormMethod
onSubmit?: React.FormEventHandler<HTMLFormElement>
children: React.ReactNode
}
type BaseFormPropsWithHTMLAttributes =
React.FormHTMLAttributes<HTMLFormElement> & BaseFormProps
type Field<SchemaType> = {
shape: ZodTypeAny
fieldType: FieldType
name: keyof SchemaType
required: boolean
dirty: boolean
label?: string
options?: Option[]
errors?: string[]
autoFocus?: boolean
value?: any
hidden?: boolean
multiline?: boolean
radio?: boolean
placeholder?: string
}
type RenderFieldProps<Schema extends SomeZodObject> = Field<z.infer<Schema>> & {
Field: FieldComponent<Schema>
}
type RenderField<Schema extends SomeZodObject> = (
props: RenderFieldProps<Schema>,
) => JSX.Element
type Options<SchemaType> = Partial<Record<keyof SchemaType, Option[]>>
type Children<Schema extends SomeZodObject> = (
helpers: {
Field: FieldComponent<Schema>
Errors: ComponentOrTagName<"div">
Error: ComponentOrTagName<"div">
Button: ComponentOrTagName<"button">
} & UseFormReturn<z.infer<Schema>, any>,
) => React.ReactNode
interface OnSubmitResult {
FORM_ERROR?: string
[prop: string]: any
}
export const FORM_ERROR = "FORM_ERROR"
type FormProps<Schema extends FormSchema> = ComponentMappings & {
mode?: keyof ValidationMode
reValidateMode?: keyof Pick<
ValidationMode,
"onBlur" | "onChange" | "onSubmit"
>
renderField?: RenderField<ObjectFromSchema<Schema>>
globalErrorsComponent?: ComponentOrTagName<"div">
buttonComponent?: ComponentOrTagName<"button">
buttonLabel?: string
pendingButtonLabel?: string
schema: Schema
errors?: FormErrors<z.infer<Schema>>
values?: FormValues<z.infer<Schema>>
labels?: Partial<Record<keyof z.infer<Schema>, string>>
placeholders?: Partial<Record<keyof z.infer<Schema>, string>>
options?: Options<z.infer<Schema>>
hiddenFields?: Array<keyof z.infer<Schema>>
multiline?: Array<keyof z.infer<Schema>>
radio?: Array<KeysOfStrings<z.infer<ObjectFromSchema<Schema>>>>
autoFocus?: keyof z.infer<Schema>
beforeChildren?: React.ReactNode
ref?: React.RefObject<HTMLFormElement>
onSubmit: (
values: z.infer<Schema>,
form: UseFormReturn<z.TypeOf<Schema>, any>,
) => Promise<void | OnSubmitResult>
children?: Children<ObjectFromSchema<Schema>>
} & Omit<BaseFormPropsWithHTMLAttributes, "children"> &
Omit<BaseFormPropsWithHTMLAttributes, "onSubmit">
const fieldTypes: Record<ZodTypeName, FieldType> = {
ZodString: "string",
ZodNumber: "number",
ZodBoolean: "boolean",
ZodDate: "date",
ZodEnum: "string",
}
function Form<Schema extends FormSchema>({
mode = "onSubmit",
reValidateMode = "onChange",
renderField = defaultRenderField,
fieldComponent,
globalErrorsComponent: Errors = "div",
errorComponent: Error = "div",
fieldErrorsComponent,
labelComponent,
inputComponent,
multilineComponent,
selectComponent,
checkboxComponent,
radioComponent,
checkboxWrapperComponent,
radioGroupComponent,
radioWrapperComponent,
buttonComponent: Button = "button",
buttonLabel: rawButtonLabel = "OK",
pendingButtonLabel = "OK",
method = "post",
schema,
beforeChildren,
children: childrenFn,
labels,
placeholders,
options,
hiddenFields,
multiline,
radio,
autoFocus: autoFocusProp,
errors: errorsProp,
values: valuesProp,
...props
}: FormProps<Schema>) {
type SchemaType = z.infer<Schema>
const actionErrors = [] as FormErrors<SchemaType>
const actionValues = [] as FormValues<SchemaType>
const errors = { ...errorsProp, ...actionErrors }
const values = { ...valuesProp, ...actionValues }
const schemaShape = objectFromSchema(schema).shape
const defaultValues = mapObject(schemaShape, (key, fieldShape) => {
const shape = shapeInfo(fieldShape as z.ZodTypeAny)
const defaultValue = coerceToForm(
values[key] ?? shape?.getDefaultValue?.(),
shape,
)
return [key, defaultValue]
}) as DeepPartial<SchemaType>
const form = useForm<SchemaType>({
resolver: zodResolver(schema),
mode,
reValidateMode,
defaultValues,
})
const { formState, reset } = form
const { errors: formErrors, isValid } = formState
const { onSubmit, ref, ...newProps } = props
const onSubmitAction = async values => {
await onSubmit(values, form)
}
const Field = React.useMemo(
() =>
createField<ObjectFromSchema<Schema>>({
register: form.register,
fieldComponent,
labelComponent,
inputComponent,
multilineComponent,
selectComponent,
checkboxComponent,
radioComponent,
checkboxWrapperComponent,
radioGroupComponent,
radioWrapperComponent,
fieldErrorsComponent,
errorComponent: Error,
}),
[
fieldComponent,
labelComponent,
inputComponent,
multilineComponent,
selectComponent,
checkboxComponent,
radioComponent,
checkboxWrapperComponent,
radioGroupComponent,
radioWrapperComponent,
fieldErrorsComponent,
Error,
form.register,
],
)
const fieldErrors = (key: keyof SchemaType) => {
const message = (formErrors[key] as unknown as FieldError)?.message
return browser() ? message && [message] : errors && errors[key]
}
const firstErroredField = () =>
Object.keys(schemaShape).find(key => fieldErrors(key)?.length)
const makeField = (key: string) => {
const shape = schemaShape[key]
const { typeName, optional, nullable, enumValues } = shapeInfo(shape)
const required = !(optional || nullable)
const fieldOptions =
options?.[key] ||
enumValues?.map((value: string) => ({
name: inferLabel(value),
value,
}))
const fieldOptionsPlusEmpty = () =>
fieldOptions && [{ name: "", value: "" }, ...(fieldOptions ?? [])]
return {
shape,
fieldType: typeName ? fieldTypes[typeName] : "string",
name: key,
required,
dirty: key in formState.dirtyFields,
label: (labels && labels[key]) || inferLabel(String(key)),
options: required ? fieldOptions : fieldOptionsPlusEmpty(),
errors: fieldErrors(key),
autoFocus: key === firstErroredField() || key === autoFocusProp,
value: defaultValues[key],
hidden: hiddenFields && Boolean(hiddenFields.find(item => item === key)),
multiline: multiline && Boolean(multiline.find(item => item === key)),
radio: radio && Boolean(radio.find(item => item === key)),
placeholder: placeholders && placeholders[key],
} as Field<SchemaType>
}
const hiddenFieldsErrorsToGlobal = (globalErrors: string[] = []) => {
const deepHiddenFieldsErrors = hiddenFields?.map(hiddenField => {
const hiddenFieldErrors = fieldErrors(hiddenField)
if (hiddenFieldErrors instanceof Array) {
const hiddenFieldLabel =
(labels && labels[hiddenField]) || inferLabel(String(hiddenField))
return hiddenFieldErrors.map(error => `${hiddenFieldLabel}: ${error}`)
} else return []
})
const hiddenFieldsErrors: string[] = deepHiddenFieldsErrors?.flat() || []
const allGlobalErrors = ([] as string[])
.concat(globalErrors, hiddenFieldsErrors)
.filter(error => typeof error === "string")
return allGlobalErrors.length > 0 ? allGlobalErrors : undefined
}
let globalErrors = hiddenFieldsErrorsToGlobal(errors?._global)
const buttonLabel = formState.isSubmitting
? pendingButtonLabel
: rawButtonLabel
const [disabled, setDisabled] = React.useState(false)
const customChildren = mapChildren(
childrenFn?.({
Field,
Errors,
Error,
Button,
...form,
}),
child => {
if (child.type === Field) {
const { name } = child.props
const field = makeField(name)
const autoFocus = firstErroredField()
? field?.autoFocus
: child.props.autoFocus ?? field?.autoFocus
if (!child.props.children && field) {
return renderField({
Field,
...field,
...child.props,
autoFocus,
})
}
return React.cloneElement(child, {
shape: field?.shape,
fieldType: field?.fieldType,
label: field?.label,
placeholder: field?.placeholder,
required: field?.required,
options: field?.options,
value: field?.value,
errors: field?.errors,
hidden: field?.hidden,
multiline: field?.multiline,
...child.props,
autoFocus,
})
} else if (child.type === Errors) {
if (!child.props.children && !globalErrors?.length) return null
if (child.props.children || !globalErrors?.length) {
return React.cloneElement(child, {
role: "alert",
...child.props,
})
}
return React.cloneElement(child, {
role: "alert",
children: globalErrors.map(error => (
<Error key={error}>{error}</Error>
)),
...child.props,
})
} else if (child.type === Button) {
return React.cloneElement(child, {
disabled,
children: buttonLabel,
...child.props,
})
} else {
return child
}
},
)
const defaultChildren = () => (
<>
{Object.keys(schemaShape)
.map(makeField)
.map(field => renderField({ Field, ...field }))}
{globalErrors?.length && (
<Errors role="alert">
{globalErrors.map(error => (
<Error key={error}>{error}</Error>
))}
</Errors>
)}
<Button disabled={disabled}>{buttonLabel}</Button>
</>
)
React.useEffect(() => {
const shouldDisable =
mode === "onChange" || mode === "all"
? formState.isSubmitting || !isValid
: formState.isSubmitting
setDisabled(shouldDisable)
}, [formState, mode, isValid])
React.useEffect(() => {
const newDefaults = Object.fromEntries(
reduceElements(customChildren, [] as string[][], (prev, child) => {
if (child.type === Field) {
const { name, value } = child.props
prev.push([name, value])
}
return prev
}),
)
reset({ ...defaultValues, ...newDefaults })
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [])
React.useEffect(() => {
Object.keys(errors).forEach(key => {
form.setError(key as Path<TypeOf<Schema>>, {
type: "custom",
message: (errors[key] as string[]).join(", "),
})
})
if (firstErroredField()) {
try {
form.setFocus(firstErroredField() as Path<SchemaType>)
} catch {}
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [errorsProp])
return (
<FormProvider {...form}>
<form
ref={ref}
method={method}
onSubmit={form.handleSubmit(onSubmitAction)}
{...newProps}
>
{beforeChildren}
{customChildren ?? defaultChildren()}
</form>
</FormProvider>
)
}
export type { Field, RenderFieldProps, RenderField, FormProps, FormSchema }
//export default React.forwardRef(Form)
export { Form }