-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathuseMutationWithMutationMode.ts
More file actions
441 lines (406 loc) · 15.7 KB
/
useMutationWithMutationMode.ts
File metadata and controls
441 lines (406 loc) · 15.7 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
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
437
438
439
440
441
import { useEffect, useMemo, useRef } from 'react';
import {
useMutation,
useQueryClient,
UseMutationOptions,
UseMutationResult,
MutateOptions,
QueryKey,
} from '@tanstack/react-query';
import { useAddUndoableMutation } from './undo/useAddUndoableMutation';
import { MutationMode } from '../types';
import { useEvent } from '../util';
export const useMutationWithMutationMode = <
ErrorType = Error,
TData extends { data?: unknown } = { data?: unknown },
TVariables = unknown,
>(
params: TVariables = {} as TVariables,
options: UseMutationWithMutationModeOptions<ErrorType, TData, TVariables>
): UseMutationWithMutationModeResult<boolean, ErrorType, TData, TVariables> => {
const queryClient = useQueryClient();
const addUndoableMutation = useAddUndoableMutation();
const {
mutationKey,
mutationMode = 'pessimistic',
mutationFn,
getMutateWithMiddlewares,
updateCache,
getSnapshot,
onUndo,
...mutationOptions
} = options;
if (mutationFn == null) {
throw new Error(
'useMutationWithMutationMode mutation requires a mutationFn'
);
}
const mutationFnEvent = useEvent(mutationFn);
const updateCacheEvent = useEvent(updateCache);
const getSnapshotEvent = useEvent(getSnapshot);
const onUndoEvent = useEvent(onUndo ?? noop);
const getMutateWithMiddlewaresEvent = useEvent(
getMutateWithMiddlewares ??
(noop as unknown as (
mutate: MutationFunction<TData, TVariables>
) => (params: TVariables) => Promise<TData>)
);
const mode = useRef<MutationMode>(mutationMode);
useEffect(() => {
mode.current = mutationMode;
}, [mutationMode]);
// This ref won't be updated when params change in an effect, only when the mutate callback is called (See L247)
// This ensures that for undoable and optimistic mutations, the params are not changed by side effects (unselectAll for instance)
// _after_ the mutate function has been called, while keeping the ability to change declaration time params _until_ the mutation is called.
const paramsRef = useRef<Partial<TVariables>>(params);
// Ref that stores the snapshot of the state before the mutation to allow reverting it
const snapshot = useRef<Snapshot>([]);
// Ref that stores the mutation with middlewares to avoid losing them if the calling component is unmounted
const mutateWithMiddlewares = useRef<
| MutationFunction<TData, TVariables>
| DataProviderMutationWithMiddlewareFunction<TData, TVariables>
>(mutationFnEvent);
// We need to store the call-time onError and onSettled in refs to be able to call them in the useMutation hook even
// when the calling component is unmounted
const callTimeOnError =
useRef<
UseMutationWithMutationModeOptions<
ErrorType,
TData,
TVariables
>['onError']
>();
const callTimeOnSettled =
useRef<
UseMutationWithMutationModeOptions<
ErrorType,
TData,
TVariables
>['onSettled']
>();
// We don't need to keep a ref on the onSuccess callback as we call it ourselves for optimistic and
// undoable mutations. There is a limitation though: if one of the side effects applied by the onSuccess callback
// unmounts the component that called the useUpdate hook (redirect for instance), it must be the last one applied,
// otherwise the other side effects may not applied.
const hasCallTimeOnSuccess = useRef(false);
const mutation = useMutation<TData['data'], ErrorType, Partial<TVariables>>(
{
mutationKey,
mutationFn: async params => {
if (params == null) {
throw new Error(
'useMutationWithMutationMode mutation requires parameters'
);
}
return (
mutateWithMiddlewares
.current(params as TVariables)
// Middlewares expect the data property of the dataProvider response
.then(({ data }) => data)
);
},
...mutationOptions,
onMutate: async (...args) => {
if (mutationOptions.onMutate) {
const userContext =
(await mutationOptions.onMutate(...args)) || {};
return {
snapshot: snapshot.current,
// @ts-ignore
...userContext,
};
} else {
// Return a context object with the snapshot value
return { snapshot: snapshot.current };
}
},
onError: (...args) => {
if (
mode.current === 'optimistic' ||
mode.current === 'undoable'
) {
const [, , onMutateResult] = args;
// If the mutation fails, use the context returned from onMutate to rollback
(onMutateResult as { snapshot: Snapshot }).snapshot.forEach(
([key, value]) => {
queryClient.setQueryData(key, value);
}
);
}
if (callTimeOnError.current) {
return callTimeOnError.current(...args);
}
if (mutationOptions.onError) {
return mutationOptions.onError(...args);
}
// call-time error callback is executed by react-query
},
onSuccess: (...args) => {
if (mode.current === 'pessimistic') {
const [data, variables] = args;
// update the getOne and getList query cache with the new result
updateCacheEvent(
{ ...paramsRef.current, ...variables },
{
mutationMode: mode.current,
},
data
);
if (
mutationOptions.onSuccess &&
!hasCallTimeOnSuccess.current
) {
mutationOptions.onSuccess(...args);
}
}
},
onSettled: (...args) => {
if (
mode.current === 'optimistic' ||
mode.current === 'undoable'
) {
const [, , , onMutateResult] = args;
// Always refetch after error or success:
(onMutateResult as { snapshot: Snapshot }).snapshot.forEach(
([queryKey]) => {
queryClient.invalidateQueries({ queryKey });
}
);
}
if (callTimeOnSettled.current) {
return callTimeOnSettled.current(...args);
}
if (mutationOptions.onSettled) {
return mutationOptions.onSettled(...args);
}
},
}
);
const mutate = async (
callTimeParams: Partial<TVariables> = {},
callTimeOptions: MutateOptions<
TData['data'],
ErrorType,
Partial<TVariables>,
unknown
> & { mutationMode?: MutationMode; returnPromise?: boolean } = {}
) => {
const {
mutationMode,
returnPromise = mutationOptions.returnPromise,
onError,
onSettled,
onSuccess,
...otherCallTimeOptions
} = callTimeOptions;
// store the hook time params *at the moment of the call*
// because they may change afterwards, which would break the undoable mode
// as the previousData would be overwritten by the optimistic update
paramsRef.current = params;
// Store the mutation with middlewares to avoid losing them if the calling component is unmounted
if (getMutateWithMiddlewares) {
mutateWithMiddlewares.current = getMutateWithMiddlewaresEvent(
(params: TVariables) => {
return mutationFnEvent(params);
}
);
} else {
mutateWithMiddlewares.current = mutationFnEvent;
}
// We need to keep the onSuccess callback here and not in the useMutation for undoable mutations
hasCallTimeOnSuccess.current = !!onSuccess;
// We need to store the onError and onSettled callbacks here to be able to call them in the useMutation hook
// so that they are called even when the calling component is unmounted
callTimeOnError.current = onError;
callTimeOnSettled.current = onSettled;
if (mutationMode) {
mode.current = mutationMode;
}
if (returnPromise && mode.current !== 'pessimistic') {
console.warn(
'The returnPromise parameter can only be used if the mutationMode is set to pessimistic'
);
}
snapshot.current = getSnapshotEvent(
{ ...paramsRef.current, ...callTimeParams },
{
mutationMode: mode.current,
}
);
if (mode.current === 'pessimistic') {
if (returnPromise) {
return mutation.mutateAsync(
{ ...paramsRef.current, ...callTimeParams },
// We don't pass onError and onSettled here as we will call them in the useMutation hook side effects
{ onSuccess, ...otherCallTimeOptions }
);
}
return mutation.mutate(
{ ...paramsRef.current, ...callTimeParams },
// We don't pass onError and onSettled here as we will call them in the useMutation hook side effects
{ onSuccess, ...otherCallTimeOptions }
);
}
// Cancel any outgoing re-fetches (so they don't overwrite our optimistic update)
await Promise.all(
snapshot.current.map(([queryKey]) =>
queryClient.cancelQueries({ queryKey })
)
);
// Optimistically update to the new value
const optimisticResult = updateCacheEvent(
{ ...paramsRef.current, ...callTimeParams },
{
mutationMode: mode.current,
},
undefined
);
// run the success callbacks during the next tick
setTimeout(() => {
if (onSuccess) {
onSuccess(
optimisticResult,
{ ...paramsRef.current, ...callTimeParams },
{
snapshot: snapshot.current,
},
{
client: queryClient,
mutationKey,
meta: mutationOptions.meta,
}
);
} else if (
mutationOptions.onSuccess &&
!hasCallTimeOnSuccess.current
) {
mutationOptions.onSuccess(
optimisticResult,
{ ...paramsRef.current, ...callTimeParams },
{
snapshot: snapshot.current,
},
{
client: queryClient,
mutationKey,
meta: mutationOptions.meta,
}
);
}
}, 0);
if (mode.current === 'optimistic') {
// call the mutate method without success side effects
return mutation.mutate({
...paramsRef.current,
...callTimeParams,
});
} else {
// Undoable mutation: add the mutation to the undoable queue.
// The Notification component will dequeue it when the user confirms or cancels the message.
addUndoableMutation(({ isUndo }) => {
if (isUndo) {
if (onUndo) {
onUndoEvent(
{
...paramsRef.current,
...callTimeParams,
},
{
mutationMode: mode.current,
}
);
}
// rollback
snapshot.current.forEach(([key, value]) => {
queryClient.setQueryData(key, value);
});
} else {
// call the mutate method without success side effects
mutation.mutate({
...paramsRef.current,
...callTimeParams,
});
}
});
}
};
const mutationResult = useMemo(
() => ({
isLoading: mutation.isPending,
...mutation,
}),
[mutation]
);
return [useEvent(mutate), mutationResult];
};
const noop = () => {};
export type Snapshot = [key: QueryKey, value: any][];
type MutationFunction<
TData extends { data?: unknown } = { data?: unknown },
TVariables = unknown,
> = (variables: TVariables) => Promise<TData>;
export type UseMutationWithMutationModeOptions<
ErrorType = Error,
TData extends { data?: unknown } = { data?: unknown },
TVariables = unknown,
> = Omit<
UseMutationOptions<TData['data'], ErrorType, Partial<TVariables>>,
'mutationFn'
> & {
getMutateWithMiddlewares?: (
mutate: MutationFunction<TData, TVariables>
) => (params: TVariables) => Promise<TData>;
mutationFn?: MutationFunction<TData, TVariables>;
mutationMode?: MutationMode;
returnPromise?: boolean;
updateCache: <OptionsType extends { mutationMode: MutationMode }>(
params: Partial<TVariables>,
options: OptionsType,
mutationResult: TData['data'] | undefined
) => TData['data'];
getSnapshot: <OptionsType extends { mutationMode: MutationMode }>(
params: Partial<TVariables>,
options: OptionsType
) => Snapshot;
onUndo?: <OptionsType extends { mutationMode: MutationMode }>(
params: Partial<TVariables>,
options: OptionsType
) => void;
};
type DataProviderMutationWithMiddlewareFunction<
TData extends { data?: unknown } = { data?: unknown },
TVariables = unknown,
> = (params: Partial<TVariables>, options?: any) => Promise<TData>;
export type MutationFunctionWithOptions<
TReturnPromise extends boolean = boolean,
ErrorType = Error,
TData extends { data?: unknown } = { data?: unknown },
TVariables = unknown,
> = (
params?: Partial<TVariables>,
options?: MutateOptions<
TData['data'],
ErrorType,
Partial<TVariables>,
unknown
> & {
mutationMode?: MutationMode;
returnPromise?: TReturnPromise;
}
) => Promise<TReturnPromise extends true ? TData['data'] : void>;
export type UseMutationWithMutationModeResult<
TReturnPromise extends boolean = boolean,
ErrorType = Error,
TData extends { data?: unknown } = { data?: unknown },
TVariables = unknown,
> = [
MutationFunctionWithOptions<TReturnPromise, ErrorType, TData, TVariables>,
UseMutationResult<
TData['data'],
ErrorType,
Partial<TVariables>,
unknown
> & {
isLoading: boolean;
},
];