-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndicator.js
64 lines (58 loc) · 1.88 KB
/
Indicator.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
import './Indicator.css';
let instance;
function createDOM(innerHTML) {
const shell = document.createElement('div');
shell.innerHTML = innerHTML;
return shell.children[0];
}
function init(text) {
instance = createDOM(`
<div class="lemon-indicator">
<div class="lemon-indicator-mask"></div>
<div class="lemon-indicator-wrapper" style="padding: ${text ? '20px' : '15px'};">
<div class="lemon-indicator-spin"></div>
<div class="lemon-indicator-wrong" style="display: none;">!</div>
<div class="lemon-indicator-text" style="display: ${text ? 'block' : 'none'};">${text}</div>
</div>
</div>
`);
instance.mask = instance.querySelectorAll('.lemon-indicator-mask')[0];
instance.spin = instance.querySelectorAll('.lemon-indicator-spin')[0];
instance.wrong = instance.querySelectorAll('.lemon-indicator-wrong')[0];
instance.text = instance.querySelectorAll('.lemon-indicator-text')[0];
instance.addEventListener('touchmove', (e) => {
e.preventDefault();
e.stopPropagation();
});
document.body.appendChild(instance);
}
export default {
open(msg) {
if (!instance) {
init(msg);
} else {
instance.text.textContent = msg;
instance.text.style.display = 'block';
instance.wrong.style.display = 'none';
instance.mask.style.display = 'block';
instance.spin.style.display = 'block';
instance.style.opacity = '1';
}
},
close() {
if (!instance) return;
instance.style.opacity = '0';
instance.mask.style.display = 'none';
},
fail(msg = 'connection timeout', delay = 1500) {
if (!instance) return;
instance.spin.style.display = 'none';
instance.wrong.style.display = 'block';
instance.text.textContent = msg;
instance.text.style.display = 'block';
setTimeout(() => {
instance.style.opacity = '0';
instance.mask.style.display = 'none';
}, delay);
},
};