-
Notifications
You must be signed in to change notification settings - Fork 0
/
htmlfills.old.js
126 lines (115 loc) Β· 3.69 KB
/
htmlfills.old.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
!function (window, document) { 'use strict';
/* onElement */
var listeners = [],
root = document,
Observer;
function qsa(el, selector) {
try {
return el.querySelectorAll(selector);
} catch (e) {
return [];
}
}
function onElement(selector, callback) {
const listener = {
selector: selector,
callback: callback,
elements: new WeakMap(),
};
var els = qsa(root, listener.selector), i = 0, el;
while (el = els[i++]) {
listener.elements.set(el, true);
listener.callback.call(el, el);
}
listeners.push(listener);
if (!Observer) {
Observer = new MutationObserver(checkMutations);
Observer.observe(root, {
childList: true,
subtree: true
});
}
checkListener(listener);
}
function checkListener(listener, target) {
var i = 0, el, els = [];
try {
target && target.matches(listener.selector) && els.push(target);
} catch (e) { }
if (loaded) { // ok? check inside node on innerHTML - only when loaded
Array.prototype.push.apply(els, qsa(target || root, listener.selector));
}
while (el = els[i++]) {
if (listener.elements.has(el)) continue;
listener.elements.set(el, true);
listener.callback.call(el, el);
}
}
function checkListeners(inside) {
var i = 0, listener;
while (listener = listeners[i++]) checkListener(listener, inside);
}
function checkMutations(mutations) {
var j = 0, i, mutation, nodes, target;
while (mutation = mutations[j++]) {
nodes = mutation.addedNodes, i = 0;
while (target = nodes[i++]) target.nodeType === 1 && checkListeners(target);
}
}
let loaded = false;
document.addEventListener('DOMContentLoaded', function () {
loaded = true;
});
/* /onElement */
const polyfills = {
dialog: {
supports: 'HTMLDialogElement' in window,
js: 'https://cdn.jsdelivr.net/gh/nuxodin/[email protected]/dist/dialog-polyfill.min.js',
//js: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/dialog-polyfill.min.js',
//css: 'https://cdn.jsdelivr.net/npm/[email protected]/dialog-polyfill.css',
//onfound: function(el){
// dialogPolyfill.registerDialog(el);
//}
},
"[focusgroup]": { // waiting for but to fix: https://github.com/MicrosoftEdge/MSEdgeExplainers/pull/581
supports: 'focusgroup' in document.head,
js: 'https://cdn.jsdelivr.net/gh/MicrosoftEdge/MSEdgeExplainers/Focusgroup/focusgroup_polyfill.js',
},
"[inert]": {
supports: Object.getOwnPropertyDescriptor(HTMLElement.prototype, 'inert')?.enumerable === true, // hacky test, mod.js adds inert property support
js: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/inert.min.js',
},
}
Object.keys(polyfills).forEach(function(selector){
const data = polyfills[selector];
if (data.supports) return;
console.log(selector, data.supports)
onElement(selector, function (el) {
onScript(data.js, function(){
data.onfound && data.onfound(el)
});
});
});
const scripts = {};
function onScript(path, cb){
if (!scripts[path]) {
scripts[path] = {
callbacks:[cb]
};
loadScript(path, function(){
scripts[path].callbacks.forEach(cb);
scripts[path].loaded = true;;
})
}
if (scripts[path].loaded) cb();
else scripts[path].callbacks.push(cb);
}
function loadScript(path, cb, eb) {
const elem = document.createElement('script');
elem.async = false;
elem.src = path;
elem.onload = cb;
elem.onerror = eb;
document.documentElement.firstChild.appendChild(elem);
}
}(window, document);