-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Expand file tree
/
Copy pathuseCreate.ts
More file actions
312 lines (296 loc) · 11 KB
/
useCreate.ts
File metadata and controls
312 lines (296 loc) · 11 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
import {
useQueryClient,
type UseMutationOptions,
type UseMutationResult,
type MutateOptions,
} from '@tanstack/react-query';
import { useDataProvider } from './useDataProvider';
import type {
RaRecord,
CreateParams,
Identifier,
DataProvider,
MutationMode,
CreateResult,
} from '../types';
import { useEvent } from '../util';
import {
type Snapshot,
useMutationWithMutationMode,
} from './useMutationWithMutationMode';
/**
* Get a callback to call the dataProvider.create() method, the result and the loading state.
*
* @param {string} resource
* @param {Params} params The create parameters { data }
* @param {Object} options Options object to pass to the queryClient.
* May include side effects to be executed upon success or failure, e.g. { onSuccess: () => { refresh(); } }
*
* @typedef Params
* @prop params.data The record to create, e.g. { title: 'hello, world' }
*
* @returns The current mutation state. Destructure as [create, { data, error, isPending }].
*
* The return value updates according to the request state:
*
* - initial: [create, { isPending: false, isIdle: true }]
* - start: [create, { isPending: true }]
* - success: [create, { data: [data from response], isPending: false, isSuccess: true }]
* - error: [create, { error: [error from response], isPending: false, isError: true }]
*
* The create() function must be called with a resource and a parameter object: create(resource, { data, meta }, options)
*
* This hook uses react-query useMutation under the hood.
* This means the state object contains mutate, isIdle, reset and other react-query methods.
*
* @see https://tanstack.com/query/v5/docs/react/reference/useMutation
*
* @example // set params when calling the create callback
*
* import { useCreate, useRecordContext } from 'react-admin';
*
* const LikeButton = () => {
* const record = useRecordContext();
* const like = { postId: record.id };
* const [create, { isPending, error }] = useCreate();
* const handleClick = () => {
* create('likes', { data: like })
* }
* if (error) { return <p>ERROR</p>; }
* return <button disabled={isPending} onClick={handleClick}>Like</button>;
* };
*
* @example // set params when calling the hook
*
* import { useCreate, useRecordContext } from 'react-admin';
*
* const LikeButton = () => {
* const record = useRecordContext();
* const like = { postId: record.id };
* const [create, { isPending, error }] = useCreate('likes', { data: like });
* if (error) { return <p>ERROR</p>; }
* return <button disabled={isPending} onClick={() => create()}>Like</button>;
* };
*
* @example // TypeScript
* const [create, { data }] = useCreate<Product>('products', { data: product });
* \-- data is Product
*/
export const useCreate = <
RecordType extends Omit<RaRecord, 'id'> = any,
MutationError = unknown,
ResultRecordType extends RaRecord = RecordType & { id: Identifier },
>(
resource?: string,
params: Partial<CreateParams<Partial<RecordType>>> = {},
options: UseCreateOptions<RecordType, MutationError, ResultRecordType> = {}
): UseCreateResult<RecordType, boolean, MutationError, ResultRecordType> => {
const dataProvider = useDataProvider();
const queryClient = useQueryClient();
const {
mutationMode = 'pessimistic',
getMutateWithMiddlewares,
...mutationOptions
} = options;
const dataProviderCreate = useEvent((resource: string, params) =>
dataProvider.create<RecordType, ResultRecordType>(
resource,
params as CreateParams<RecordType>
)
);
const [mutate, mutationResult] = useMutationWithMutationMode<
MutationError,
CreateResult<ResultRecordType>,
UseCreateMutateParams<RecordType>
>(
{ resource, ...params },
{
...mutationOptions,
mutationKey: [resource, 'create', params],
mutationMode,
mutationFn: ({ resource, ...params }) => {
if (resource == null) {
throw new Error('useCreate mutation requires a resource');
}
if (params.data == null) {
throw new Error(
'useCreate mutation requires a non-empty data object'
);
}
return dataProviderCreate(resource, params);
},
updateCache: (
{ resource, ...params },
{ mutationMode },
result
) => {
const id =
mutationMode === 'pessimistic'
? result?.id
: params.data?.id;
if (!id) {
throw new Error(
'Invalid dataProvider response for create: missing id'
);
}
// hack: only way to tell react-query not to fetch this query for the next 5 seconds
// because setQueryData doesn't accept a stale time option
const now = Date.now();
const updatedAt =
mutationMode === 'undoable' ? now + 5 * 1000 : now;
// Stringify and parse the data to remove undefined values.
// If we don't do this, an update with { id: undefined } as payload
// would remove the id from the record, which no real data provider does.
const clonedData = JSON.parse(
JSON.stringify(
mutationMode === 'pessimistic' ? result : params.data
)
);
queryClient.setQueryData(
[resource, 'getOne', { id: String(id), meta: params.meta }],
(record: RecordType) => ({ ...record, ...clonedData }),
{ updatedAt }
);
return clonedData;
},
getQueryKeys: ({ resource, ...params }, { mutationMode }) => {
const queryKeys: any[] = [
[resource, 'getList'],
[resource, 'getInfiniteList'],
[resource, 'getMany'],
[resource, 'getManyReference'],
];
if (mutationMode !== 'pessimistic' && params.data?.id) {
queryKeys.push([
resource,
'getOne',
{ id: String(params.data.id), meta: params.meta },
]);
}
return queryKeys;
},
getMutateWithMiddlewares: mutationFn => {
if (getMutateWithMiddlewares) {
// Immediately get the function with middlewares applied so that even if the middlewares gets unregistered (because of a redirect for instance),
// we still have them applied when users have called the mutate function.
const mutateWithMiddlewares = getMutateWithMiddlewares(
dataProviderCreate.bind(dataProvider)
);
return args => {
// This is necessary to avoid breaking changes in useCreate:
// The mutation function must have the same signature as before (resource, params) and not ({ resource, params })
const { resource, ...params } = args;
return mutateWithMiddlewares(resource, params);
};
}
return args => mutationFn(args);
},
onUndo: ({ resource, data, meta }) => {
queryClient.removeQueries({
queryKey: [
resource,
'getOne',
{ id: String(data?.id), meta },
],
exact: true,
});
},
onSettled: (
result,
error,
variables,
context: { snapshot: Snapshot }
) => {
// For creation, we always refetch after error or success:
context.snapshot.forEach(([queryKey]) => {
queryClient.invalidateQueries({ queryKey });
});
},
}
);
const create = useEvent(
(
callTimeResource: string | undefined = resource,
callTimeParams: Partial<CreateParams<RecordType>> = {},
callTimeOptions: MutateOptions<
ResultRecordType,
MutationError,
Partial<UseCreateMutateParams<RecordType>>,
unknown
> & {
mutationMode?: MutationMode;
returnPromise?: boolean;
} = {}
) => {
return mutate(
{
resource: callTimeResource,
...callTimeParams,
},
callTimeOptions
);
}
);
return [create, mutationResult];
};
export interface UseCreateMutateParams<
RecordType extends Omit<RaRecord, 'id'> = any,
> {
resource?: string;
data?: Partial<Omit<RecordType, 'id'>>;
meta?: any;
}
export type UseCreateOptions<
RecordType extends Omit<RaRecord, 'id'> = any,
MutationError = unknown,
ResultRecordType extends RaRecord = RecordType & { id: Identifier },
> = UseMutationOptions<
ResultRecordType,
MutationError,
Partial<UseCreateMutateParams<RecordType>>
> & {
mutationMode?: MutationMode;
returnPromise?: boolean;
getMutateWithMiddlewares?: <
CreateFunctionType extends
DataProvider['create'] = DataProvider['create'],
>(
mutate: CreateFunctionType
) => (
...Params: Parameters<CreateFunctionType>
) => ReturnType<CreateFunctionType>;
};
export type CreateMutationFunction<
RecordType extends Omit<RaRecord, 'id'> = any,
TReturnPromise extends boolean = boolean,
MutationError = unknown,
ResultRecordType extends RaRecord = RecordType & { id: Identifier },
> = (
resource?: string,
params?: Partial<CreateParams<Partial<RecordType>>>,
options?: MutateOptions<
ResultRecordType,
MutationError,
Partial<UseCreateMutateParams<RecordType>>,
unknown
> & { mutationMode?: MutationMode; returnPromise?: TReturnPromise }
) => Promise<TReturnPromise extends true ? ResultRecordType : void>;
export type UseCreateResult<
RecordType extends Omit<RaRecord, 'id'> = any,
TReturnPromise extends boolean = boolean,
MutationError = unknown,
ResultRecordType extends RaRecord = RecordType & { id: Identifier },
> = [
CreateMutationFunction<
RecordType,
TReturnPromise,
MutationError,
ResultRecordType
>,
UseMutationResult<
ResultRecordType,
MutationError,
Partial<UseCreateMutateParams<RecordType>>,
unknown
> & { isLoading: boolean },
];