-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtype.js
78 lines (66 loc) · 1.82 KB
/
type.js
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
'use strict'
const EventEmitter = require('events')
const { isCollection } = require('immutable')
module.exports = (Type) => {
return (id) => {
let state = Type.initial()
const ret = new EventEmitter()
const emitter = new ChangeEmitter(ret)
let valueCache
Object.keys(Type.mutators || {}).forEach((mutatorName) => {
const mutator = Type.mutators[mutatorName]
ret[mutatorName] = (...args) => {
const delta = mutator(id, state, ...args)
const newState = Type.join.call(emitter, state, delta)
if (Type.incrementalValue) {
valueCache = Type.incrementalValue(state, newState, delta, valueCache)
}
state = newState
emitter.emitAll()
ret.emit('state changed', state)
return delta
}
})
ret.id = id
ret.value = () => {
if (Type.incrementalValue && (valueCache !== undefined)) {
let returnValue = valueCache.value
if (isCollection(returnValue)) {
returnValue = returnValue.toJS()
}
return returnValue
} else {
return Type.value(state)
}
}
ret.apply = (delta) => {
const newState = Type.join.call(emitter, state, delta, { strict: true })
if (Type.incrementalValue) {
valueCache = Type.incrementalValue(state, newState, delta, valueCache)
}
state = newState
emitter.emitAll()
ret.emit('state changed', state)
return state
}
ret.state = () => state
ret.join = Type.join
return ret
}
}
class ChangeEmitter {
constructor (client) {
this._client = client
this._events = []
}
changed (event) {
this._events.push(event)
}
emitAll () {
const events = this._events
this._events = []
events.forEach((event) => {
this._client.emit('change', event)
})
}
}