-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Expand file tree
/
Copy pathSubscription.ts
More file actions
219 lines (190 loc) · 5.35 KB
/
Subscription.ts
File metadata and controls
219 lines (190 loc) · 5.35 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
import type { Store } from 'redux'
import { getBatch } from './batch'
import type { Node } from './autotracking/tracking'
import {
createCache,
TrackingCache,
$REVISION,
} from './autotracking/autotracking'
import { updateNode } from './autotracking/proxy'
// encapsulates the subscription logic for connecting a component to the redux store, as
// well as nesting subscriptions of descendant components, so that we can ensure the
// ancestor components re-render before descendants
type VoidFunc = () => void
export interface CacheWrapper {
cache: TrackingCache
}
type Listener = {
callback: VoidFunc
next: Listener | null
prev: Listener | null
trigger: 'always' | 'tracked'
selectorCache?: CacheWrapper
}
function createListenerCollection() {
const batch = getBatch()
let first: Listener | null = null
let last: Listener | null = null
return {
clear() {
first = null
last = null
},
notify() {
console.log('Notifying subscribers')
batch(() => {
let listener = first
while (listener) {
console.log('Listener: ', listener)
if (listener.trigger == 'tracked') {
if (listener.selectorCache!.cache.needsRecalculation()) {
console.log('Calling subscriber due to recalc need')
console.log(
'Calling subscriber due to recalc. Revision before: ',
$REVISION
)
listener.callback()
console.log('Revision after: ', $REVISION)
} else {
console.log(
'Skipping subscriber, no recalc: ',
listener.selectorCache
)
}
} else {
listener.callback()
}
listener = listener.next
}
})
},
get() {
let listeners: Listener[] = []
let listener = first
while (listener) {
listeners.push(listener)
listener = listener.next
}
return listeners
},
subscribe(
callback: () => void,
options: AddNestedSubOptions = { trigger: 'always' }
) {
let isSubscribed = true
console.log('Adding listener: ', options.trigger)
let listener: Listener = (last = {
callback,
next: null,
prev: last,
trigger: options.trigger,
selectorCache:
options.trigger === 'tracked' ? options.cache! : undefined,
// subscriberCache:
// options.trigger === 'tracked'
// ? createCache(() => {
// console.log('Calling subscriberCache')
// listener.selectorCache!.get()
// callback()
// })
// : undefined,
})
if (listener.prev) {
listener.prev.next = listener
} else {
first = listener
}
return function unsubscribe() {
if (!isSubscribed || first === null) return
isSubscribed = false
if (listener.next) {
listener.next.prev = listener.prev
} else {
last = listener.prev
}
if (listener.prev) {
listener.prev.next = listener.next
} else {
first = listener.next
}
}
},
}
}
type ListenerCollection = ReturnType<typeof createListenerCollection>
interface AddNestedSubOptions {
trigger: 'always' | 'tracked'
cache?: CacheWrapper
}
export interface Subscription {
addNestedSub: (listener: VoidFunc, options?: AddNestedSubOptions) => VoidFunc
notifyNestedSubs: VoidFunc
handleChangeWrapper: VoidFunc
isSubscribed: () => boolean
onStateChange?: VoidFunc | null
trySubscribe: (options?: AddNestedSubOptions) => void
tryUnsubscribe: VoidFunc
getListeners: () => ListenerCollection
}
const nullListeners = {
notify() {},
get: () => [],
} as unknown as ListenerCollection
export function createSubscription(
store: Store,
parentSub?: Subscription,
trackingNode?: Node<any>
) {
let unsubscribe: VoidFunc | undefined
let listeners: ListenerCollection = nullListeners
function addNestedSub(
listener: () => void,
options: AddNestedSubOptions = { trigger: 'always' }
) {
console.log('addNestedSub: ', options)
trySubscribe(options)
return listeners.subscribe(listener, options)
}
function notifyNestedSubs() {
if (store && trackingNode) {
console.log('Updating node in notifyNestedSubs')
updateNode(trackingNode, store.getState())
}
listeners.notify()
}
function handleChangeWrapper() {
if (subscription.onStateChange) {
subscription.onStateChange()
}
}
function isSubscribed() {
return Boolean(unsubscribe)
}
function trySubscribe(options: AddNestedSubOptions = { trigger: 'always' }) {
if (!unsubscribe) {
console.log('trySubscribe, parentSub: ', parentSub)
unsubscribe = parentSub
? parentSub.addNestedSub(handleChangeWrapper, options)
: store.subscribe(handleChangeWrapper)
listeners = createListenerCollection()
}
}
function tryUnsubscribe() {
if (unsubscribe) {
unsubscribe()
unsubscribe = undefined
listeners.clear()
listeners = nullListeners
}
}
const subscription: Subscription = {
addNestedSub,
notifyNestedSubs,
handleChangeWrapper,
isSubscribed,
trySubscribe,
tryUnsubscribe,
getListeners: () => listeners,
}
return subscription
}