-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
/
Copy pathForm.tsx
144 lines (139 loc) · 4.72 KB
/
Form.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
import * as React from 'react';
import { ReactNode, useContext } from 'react';
import {
FormProvider,
FieldValues,
UseFormProps,
SubmitHandler,
} from 'react-hook-form';
import {
UNSAFE_DataRouterContext,
UNSAFE_DataRouterStateContext,
} from 'react-router';
import { FormGroupsProvider } from './groups/FormGroupsProvider';
import { RaRecord } from '../types';
import {
useRecordContext,
OptionalRecordContextProvider,
SaveHandler,
} from '../controller';
import {
SourceContextProvider,
SourceContextValue,
useResourceContext,
} from '../core';
import { ValidateForm } from './validation/getSimpleValidationResolver';
import { WarnWhenUnsavedChanges } from './WarnWhenUnsavedChanges';
import { useAugmentedForm } from './useAugmentedForm';
/**
* Creates a form element, initialized with the current record, calling the saveContext on submit
*
* Wrapper around react-hook-form's useForm, FormContextProvider, and <form>.
* Also sets up a FormGroupContext, and handles submission validation.
*
* @example
*
* const MyForm = ({ record, defaultValues, validate }) => (
* <Form record={record} defaultValues={defaultValues} validate={validate}>
* <Stack>
* <TextInput source="title" />
* <SaveButton />
* </Stack>
* </Form>
* );
*
* @typedef {Object} Props the props you can use
* @prop {Object} defaultValues
* @prop {Function} validate
* @prop {Function} save
*
* @see useForm
* @see FormGroupContext
*
* @link https://react-hook-form.com/docs/useformcontext
*/
export function Form<RecordType = any>(props: FormProps<RecordType>) {
const {
children,
id,
className,
noValidate = false,
formRootPathname,
warnWhenUnsavedChanges,
WarnWhenUnsavedChangesComponent = WarnWhenUnsavedChanges,
} = props;
const record = useRecordContext(props);
const resource = useResourceContext(props);
const { form, formHandleSubmit } = useAugmentedForm(props);
const sourceContext = React.useMemo<SourceContextValue>(
() => ({
getSource: (source: string) => source,
getLabel: (source: string) =>
`resources.${resource}.fields.${source}`,
}),
[resource]
);
const dataRouterContext = useContext(UNSAFE_DataRouterContext);
const dataRouterStateContext = useContext(UNSAFE_DataRouterStateContext);
if (
warnWhenUnsavedChanges &&
(!dataRouterContext || !dataRouterStateContext) &&
process.env.NODE_ENV === 'development'
) {
console.error(
'Cannot use the warnWhenUnsavedChanges feature outside of a DataRouter. ' +
'The warnWhenUnsavedChanges feature is disabled. ' +
'Remove the warnWhenUnsavedChanges prop or convert your custom router to a Data Router.'
);
}
return (
<OptionalRecordContextProvider value={record}>
<SourceContextProvider value={sourceContext}>
<FormProvider {...form}>
<FormGroupsProvider>
<form
onSubmit={formHandleSubmit}
noValidate={noValidate}
id={id}
className={className}
>
{children}
</form>
{warnWhenUnsavedChanges &&
dataRouterContext &&
dataRouterStateContext && (
<WarnWhenUnsavedChangesComponent
enable
formRootPathName={formRootPathname}
formControl={form.control}
/>
)}
</FormGroupsProvider>
</FormProvider>
</SourceContextProvider>
</OptionalRecordContextProvider>
);
}
export type FormProps<RecordType = any> = FormOwnProps<RecordType> &
Omit<UseFormProps, 'onSubmit'> & {
validate?: ValidateForm;
noValidate?: boolean;
WarnWhenUnsavedChangesComponent?: React.ComponentType<{
enable?: boolean;
formRootPathName?: string;
formControl?: any;
}>;
};
export interface FormOwnProps<RecordType = any> {
children: ReactNode;
className?: string;
defaultValues?: any;
formRootPathname?: string;
id?: string;
record?: Partial<RaRecord>;
resource?: string;
onSubmit?: SubmitHandler<FieldValues> | SaveHandler<RecordType>;
warnWhenUnsavedChanges?: boolean;
sanitizeEmptyValues?: boolean;
disableInvalidFormNotification?: boolean;
}