-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathuseEditController.ts
349 lines (334 loc) · 11.1 KB
/
useEditController.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
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
import { useCallback } from 'react';
import { useParams } from 'react-router-dom';
import { useAuthenticated, useRequireAccess } from '../../auth';
import { RaRecord, MutationMode, TransformData } from '../../types';
import { useRedirect, RedirectionSideEffect } from '../../routing';
import { useNotify } from '../../notification';
import {
useGetOne,
useUpdate,
useRefresh,
UseGetOneHookValue,
HttpError,
UseGetOneOptions,
UseUpdateOptions,
} from '../../dataProvider';
import { useTranslate } from '../../i18n';
import {
useResourceContext,
useGetResourceLabel,
useGetRecordRepresentation,
} from '../../core';
import {
SaveContextValue,
SaveHandlerCallbacks,
useMutationMiddlewares,
} from '../saveContext';
/**
* Prepare data for the Edit view.
*
* useEditController does a few things:
* - it grabs the id from the URL and the resource name from the ResourceContext,
* - it fetches the record via useGetOne,
* - it prepares the page title.
*
* @param {Object} props The props passed to the Edit component.
*
* @return {Object} controllerProps Fetched data and callbacks for the Edit view
*
* @example
*
* import { useEditController } from 'react-admin';
* import EditView from './EditView';
*
* const MyEdit = () => {
* const controllerProps = useEditController({ resource: 'posts', id: 123 });
* return <EditView {...controllerProps} {...props} />;
* }
*/
export const useEditController = <
RecordType extends RaRecord = any,
ErrorType = Error,
>(
props: EditControllerProps<RecordType, ErrorType> = {}
): EditControllerResult<RecordType, ErrorType> => {
const {
disableAuthentication = false,
id: propsId,
mutationMode = 'undoable',
mutationOptions = {},
queryOptions = {},
redirect: redirectTo = DefaultRedirect,
transform,
} = props;
const resource = useResourceContext(props);
if (!resource) {
throw new Error(
'useEditController requires a non-empty resource prop or context'
);
}
const { isPending: isPendingAuthenticated } = useAuthenticated({
enabled: !disableAuthentication,
});
const { isPending: isPendingCanAccess } = useRequireAccess<RecordType>({
action: 'edit',
resource,
// If disableAuthentication is true then isPendingAuthenticated will always be true so this hook is disabled
enabled: !isPendingAuthenticated,
});
const getRecordRepresentation = useGetRecordRepresentation(resource);
const translate = useTranslate();
const notify = useNotify();
const redirect = useRedirect();
const refresh = useRefresh();
const { id: routeId } = useParams<'id'>();
if (!routeId && !propsId) {
throw new Error(
'useEditController requires an id prop or a route with an /:id? parameter.'
);
}
const id = propsId ?? routeId;
const { meta: queryMeta, ...otherQueryOptions } = queryOptions;
const {
meta: mutationMeta,
onSuccess,
onError,
...otherMutationOptions
} = mutationOptions;
const {
registerMutationMiddleware,
getMutateWithMiddlewares,
unregisterMutationMiddleware,
} = useMutationMiddlewares();
const {
data: record,
error,
isLoading,
isFetching,
isPending,
refetch,
} = useGetOne<RecordType, ErrorType>(
resource,
{ id, meta: queryMeta },
{
enabled:
(!isPendingAuthenticated && !isPendingCanAccess) ||
disableAuthentication,
onError: () => {
notify('ra.notification.item_doesnt_exist', {
type: 'error',
});
redirect('list', resource);
refresh();
},
refetchOnReconnect: false,
refetchOnWindowFocus: false,
retry: false,
...otherQueryOptions,
}
);
// eslint-disable-next-line eqeqeq
if (record && record.id && record.id != id) {
throw new Error(
`useEditController: Fetched record's id attribute (${record.id}) must match the requested 'id' (${id})`
);
}
const getResourceLabel = useGetResourceLabel();
const recordRepresentation = getRecordRepresentation(record);
const defaultTitle = translate('ra.page.edit', {
name: getResourceLabel(resource, 1),
id,
record,
recordRepresentation:
typeof recordRepresentation === 'string'
? recordRepresentation
: '',
});
const recordCached = { id, previousData: record };
const [update, { isPending: saving }] = useUpdate<RecordType, ErrorType>(
resource,
recordCached,
{
onSuccess: async (data, variables, context) => {
if (onSuccess) {
return onSuccess(data, variables, context);
}
notify(`resources.${resource}.notifications.updated`, {
type: 'info',
messageArgs: {
smart_count: 1,
_: translate('ra.notification.updated', {
smart_count: 1,
}),
},
undoable: mutationMode === 'undoable',
});
redirect(redirectTo, resource, data.id, data);
},
onError: (error, variables, context) => {
if (onError) {
return onError(error, variables, context);
}
// Don't trigger a notification if this is a validation error
// (notification will be handled by the useNotifyIsFormInvalid hook)
const validationErrors = (error as HttpError)?.body?.errors;
const hasValidationErrors =
!!validationErrors &&
Object.keys(validationErrors).length > 0;
if (!hasValidationErrors || mutationMode !== 'pessimistic') {
notify(
typeof error === 'string'
? error
: (error as Error).message ||
'ra.notification.http_error',
{
type: 'error',
messageArgs: {
_:
typeof error === 'string'
? error
: error instanceof Error ||
(typeof error === 'object' &&
error !== null &&
error.hasOwnProperty('message'))
? // @ts-ignore
error.message
: undefined,
},
}
);
}
},
...otherMutationOptions,
mutationMode,
returnPromise: mutationMode === 'pessimistic',
getMutateWithMiddlewares,
}
);
const save = useCallback(
(
data: Partial<RecordType>,
{
onSuccess: onSuccessFromSave,
onError: onErrorFromSave,
transform: transformFromSave,
meta: metaFromSave,
} = {} as SaveHandlerCallbacks
) =>
Promise.resolve(
transformFromSave
? transformFromSave(data, {
previousData: recordCached.previousData,
})
: transform
? transform(data, {
previousData: recordCached.previousData,
})
: data
).then(async (data: Partial<RecordType>) => {
try {
await update(
resource,
{
id,
data,
meta: metaFromSave ?? mutationMeta,
},
{
onError: onErrorFromSave,
onSuccess: onSuccessFromSave,
}
);
} catch (error) {
if ((error as HttpError).body?.errors != null) {
return (error as HttpError).body.errors;
}
}
}),
[
id,
mutationMeta,
resource,
transform,
update,
recordCached.previousData,
]
);
return {
defaultTitle,
error,
isFetching,
isLoading,
isPending,
mutationMode,
record,
redirect: redirectTo,
refetch,
registerMutationMiddleware,
resource,
save,
saving,
unregisterMutationMiddleware,
} as EditControllerResult<RecordType, ErrorType>;
};
const DefaultRedirect = 'list';
export interface EditControllerProps<
RecordType extends RaRecord = any,
ErrorType = Error,
> {
disableAuthentication?: boolean;
id?: RecordType['id'];
mutationMode?: MutationMode;
mutationOptions?: UseUpdateOptions<RecordType, ErrorType>;
queryOptions?: UseGetOneOptions<RecordType, ErrorType>;
redirect?: RedirectionSideEffect;
resource?: string;
transform?: TransformData;
[key: string]: any;
}
export interface EditControllerBaseResult<RecordType extends RaRecord = any>
extends SaveContextValue<RecordType> {
defaultTitle?: string;
isFetching: boolean;
isLoading: boolean;
refetch: UseGetOneHookValue<RecordType>['refetch'];
redirect: RedirectionSideEffect;
resource: string;
saving: boolean;
}
export interface EditControllerLoadingResult<RecordType extends RaRecord = any>
extends EditControllerBaseResult<RecordType> {
record: undefined;
error: null;
isPending: true;
}
export interface EditControllerLoadingErrorResult<
RecordType extends RaRecord = any,
TError = Error,
> extends EditControllerBaseResult<RecordType> {
record: undefined;
error: TError;
isPending: false;
}
export interface EditControllerRefetchErrorResult<
RecordType extends RaRecord = any,
TError = Error,
> extends EditControllerBaseResult<RecordType> {
record: RecordType;
error: TError;
isPending: false;
}
export interface EditControllerSuccessResult<RecordType extends RaRecord = any>
extends EditControllerBaseResult<RecordType> {
record: RecordType;
error: null;
isPending: false;
}
export type EditControllerResult<
RecordType extends RaRecord = any,
ErrorType = Error,
> =
| EditControllerLoadingResult<RecordType>
| EditControllerLoadingErrorResult<RecordType, ErrorType>
| EditControllerRefetchErrorResult<RecordType, ErrorType>
| EditControllerSuccessResult<RecordType>;