forked from TanStack/query
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmutationCache.ts
119 lines (98 loc) · 3.01 KB
/
mutationCache.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
import type { MutationOptions } from './types'
import type { QueryClient } from './queryClient'
import { notifyManager } from './notifyManager'
import { Mutation, MutationState } from './mutation'
import { matchMutation, MutationFilters, noop } from './utils'
import { Subscribable } from './subscribable'
// TYPES
interface MutationCacheConfig {
onError?: (
error: unknown,
variables: unknown,
context: unknown,
mutation: Mutation<unknown, unknown, unknown, unknown>
) => void
}
type MutationCacheListener = (mutation?: Mutation) => void
// CLASS
export class MutationCache extends Subscribable<MutationCacheListener> {
config: MutationCacheConfig
private mutations: Mutation<any, any, any, any>[]
private mutationId: number
constructor(config?: MutationCacheConfig) {
super()
this.config = config || {}
this.mutations = []
this.mutationId = 0
}
build<TData, TError, TVariables, TContext>(
client: QueryClient,
options: MutationOptions<TData, TError, TVariables, TContext>,
state?: MutationState<TData, TError, TVariables, TContext>
): Mutation<TData, TError, TVariables, TContext> {
const mutation = new Mutation({
mutationCache: this,
mutationId: ++this.mutationId,
options: client.defaultMutationOptions(options),
state,
defaultOptions: options.mutationKey
? client.getMutationDefaults(options.mutationKey)
: undefined,
})
this.add(mutation)
return mutation
}
add(mutation: Mutation<any, any, any, any>): void {
this.mutations.push(mutation)
this.notify(mutation)
}
remove(mutation: Mutation<any, any, any, any>): void {
this.mutations = this.mutations.filter(x => x !== mutation)
mutation.cancel()
this.notify(mutation)
}
clear(): void {
notifyManager.batch(() => {
this.mutations.forEach(mutation => {
this.remove(mutation)
})
})
}
getAll(): Mutation[] {
return this.mutations
}
find<TData = unknown, TError = unknown, TVariables = any, TContext = unknown>(
filters: MutationFilters
): Mutation<TData, TError, TVariables, TContext> | undefined {
if (typeof filters.exact === 'undefined') {
filters.exact = true
}
return this.mutations.find(mutation => matchMutation(filters, mutation))
}
findAll(filters: MutationFilters): Mutation[] {
return this.mutations.filter(mutation => matchMutation(filters, mutation))
}
notify(mutation?: Mutation<any, any, any, any>) {
notifyManager.batch(() => {
this.listeners.forEach(listener => {
listener(mutation)
})
})
}
onFocus(): void {
this.resumePausedMutations()
}
onOnline(): void {
this.resumePausedMutations()
}
resumePausedMutations(): Promise<void> {
const pausedMutations = this.mutations.filter(x => x.state.isPaused)
return notifyManager.batch(() =>
pausedMutations.reduce(
(promise, mutation) =>
promise.then(() => mutation.continue().catch(noop)),
Promise.resolve()
)
)
}
}