forked from CredenceOrg/Credence-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuseApiMutation.ts
More file actions
143 lines (127 loc) · 4.12 KB
/
Copy pathuseApiMutation.ts
File metadata and controls
143 lines (127 loc) · 4.12 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
import { useCallback, useRef, useState } from 'react'
export type UseApiMutationStatus = 'idle' | 'pending' | 'success' | 'error'
export interface ApiMutationHelpers<TData> {
setData: (updater: TData | ((current: TData | undefined) => TData | undefined)) => void
rollback: () => void
}
export interface UseApiMutationOptions<TData, TVariables, TContext = unknown> {
mutationFn: (variables: TVariables) => Promise<TData>
onMutate?: (
variables: TVariables,
helpers: ApiMutationHelpers<TData>
) => Promise<TContext | void> | TContext | void
onSuccess?: (
data: TData,
variables: TVariables,
context: TContext | undefined
) => void | Promise<void>
onError?: (
error: Error,
variables: TVariables,
context: TContext | undefined
) => void | Promise<void>
onSettled?: (
data: TData | undefined,
error: Error | null,
variables: TVariables,
context: TContext | undefined
) => void | Promise<void>
initialData?: TData
}
export interface UseApiMutationResult<TData, TVariables> {
data: TData | undefined
error: Error | null
isPending: boolean
isError: boolean
isSuccess: boolean
status: UseApiMutationStatus
mutate: (variables: TVariables) => void
mutateAsync: (variables: TVariables) => Promise<TData>
reset: () => void
}
export function useApiMutation<TData, TVariables, TContext = unknown>(
options: UseApiMutationOptions<TData, TVariables, TContext>
): UseApiMutationResult<TData, TVariables> {
const { mutationFn, onMutate, onSuccess, onError, onSettled, initialData } = options
const [data, setDataState] = useState<TData | undefined>(initialData)
const [error, setError] = useState<Error | null>(null)
const [isPending, setIsPending] = useState(false)
const [status, setStatus] = useState<UseApiMutationStatus>('idle')
const dataRef = useRef<TData | undefined>(initialData)
const previousDataRef = useRef<TData | undefined>(initialData)
const setData = useCallback(
(updater: TData | ((current: TData | undefined) => TData | undefined)) => {
const nextValue =
typeof updater === 'function'
? (updater as (current: TData | undefined) => TData | undefined)(dataRef.current)
: updater
dataRef.current = nextValue
setDataState(nextValue)
},
[]
)
const rollback = useCallback(() => {
const nextValue = previousDataRef.current
dataRef.current = nextValue
setDataState(nextValue)
}, [])
const reset = useCallback(() => {
setError(null)
setIsPending(false)
setStatus('idle')
dataRef.current = initialData
previousDataRef.current = initialData
setDataState(initialData)
}, [initialData])
const mutateAsync = useCallback(
async (variables: TVariables) => {
previousDataRef.current = dataRef.current
setError(null)
setIsPending(true)
setStatus('pending')
let context: TContext | undefined
let settledError: Error | null = null
let settledData: TData | undefined
try {
context = (await onMutate?.(variables, { setData, rollback })) as TContext | undefined
const result = await mutationFn(variables)
settledData = result
dataRef.current = result
setDataState(result)
setError(null)
setStatus('success')
await onSuccess?.(result, variables, context)
return result
} catch (err) {
const mutationError = err instanceof Error ? err : new Error(String(err))
settledError = mutationError
rollback()
setError(mutationError)
setStatus('error')
await onError?.(mutationError, variables, context)
throw mutationError
} finally {
setIsPending(false)
await onSettled?.(settledData, settledError, variables, context)
}
},
[mutationFn, onError, onMutate, onSettled, onSuccess, rollback, setData]
)
const mutate = useCallback(
(variables: TVariables) => {
void mutateAsync(variables)
},
[mutateAsync]
)
return {
data,
error,
isPending,
isError: status === 'error',
isSuccess: status === 'success',
status,
mutate,
mutateAsync,
reset,
}
}