forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProxyfier.ts
More file actions
393 lines (322 loc) · 10.5 KB
/
Proxyfier.ts
File metadata and controls
393 lines (322 loc) · 10.5 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
import { TTree, ITrackStateTree, IMutationTree } from './types'
import isPlainObject from 'is-plain-obj'
export const IS_PROXY = Symbol('IS_PROXY')
export const PATH = Symbol('PATH')
export const VALUE = Symbol('VALUE')
export const CACHED_PROXY = Symbol('CACHED_PROXY')
const arrayMutations = new Set([
'push',
'shift',
'pop',
'unshift',
'splice',
'reverse',
'sort',
'copyWithin',
])
export class Proxifier {
private proxyCache = {}
private disposeRemoveProxy: () => void
constructor(private tree: TTree) {
this.disposeRemoveProxy = tree.master.onRemoveProxy(this.removeProxies)
}
private concat(path, prop) {
return path ? path + '.' + prop : prop
}
addProxyToCache(path: string, proxy: any) {
const pathArray = path.split('.')
let currentCache = this.proxyCache
const length = pathArray.length
const keyIndex = length - 1
for (let x = 0; x < length; x++) {
const key = pathArray[x]
if (!currentCache[key]) {
currentCache[key] = {}
}
if (x === keyIndex) {
currentCache[key][CACHED_PROXY] = proxy
} else {
currentCache = currentCache[key]
}
}
return proxy
}
getProxyFromCache(path: string) {
const pathArray = path.split('.')
let currentCache = this.proxyCache
const length = pathArray.length
const keyIndex = length - 1
for (let x = 0; x < length; x++) {
const key = pathArray[x]
if (!currentCache[key]) {
return null
}
if (x === keyIndex) {
return currentCache[key][CACHED_PROXY]
} else {
currentCache = currentCache[key]
}
}
}
removeProxies = (path: string) => {
const pathArray = path.split('.')
let currentCache = this.proxyCache
const length = pathArray.length
const keyIndex = length - 1
for (let x = 0; x < length; x++) {
const key = pathArray[x]
if (!currentCache[key]) {
return null
}
if (x === keyIndex) {
delete currentCache[key]
} else {
currentCache = currentCache[key]
}
}
}
ensureMutationTrackingIsEnabled(path) {
if (this.tree.master.options.devmode && !this.tree.canMutate()) {
throw new Error(
`proxy-state-tree - You are mutating the path "${path}", but it is not allowed`
)
}
}
isDefaultProxifier() {
return this.tree.proxifier === this.tree.master.proxifier
}
ensureValueDosntExistInStateTreeElsewhere(value) {
if (value && value[IS_PROXY] === true) {
throw new Error(
`proxy-state-tree - You are trying to insert a value that already exists in the state tree on path "${
value[PATH]
}"`
)
}
}
trackPath(path: string) {
if (!this.tree.canTrack()) {
return
}
if (this.isDefaultProxifier()) {
const trackStateTree = this.tree.master.currentTree as ITrackStateTree<
any
>
if (!trackStateTree) {
return
}
trackStateTree.addTrackingPath(path)
} else {
;(this.tree as ITrackStateTree<any>).addTrackingPath(path)
}
}
// With tracking trees we want to ensure that we are always
// on the currently tracked tree. This ensures when we access
// a tracking proxy that is not part of the current tracking tree (pass as prop)
// we move the ownership to the current tracker
getTrackingTree() {
if (this.tree.master.currentTree && this.isDefaultProxifier()) {
return this.tree.master.currentTree
}
if (!this.tree.canTrack()) {
return null
}
if (this.tree.canTrack()) {
return this.tree
}
return null
}
getMutationTree() {
return this.tree.master.mutationTree || (this.tree as IMutationTree<any>)
}
private createArrayProxy(value, path) {
var proxifier = this
return (
this.getProxyFromCache(path) ||
this.addProxyToCache(
path,
new Proxy(value, {
get(target, prop) {
if (prop === IS_PROXY) return true
if (prop === PATH) return path
if (prop === VALUE) return value
if (
prop === 'length' ||
(typeof target[prop] === 'function' &&
!arrayMutations.has(String(prop))) ||
typeof prop === 'symbol'
) {
return target[prop]
}
const trackingTree = proxifier.getTrackingTree()
const nestedPath = proxifier.concat(path, prop)
trackingTree && trackingTree.proxifier.trackPath(nestedPath)
const method = String(prop)
if (arrayMutations.has(method)) {
// On POP we can optimally remove cached proxy by removing the specific one
// that was removed. If it is a PUSH, we do not have to remove anything, as
// existing proxies stays the same
if (method === 'pop') {
proxifier.tree.master.removeProxy(nestedPath)
} else if (method !== 'push') {
proxifier.tree.master.removeProxy(path)
}
proxifier.ensureMutationTrackingIsEnabled(nestedPath)
return (...args) => {
const mutationTree = proxifier.getMutationTree()
mutationTree.addMutation({
method,
path: path,
args: args,
})
return target[prop](...args)
}
}
if (target[prop] === undefined) {
return undefined
}
return proxifier.proxify(target[prop], nestedPath)
},
set(target, prop, value) {
const nestedPath = proxifier.concat(path, prop)
proxifier.ensureMutationTrackingIsEnabled(nestedPath)
proxifier.ensureValueDosntExistInStateTreeElsewhere(value)
const mutationTree = proxifier.getMutationTree()
if (isPlainObject(target[prop])) {
proxifier.tree.master.removeProxy(nestedPath)
}
mutationTree.addMutation({
method: 'set',
path: nestedPath,
args: [value],
})
return Reflect.set(target, prop, value)
},
})
)
)
}
private createObjectProxy(value, path) {
const proxifier = this
return (
this.getProxyFromCache(path) ||
this.addProxyToCache(
path,
new Proxy(value, {
get(target, prop) {
if (prop === IS_PROXY) return true
if (prop === PATH) return path
if (prop === VALUE) return value
if (typeof prop === 'symbol' || prop in Object.prototype)
return target[prop]
const descriptor = Object.getOwnPropertyDescriptor(target, prop)
if (descriptor && 'get' in descriptor) {
const value = descriptor.get.call(
proxifier.getProxyFromCache(path)
)
if (
proxifier.tree.master.options.devmode &&
proxifier.tree.master.options.onGetter
) {
proxifier.tree.master.options.onGetter(
proxifier.concat(path, prop),
value
)
}
return value
}
const trackingTree = proxifier.getTrackingTree()
const targetValue = target[prop]
const nestedPath = proxifier.concat(path, prop)
trackingTree && trackingTree.proxifier.trackPath(nestedPath)
if (typeof targetValue === 'function') {
const dynamicValue = proxifier.tree.master.options.dynamicWrapper
? proxifier.tree.master.options.dynamicWrapper(
proxifier.tree,
nestedPath,
targetValue
)
: targetValue(proxifier.tree, nestedPath)
if (dynamicValue && dynamicValue[IS_PROXY]) {
return proxifier.proxify(
dynamicValue[VALUE],
dynamicValue[PATH]
)
}
return dynamicValue
}
if (targetValue === undefined) {
return undefined
}
return proxifier.proxify(targetValue, nestedPath)
},
set(target, prop, value) {
const nestedPath = proxifier.concat(path, prop)
proxifier.ensureMutationTrackingIsEnabled(nestedPath)
proxifier.ensureValueDosntExistInStateTreeElsewhere(value)
if (isPlainObject(target[prop]) || Array.isArray(target[prop])) {
proxifier.tree.master.removeProxy(nestedPath)
}
let objectChangePath
if (!(prop in target)) {
objectChangePath = path
}
const mutationTree = proxifier.getMutationTree()
mutationTree.addMutation(
{
method: 'set',
path: nestedPath,
args: [value],
},
objectChangePath
)
if (typeof value === 'function') {
return Reflect.set(target, prop, () => value)
}
return Reflect.set(target, prop, value)
},
deleteProperty(target, prop) {
const nestedPath = proxifier.concat(path, prop)
proxifier.ensureMutationTrackingIsEnabled(nestedPath)
if (isPlainObject(target[prop]) || Array.isArray(target[prop])) {
proxifier.tree.master.removeProxy(nestedPath)
}
let objectChangePath
if (prop in target) {
objectChangePath = path
}
const mutationTree = proxifier.getMutationTree()
mutationTree.addMutation(
{
method: 'unset',
path: nestedPath,
args: [],
},
objectChangePath
)
delete target[prop]
return true
},
})
)
)
}
proxify(value: any, path: string) {
if (value) {
if (value[IS_PROXY] && String(value[PATH]) !== String(path)) {
return this.proxify(value[VALUE], path)
} else if (value[IS_PROXY]) {
return value
} else if (isPlainObject(value)) {
return this.createObjectProxy(value, path)
} else if (Array.isArray(value)) {
return this.createArrayProxy(value, path)
}
}
return value
}
dispose() {
this.proxyCache = {}
this.disposeRemoveProxy()
}
}