forked from posva/pinia-colada
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefine-mutation.ts
68 lines (66 loc) · 2.06 KB
/
define-mutation.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
import { useMutationCache } from './mutation-store'
import type { ErrorDefault } from './types-extension'
import {
type UseMutationOptions,
type UseMutationReturn,
useMutation,
} from './use-mutation'
import type { _EmptyObject } from './utils'
/**
* Define a mutation with the given options. Similar to `useMutation(options)` but allows you to reuse the mutation in
* multiple places.
*
* @param options - the options to define the mutation
* @example
* ```ts
* const useCreateTodo = defineMutation({
* mutation: (todoText: string) =>
* fetch('/api/todos', {
* method: 'POST',
* body: JSON.stringify({ text: todoText }),
* }),
* })
* ```
*/
export function defineMutation<
TResult,
TVars = void,
TError = ErrorDefault,
TContext extends Record<any, any> = _EmptyObject,
>(
options: UseMutationOptions<TResult, TVars, TError, TContext>,
): () => UseMutationReturn<TResult, TVars, TError>
/**
* Define a mutation with a function setup. Allows to return arbitrary values from the mutation function, create
* contextual refs, rename the returned values, etc.
*
* @param setup - a function to setup the mutation
* @example
* ```ts
* const useCreateTodo = defineMutation(() => {
* const todoText = ref('')
* const { data, mutate, ...rest } = useMutation({
* mutation: () =>
* fetch('/api/todos', {
* method: 'POST',
* body: JSON.stringify({ text: todoText.value }),
* }),
* })
* // expose the todoText ref and rename other methods for convenience
* return { ...rest, createTodo: mutate, todo: data, todoText }
* })
* ```
*/
export function defineMutation<T>(setup: () => T): () => T
export function defineMutation(
optionsOrSetup: UseMutationOptions | (() => unknown),
): () => unknown {
const setupFn = typeof optionsOrSetup === 'function'
? optionsOrSetup
: () => useMutation(optionsOrSetup)
return () => {
// TODO: provide a way to clean them up `mutationCache.clear()`
const mutationCache = useMutationCache()
return mutationCache.ensureDefinedMutation(setupFn)
}
}