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
426 lines (355 loc) · 11.1 KB
/
Proxyfier.ts
File metadata and controls
426 lines (355 loc) · 11.1 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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
import { IMutationTree, ITrackStateTree, TTree } from './types'
const ENVIRONMENT = (() => {
let env: string
try {
env = process.env.NODE_ENV!
} catch {
env = 'development'
}
return env
})()
export const IS_PROXY = Symbol('IS_PROXY')
export const PATH = Symbol('PATH')
export const VALUE = Symbol('VALUE')
export const PROXY_TREE = Symbol('PROXY_TREE')
const isPlainObject = (value: any) => {
return (
String(value) === '[object Object]' && value.constructor.name === 'Object'
)
}
const arrayMutations = new Set([
'push',
'shift',
'pop',
'unshift',
'splice',
'reverse',
'sort',
'copyWithin',
])
const getValue = (proxyOrValue) =>
proxyOrValue && proxyOrValue[IS_PROXY] ? proxyOrValue[VALUE] : proxyOrValue
const isClass = (value) =>
typeof value === 'object' &&
value !== null &&
!Array.isArray(value) &&
value.constructor.name !== 'Object' &&
Object.isExtensible(value)
const shouldProxy = (value: any) => {
return (
value !== undefined &&
(!isClass(value) ||
(isClass(value) &&
!(value instanceof Date) &&
!(value instanceof Map) &&
!(value instanceof Set)))
)
}
export class Proxifier {
CACHED_PROXY = Symbol('CACHED_PROXY')
delimiter: string
ssr: boolean
constructor(private tree: TTree) {
this.delimiter = tree.master.options.delimiter
this.ssr = Boolean(tree.master.options.ssr)
}
private concat(path, prop) {
return path ? path + this.delimiter + prop : prop
}
ensureMutationTrackingIsEnabled(path) {
if (ENVIRONMENT === 'production') return
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. The following could have happened:
- The mutation is explicitly being blocket
- You are passing state to a 3rd party tool trying to manipulate the state
- You are running asynchronous code and forgot to "await" its execution
`
)
}
}
isDefaultProxifier() {
return this.tree.proxifier === this.tree.master.proxifier
}
ensureValueDosntExistInStateTreeElsewhere(value) {
if (ENVIRONMENT === 'production') return
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]
}"`
)
}
return value
}
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 isProxyCached(value, path) {
return (
value[this.CACHED_PROXY] &&
String(value[this.CACHED_PROXY][PATH]) === String(path)
)
}
private createArrayProxy(value, path) {
if (!this.ssr && this.isProxyCached(value, path)) {
return value[this.CACHED_PROXY]
}
const proxifier = this
const proxy = new Proxy(value, {
get(target, prop) {
if (prop === IS_PROXY) return true
if (prop === PATH) return path
if (prop === VALUE) return value
if (prop === 'indexOf') {
return (searchTerm, offset) =>
value.indexOf(getValue(searchTerm), getValue(offset))
}
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)
const currentTree = trackingTree || proxifier.tree
trackingTree && trackingTree.proxifier.trackPath(nestedPath)
currentTree.trackPathListeners.forEach((cb) => cb(nestedPath))
const method = String(prop)
if (arrayMutations.has(method)) {
/* @__PURE__ */ proxifier.ensureMutationTrackingIsEnabled(nestedPath)
return (...args) => {
const mutationTree = proxifier.getMutationTree()
let result
if (ENVIRONMENT === 'production') {
result = target[prop](...args)
} else {
result = target[prop](
...args.map((arg) =>
/* @__PURE__ */ proxifier.ensureValueDosntExistInStateTreeElsewhere(
arg
)
)
)
}
mutationTree.addMutation({
method,
path: path,
delimiter: proxifier.delimiter,
args: args,
hasChangedValue: true,
})
return result
}
}
if (shouldProxy(target[prop])) {
return proxifier.proxify(target[prop], nestedPath)
}
return target[prop]
},
set(target, prop, value) {
const nestedPath = proxifier.concat(path, prop)
/* @__PURE__ */ proxifier.ensureMutationTrackingIsEnabled(nestedPath)
/* @__PURE__ */ proxifier.ensureValueDosntExistInStateTreeElsewhere(
value
)
const mutationTree = proxifier.getMutationTree()
const result = Reflect.set(target, prop, value)
mutationTree.addMutation({
method: 'set',
path: nestedPath,
args: [value],
delimiter: proxifier.delimiter,
hasChangedValue: true,
})
return result
},
})
if (!this.ssr) {
Object.defineProperty(value, this.CACHED_PROXY, {
value: proxy,
configurable: true,
})
}
return proxy
}
private createObjectProxy(object, path) {
if (!this.ssr && this.isProxyCached(object, path)) {
return object[this.CACHED_PROXY]
}
const proxifier = this
const proxy = new Proxy(object, {
get(target, prop) {
if (prop === IS_PROXY) return true
if (prop === PATH) return path
if (prop === VALUE) return object
if (prop === PROXY_TREE) return proxifier.tree
if (typeof prop === 'symbol' || prop in Object.prototype)
return target[prop]
const descriptor =
Object.getOwnPropertyDescriptor(target, prop) ||
(Object.getPrototypeOf(target) &&
Object.getOwnPropertyDescriptor(
Object.getPrototypeOf(target),
prop
))
if (descriptor && 'get' in descriptor) {
const value = descriptor.get.call(proxy)
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)
const currentTree = trackingTree || proxifier.tree
if (typeof targetValue === 'function') {
if (proxifier.tree.master.options.onGetFunction) {
return proxifier.tree.master.options.onGetFunction(
trackingTree || proxifier.tree,
nestedPath,
target,
prop
)
}
return isClass(target)
? targetValue
: targetValue.call(target, proxifier.tree, nestedPath)
} else {
currentTree.trackPathListeners.forEach((cb) => cb(nestedPath))
trackingTree && trackingTree.proxifier.trackPath(nestedPath)
}
if (shouldProxy(targetValue)) {
return proxifier.proxify(targetValue, nestedPath)
}
return targetValue
},
set(target, prop, value) {
const nestedPath = proxifier.concat(path, prop)
/* @__PURE__ */ proxifier.ensureMutationTrackingIsEnabled(nestedPath)
/* @__PURE__ */ proxifier.ensureValueDosntExistInStateTreeElsewhere(
value
)
let objectChangePath
if (!(prop in target)) {
objectChangePath = path
}
const mutationTree = proxifier.getMutationTree()
const existingValue = target[prop]
if (
typeof value === 'function' &&
proxifier.tree.master.options.onSetFunction
) {
value = proxifier.tree.master.options.onSetFunction(
proxifier.getTrackingTree() || proxifier.tree,
nestedPath,
target,
prop,
value
)
}
const hasChangedValue = existingValue !== value
const result = Reflect.set(target, prop, value)
mutationTree.addMutation(
{
method: 'set',
path: nestedPath,
args: [value],
delimiter: proxifier.delimiter,
hasChangedValue,
},
objectChangePath
)
return result
},
deleteProperty(target, prop) {
const nestedPath = proxifier.concat(path, prop)
/* @__PURE__ */ proxifier.ensureMutationTrackingIsEnabled(nestedPath)
let objectChangePath
if (prop in target) {
objectChangePath = path
}
const mutationTree = proxifier.getMutationTree()
delete target[prop]
mutationTree.addMutation(
{
method: 'unset',
path: nestedPath,
args: [],
delimiter: proxifier.delimiter,
hasChangedValue: true,
},
objectChangePath
)
return true
},
})
if (!this.ssr) {
Object.defineProperty(object, this.CACHED_PROXY, {
value: proxy,
configurable: true,
})
}
return proxy
}
proxify(value: any, path: string) {
if (value) {
const isUnmatchingProxy =
value[IS_PROXY] &&
(String(value[PATH]) !== String(path) ||
value[VALUE][this.CACHED_PROXY] !== value)
if (isUnmatchingProxy) {
return this.proxify(value[VALUE], path)
} else if (value[IS_PROXY]) {
return value
} else if (Array.isArray(value)) {
return this.createArrayProxy(value, path)
} else if (isPlainObject(value) || isClass(value)) {
return this.createObjectProxy(value, path)
}
}
return value
}
}