-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmatryoshka-loader-mixin.html
209 lines (183 loc) · 5.96 KB
/
matryoshka-loader-mixin.html
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
<link rel="import" href="../polymer/polymer-element.html">
<script>
'use strict';
/**
* @mixinFunction
* @polymer
* @interface
* @demo demo/mixin.html Child Loading state
* @demo demo/mixin-defer.html Defer children loading state
* @summary Defines a loading flag for elements that automatically take into account the loading state of the child
* elements. For a visual explanation, take a look at the demo section, that might explain something more.
*/
const MatryoshkaLoaderMixin = (superClass) => {
/**
* @polymer
* @extends {superClass}
* @mixinClass
* @implements {MatryoshkaLoaderMixin}
*/
class MatryoshkaLoader extends superClass {
static get properties() {
return {
/**
* List of all child elements that have propagated their events to this element.
* @private
*/
__relatedElements: {
type: Array,
value: []
},
/**
* True if the element or one of it's children are still loading.
*/
loading: {
type: Boolean,
readOnly: true,
reflectToAttribute: true,
computed: '_isLoading(__relatedElements, hostLoading)'
},
/**
* True if the element its self and all children are loaded
*/
loaded: {
type: Boolean,
readOnly: true,
reflectToAttribute: true, //@todo remove this
computed: '_isLoaded(__relatedElements, hostLoading)'
},
/**
* Flag to set if the element its self is loading
*/
hostLoading: {
type: Boolean,
value: false,
observer: '_onHostLoading'
},
/**
* Flag to prevent bubbling of loading state to parent, it doesn't fire anything, but it can still receive events
* from child elements.
*/
defer: {
type: Boolean,
value: false,
},
}
}
/**
* @protected
*/
ready() {
super.ready();
this.addEventListener('matryoshka-loading', (e) => this._onMatryoshkaLoading(e));
this.addEventListener('matryoshka-loaded', (e) => this._onMatryoshkaLoaded(e));
}
/**
* When the hostLoading property of the element changes, we need to fire of some events.
* If defer is set, we prevent the firing of events.
*
* @private
*/
_onHostLoading(hostLoading) {
Polymer.Async.animationFrame.run(_ => {
if (this.defer) {
return;
}
let eventOptions = {bubbles: true, composed: true, detail: {srcElement: this}};
if (hostLoading) {
this.dispatchEvent(new CustomEvent('matryoshka-loading', eventOptions));
} else {
this.dispatchEvent(new CustomEvent('matryoshka-loaded', eventOptions));
}
})
}
/**
* Calculate the loaded state of the element
* @private
*/
_isLoaded(relatedElements, hostLoading) {
return !this._isLoading(relatedElements, hostLoading);
}
/**
* Calculate the loading state of the element
* @private
*/
_isLoading(relatedElements, hostLoading) {
return hostLoading || this._areRelatedElementsLoading(relatedElements);
}
/**
* When an event has fired that a child has started loading it get's added to the __relatedElements list..
* @private
*/
_onMatryoshkaLoading(event) {
if (event && this === event.detail.srcElement) {
return true;
}
if (this.defer) {
event.stopPropagation();
}
this.addRelatedElement(event.detail.srcElement);
return true;
}
/**
* When an event has fired that a child element is loaded we recheck everything
* @private
*/
_onMatryoshkaLoaded(e) {
this.checkLoaded();
}
/**
* Force a recheck of the elements loading state, normally called automatically.
*/
checkLoaded() {
this.__relatedElements = this.__relatedElements.slice(0);
}
/**
* @protected
*/
connectedCallback() {
super.connectedCallback();
this._checkLoaded = this.checkLoaded.bind(this)
}
/**
* Ability to manually add a related elements that it needs to check for their loaded state.
* The element passed must implement MatryoshkaLoaderMixin as well.
* @param {HTMLElement} elem Optional parameter with the event that triggers.
*/
addRelatedElement(elem) {
if (typeof elem.loaded !== "boolean") {
console.warn(
"Element requesting to be watched for loading state should implement MatryoshkaLoaderMixin",
elem
);
}
elem.addEventListener('matryoshka-loaded', this._checkLoaded);
var elems = this.__relatedElements ? this.__relatedElements.slice(0) : [];
elems.push(elem);
this.__relatedElements = elems;
this.checkLoaded();
}
/**
* Remove an element from being watch for it's loading state.
* @param elem
*/
removeRelatedElement(elem) {
elem.removeEventListener('matryoshka-loaded', this._checkLoaded)
var elements = this.__relatedElements ? this.__relatedElements.slice(0) : [];
this.__relatedElements = elements.filter((relatedElem) => relatedElem !== elem)
this.checkLoaded()
}
/**
* Gives back a boolean of certain elements are still loading
* @param relatedElements
* @returns {boolean}
* @private
*/
_areRelatedElementsLoading(relatedElements) {
var loadingElements = relatedElements.filter((elem) => elem.loading);
return loadingElements.length > 0
}
}
return MatryoshkaLoader;
}
</script>