-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexport.js
More file actions
79 lines (62 loc) · 1.52 KB
/
export.js
File metadata and controls
79 lines (62 loc) · 1.52 KB
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
const css = String.raw;
class Style {
status = 'unloaded'; // unloaded, loading, complete.
url = '';
text = '';
applyQueue = [];
constructor(url) {
this.url = url;
this.update();
}
async update() {
if (this.status === 'loading') return;
this.status = 'loading';
await fetch(this.url).then(r => r.text()).then((text) => {
this.text = text;
this.status = 'complete';
for (const ele of this.applyQueue) {
ele.styleEle.textContent = text;
};
}).catch((error) => {
this.status = 'unloaded';
throw error;
});
}
};
class StylingAdvancedHTMLElement extends HTMLElement {
static styleFileUrl;
static initialStyleText = css`
:host {
position: absolute !important;
visibility: hidden !important;
}
`;
static styleList = [];
styleEle = document.createElement('style');
constructor() {
super();
const shadow = this.attachShadow({
mode: 'open',
});
const {
styleFileUrl,
initialStyleText,
styleList,
} = this.constructor;
let style = styleList.find(style => styleFileUrl === style.url);
if (!style) {
style = new Style(styleFileUrl);
styleList.push(style);
};
let styleText;
if (style.status !== 'complete') {
styleText = initialStyleText;
style.applyQueue.push(this);
} else {
styleText = style.text;
};
this.styleEle.textContent = styleText;
shadow.prepend(this.styleEle);
}
};
export { StylingAdvancedHTMLElement };