This repository has been archived by the owner on May 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.js
263 lines (261 loc) · 8.87 KB
/
index.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
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
/*! (c) Andrea Giammarchi - ISC */
(function (document, customElements, Object) {'use strict';
// trick of the year 🎉 https://twitter.com/WebReflection/status/1232269200317652992
if (document.importNode.length != 1 || customElements.get('ungap-li'))
return;
var EXTENDS = 'extends';
try {
// class LI extends HTMLLIElement {}
var desc = {};
desc[EXTENDS] = 'li';
var HtmlLI = HTMLLIElement;
var LI = function () {
return Reflect.construct(HtmlLI, [], LI);
};
LI.prototype = Object.create(HtmlLI.prototype);
customElements.define('ungap-li', LI, desc);
if (!/is="ungap-li"/.test((new LI).outerHTML))
throw desc;
} catch (o_O) {
(function() {
var ATTRIBUTE_CHANGED_CALLBACK = 'attributeChangedCallback';
var CONNECTED_CALLBACK = 'connectedCallback';
var DISCONNECTED_CALLBACK = 'disconnectedCallback';
var ElemProto = Element.prototype;
var assign = Object.assign;
var create = Object.create;
var defineProperties = Object.defineProperties;
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
var setPrototypeOf = Object.setPrototypeOf;
var define = customElements.define;
var get = customElements.get;
var upgrade = customElements.upgrade;
var whenDefined = customElements.whenDefined;
var registry = create(null);
var lifeCycle = new WeakMap;
var changesOptions = {childList: true, subtree: true};
// Safari TP decided at some point that it was OK to break the Web
// https://github.com/ungap/custom-elements-builtin/issues/25
Reflect
.ownKeys(self)
.filter(function (k) {
return typeof k == 'string' && /^HTML(?!Element)/.test(k);
})
.forEach(function (k) {
function HTMLBuiltIn() {}
var tmp = self[k];
setPrototypeOf(HTMLBuiltIn, tmp);
(HTMLBuiltIn.prototype = tmp.prototype).constructor = HTMLBuiltIn;
tmp = {};
tmp[k] = {value: HTMLBuiltIn};
defineProperties(self, tmp);
});
new MutationObserver(DOMChanges).observe(document, changesOptions);
wrapOriginal(Document.prototype, 'importNode');
wrapOriginal(Node.prototype, 'cloneNode');
defineProperties(
customElements,
{
define: {
value: function (name, Class, options) {
name = name.toLowerCase();
if (options && EXTENDS in options) {
// currently options is not used but preserved for the future
registry[name] = assign({}, options, {Class: Class});
var query = options[EXTENDS] + '[is="' + name + '"]';
var changes = document.querySelectorAll(query);
for (var i = 0, length = changes.length; i < length; i++)
setupIfNeeded(changes[i]);
}
else
define.apply(customElements, arguments);
}
},
get: {
value: function (name) {
return name in registry ?
registry[name].Class :
get.call(customElements, name);
}
},
upgrade: {
value: function (node) {
var info = getInfo(node);
if (info && !(node instanceof info.Class))
setup(node, info);
else
upgrade.call(customElements, node);
}
},
whenDefined: {
value: function (name) {
return name in registry ?
Promise.resolve() :
whenDefined.call(customElements, name);
}
}
}
);
var createElement = document.createElement;
defineProperties(
document,
{
createElement: {
value: function (name, options) {
var node = createElement.call(document, name);
if (options && 'is' in options) {
node.setAttribute('is', options.is);
customElements.upgrade(node);
}
return node;
}
}
}
);
var attach = getOwnPropertyDescriptor(ElemProto, 'attachShadow').value;
var innerHTML = getOwnPropertyDescriptor(ElemProto, 'innerHTML');
defineProperties(
ElemProto,
{
attachShadow: {
value: function () {
var root = attach.apply(this, arguments);
new MutationObserver(DOMChanges).observe(root, changesOptions);
return root;
}
},
innerHTML: {
get: innerHTML.get,
set: function (HTML) {
innerHTML.set.call(this, HTML);
if (/\bis=("|')?[a-z0-9_-]+\1/i.test(HTML))
setupSubNodes(this, setupIfNeeded);
}
}
}
);
function DOMChanges(changes) {
for (var i = 0, length = changes.length; i < length; i++) {
var change = changes[i];
var addedNodes = change.addedNodes;
var removedNodes = change.removedNodes;
for (var j = 0, len = addedNodes.length; j < len; j++)
setupIfNeeded(addedNodes[j]);
for (var j = 0, len = removedNodes.length; j < len; j++)
disconnectIfNeeded(removedNodes[j]);
}
}
function attributeChanged(changes) {
for (var i = 0, length = changes.length; i < length; i++) {
var change = changes[i];
var attributeName = change.attributeName;
var oldValue = change.oldValue;
var target = change.target;
var newValue = target.getAttribute(attributeName);
if (
ATTRIBUTE_CHANGED_CALLBACK in target &&
!(oldValue == newValue && newValue == null)
)
target[ATTRIBUTE_CHANGED_CALLBACK](
attributeName,
oldValue,
target.getAttribute(attributeName),
// TODO: add getAttributeNS if the node is XML
null
);
}
}
function disconnectIfNeeded(node) {
if (node.nodeType !== 1)
return;
var info = getInfo(node);
if (
info &&
node instanceof info.Class &&
DISCONNECTED_CALLBACK in node &&
lifeCycle.get(node) !== DISCONNECTED_CALLBACK
) {
lifeCycle.set(node, DISCONNECTED_CALLBACK);
Promise.resolve(node).then(invokeDisconnectedCallback);
}
setupSubNodes(node, disconnectIfNeeded);
}
function getInfo(node) {
var is = node.getAttribute('is');
if (is) {
is = is.toLowerCase();
if (is in registry)
return registry[is];
}
return null;
}
function invokeConnectedCallback(node) {
node[CONNECTED_CALLBACK]();
}
function invokeDisconnectedCallback(node) {
node[DISCONNECTED_CALLBACK]();
}
function setup(node, info) {
var Class = info.Class;
var oa = Class.observedAttributes || [];
setPrototypeOf(node, Class.prototype);
if (oa.length) {
new MutationObserver(attributeChanged).observe(
node,
{
attributes: true,
attributeFilter: oa,
attributeOldValue: true
}
);
var changes = [];
for (var i = 0, length = oa.length; i < length; i++)
changes.push({attributeName: oa[i], oldValue: null, target: node});
attributeChanged(changes);
}
}
function setupIfNeeded(node) {
if (node.nodeType !== 1)
return;
var info = getInfo(node);
if (info) {
if (!(node instanceof info.Class))
setup(node, info);
if (
CONNECTED_CALLBACK in node &&
node.isConnected &&
lifeCycle.get(node) !== CONNECTED_CALLBACK
) {
lifeCycle.set(node, CONNECTED_CALLBACK);
Promise.resolve(node).then(invokeConnectedCallback);
}
}
setupSubNodes(node, setupIfNeeded);
}
function setupSubNodes(node, setup) {
for (var
t = node.content,
nodes = (t && t.nodeType == 11 ? t : node).querySelectorAll('[is]'),
i = 0, length = nodes.length; i < length; i++
)
setup(nodes[i]);
}
function wrapOriginal(prototype, name) {
var method = prototype[name];
var desc = {};
desc[name] = {
value: function () {
var result = method.apply(this, arguments);
switch (result.nodeType) {
case 1:
case 11:
setupSubNodes(result, setupIfNeeded);
}
return result;
}
};
defineProperties(prototype, desc);
}
}());
}
}(document, customElements, Object));