-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathReferenceInput.tsx
270 lines (256 loc) · 7.55 KB
/
ReferenceInput.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
import React, { Children, cloneElement, ReactElement } from 'react';
import PropTypes from 'prop-types';
import {
useInput,
useReferenceInputController,
InputProps,
warning as warningLog,
ListContextProvider,
ReferenceInputValue,
UseInputValue,
ResourceContextProvider,
} from 'ra-core';
import sanitizeInputRestProps from './sanitizeInputRestProps';
import ReferenceError from './ReferenceError';
/**
* An Input component for choosing a reference record. Useful for foreign keys.
*
* This component fetches the possible values in the reference resource
* (using `dataProvider.getList()`), then delegates rendering
* to a subcomponent, to which it passes the possible choices
* as the `choices` attribute.
*
* Use it with a selector component as child, like `<AutocompleteInput>`,
* `<SelectInput>`, or `<RadioButtonGroupInput>`.
*
* @example
* export const CommentEdit = (props) => (
* <Edit {...props}>
* <SimpleForm>
* <ReferenceInput label="Post" source="post_id" reference="posts">
* <AutocompleteInput optionText="title" />
* </ReferenceInput>
* </SimpleForm>
* </Edit>
* );
*
* @example
* export const CommentEdit = (props) => (
* <Edit {...props}>
* <SimpleForm>
* <ReferenceInput label="Post" source="post_id" reference="posts">
* <SelectInput optionText="title" />
* </ReferenceInput>
* </SimpleForm>
* </Edit>
* );
*
* By default, restricts the possible values to 25. You can extend this limit
* by setting the `perPage` prop.
*
* @example
* <ReferenceInput
* source="post_id"
* reference="posts"
* perPage={100}>
* <SelectInput optionText="title" />
* </ReferenceInput>
*
* By default, orders the possible values by id desc. You can change this order
* by setting the `sort` prop (an object with `field` and `order` properties).
*
* @example
* <ReferenceInput
* source="post_id"
* reference="posts"
* sort={{ field: 'title', order: 'ASC' }}>
* <SelectInput optionText="title" />
* </ReferenceInput>
*
* Also, you can filter the query used to populate the possible values. Use the
* `filter` prop for that.
*
* @example
* <ReferenceInput
* source="post_id"
* reference="posts"
* filter={{ is_published: true }}>
* <SelectInput optionText="title" />
* </ReferenceInput>
*
* The enclosed component may filter results. ReferenceInput passes a `setFilter`
* function as prop to its child component. It uses the value to create a filter
* for the query - by default { q: [searchText] }. You can customize the mapping
* searchText => searchQuery by setting a custom `filterToQuery` function prop:
*
* @example
* <ReferenceInput
* source="post_id"
* reference="posts"
* filterToQuery={searchText => ({ title: searchText })}>
* <AutocompleteInput optionText="title" />
* </ReferenceInput>
*/
const ReferenceInput = (props: ReferenceInputProps) => {
const {
format,
onBlur,
onChange,
onFocus,
parse,
validate,
...rest
} = props;
const inputProps = useInput({
format,
onBlur,
onChange,
onFocus,
parse,
validate,
...rest,
});
return (
<ReferenceInputView
{...inputProps}
{...rest}
{...useReferenceInputController({ ...rest, ...inputProps })}
/>
);
};
ReferenceInput.propTypes = {
allowEmpty: PropTypes.bool,
basePath: PropTypes.string,
children: PropTypes.element.isRequired,
className: PropTypes.string,
classes: PropTypes.object,
filter: PropTypes.object,
filterToQuery: PropTypes.func.isRequired,
label: PropTypes.string,
onChange: PropTypes.func,
perPage: PropTypes.number,
record: PropTypes.object,
reference: PropTypes.string.isRequired,
resource: PropTypes.string,
sort: PropTypes.shape({
field: PropTypes.string,
order: PropTypes.oneOf(['ASC', 'DESC']),
}),
source: PropTypes.string,
};
ReferenceInput.defaultProps = {
filter: {},
filterToQuery: searchText => (searchText ? { q: searchText } : {}),
perPage: 25,
sort: { field: 'id', order: 'DESC' },
};
export interface ReferenceInputProps extends InputProps {
allowEmpty?: boolean;
basePath?: string;
children: ReactElement;
classes?: any;
className?: string;
filterToQuery?: (filter: string) => any;
label?: string;
perPage?: number;
reference: string;
// @deprecated
referenceSource?: (resource: string, source: string) => string;
resource?: string;
enableGetChoices?: (filters: any) => boolean;
[key: string]: any;
}
const sanitizeRestProps = ({
dataStatus = null,
enableGetChoices = null,
filter = null,
filterToQuery = null,
onChange = null,
perPage = null,
reference = null,
referenceRecord = null,
referenceSource = null,
sort = null,
validation = null,
...rest
}) => sanitizeInputRestProps(rest);
export interface ReferenceInputViewProps
extends ReferenceInputValue,
ReferenceInputProps,
Omit<UseInputValue, 'id'> {}
export const ReferenceInputView = (props: ReferenceInputViewProps) => {
const {
allowEmpty,
basePath,
children,
choices,
classes,
className,
error,
helperText,
id,
input,
isRequired,
label,
meta,
possibleValues,
resource,
reference,
setFilter,
setPagination,
setSort,
source,
warning,
...rest
} = props;
if (Children.count(children) !== 1) {
throw new Error('<ReferenceInput> only accepts a single child');
}
// This is not a final-form error but an unrecoverable error from the
// useReferenceInputController hook
if (error) {
return <ReferenceError label={label} error={error} />;
}
// When the useReferenceInputController returns a warning, it means it
// had an issue trying to load the referenced record
// We display it by overriding the final-form meta
const finalMeta = warning
? {
...meta,
error: warning,
}
: meta;
// helperText should never be set on ReferenceInput, only in child component
// But in a Filter component, the child helperText have to be forced to false
warningLog(
helperText !== undefined && helperText !== false,
"<ReferenceInput> doesn't accept a helperText prop. Set the helperText prop on the child component instead"
);
const disabledHelperText = helperText === false ? { helperText } : {};
return (
<ResourceContextProvider value={reference}>
<ListContextProvider value={possibleValues}>
{cloneElement(children, {
allowEmpty,
classes,
className,
input,
isRequired,
label,
resource,
meta: finalMeta,
source,
choices,
basePath,
setFilter,
setPagination,
setSort,
translateChoice: false,
...disabledHelperText,
...sanitizeRestProps(rest),
})}
</ListContextProvider>
</ResourceContextProvider>
);
};
export default ReferenceInput;