-
Notifications
You must be signed in to change notification settings - Fork 8
/
controllers.js
124 lines (106 loc) · 2.38 KB
/
controllers.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
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
import {
observeContext,
unobserveContext,
onContextObserve,
registerContext,
updateContext,
} from './core.js'
/**
* @typedef { import('./core.js').Context } Context
*/
function setValue(host, value, instance) {
instance._value = value
if (typeof instance.callback === 'function') {
instance.callback.call(host, value)
} else {
host.requestUpdate()
}
}
/**
* @callback ContextConsumerCallback
* @param {HTMLElement} host
* @param {*} [value]
* @returns {void}
*/
class ContextConsumer {
/**
* Creates an instance of ContextProvider.
* @param {HTMLElement} host
* @param {string | Context} context Context identifier
* @param {ContextConsumerCallback} callback
*/
constructor(host, context, callback) {
host.addController(this)
this.host = host
this.context = context
this.callback = callback
this._value = undefined
}
get value() {
return this._value
}
hostConnected() {
observeContext(this.host, this.context, this, setValue)
}
hostDisconnected() {
unobserveContext(this.host, this.context)
}
}
function getFromValue(host, instance) {
return instance._value
}
class ContextProvider {
/**
* Creates an instance of ContextProvider.
* @param {HTMLElement} host
* @param {string | Context} context Context identifier
* @param {*} initialValue
*/
constructor(host, context, initialValue) {
if (typeof host.addController === 'function') {
host.addController(this)
}
this.host = host
this.context = context
this._value = initialValue
this._initialized = false
this._finalized = false
registerContext(host, context, this, getFromValue)
onContextObserve(host, context, () => {
if (!this._initialized) {
this._initialized = true
this.initialize()
}
})
}
get value() {
return this._value
}
set value(value) {
this._value = value
updateContext(this.host, this.context)
}
connect() {
if (this._finalized) {
this.initialize()
this._finalized = false
this._initialized = true
}
}
disconnect() {
if (this._initialized) {
this._initialized = false
this._finalized = true
this.finalize()
}
}
hostConnected() {
this.connect()
}
hostDisconnected() {
this.disconnect()
}
initialize() {}
finalize() {}
}
export { ContextConsumer, ContextProvider }