-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.js
115 lines (84 loc) · 3.38 KB
/
app.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
import { BUBBLE } from './loaders/bubble.js';
import { CIRCLE } from './loaders/circle.js';
import { RECT } from './loaders/rect.js';
import { LINE } from './loaders/line.js';
import { PROGRESS } from './loaders/progress.js';
import { TEXT } from './loaders/text.js';
import { GRAPH } from './loaders/graph.js';
import { OBJECTS } from './loaders/objects.js';
import { SKELETON } from './loaders/skeleton.js';
const LOADERS = [...CIRCLE, ...BUBBLE, ...RECT, ...LINE, ...PROGRESS, ...TEXT, ...OBJECTS, ...GRAPH , ...SKELETON ];
const main = document.getElementById('main');
// Create Spinners
LOADERS.forEach((loader, i) => {
// Append Loader
main.appendChild(createLoader(i));
})
function createLoader(i){
let loader = LOADERS[i];
// Create html
let sectionEl = document.createElement('div');
sectionEl.setAttribute('class', 'section');
sectionEl.setAttribute('data-id', loader.id);
sectionEl.setAttribute('data-index', (i + 1));
let shadowRoot = sectionEl.attachShadow({ mode: 'open' });
let loaderEl = document.createElement('span');
loaderEl.setAttribute('class', 'loader');
loaderEl.innerHTML = loader.content || null;
shadowRoot.appendChild(loaderEl);
//Create CSS
let loaderStyles = document.createElement('style');
loaderStyles.type = 'text/css';
loaderStyles.innerHTML = loader.css;
shadowRoot.appendChild(loaderStyles);
return sectionEl
}
document.querySelectorAll('#main .section').forEach(elm => {
elm.addEventListener('click', (e) => {
let index = parseInt(e.target.dataset.index);
let showCase = document.querySelector('.showcase');
showCase.replaceChildren(createLoader((index - 1)));
// console.log(e);
showCase.dataset.index = index;
// load code
document.querySelector('#markup').textContent = LOADERS[index - 1].html;
document.querySelector('#css').textContent = LOADERS[index - 1].css;
// popup
document.querySelector('body').classList.add('pop')
document.querySelector('.overlay').classList.add('in')
})
})
// close popup
document.querySelector('.btn-close').addEventListener('click', (e) => {
document.querySelector('body').classList.remove('pop')
document.querySelector('.overlay').classList.remove('in');
});
document.querySelector('.overlay').addEventListener('click', (e) => {
if (e.target.className === "overlay in") {
document.querySelector('body').classList.remove('pop')
document.querySelector('.overlay').classList.remove('in');
}
});
// Copy to clipboard
document.querySelectorAll('.copy').forEach(copyBtn => {
copyBtn.addEventListener('click', (e) => {
const id = e.target.dataset.id;
selectText(id);
document.execCommand("copy");
e.target.textContent = 'Copied';
setTimeout( time => e.target.textContent = 'Copy' , 300);
})
});
// select Text
function selectText(containerid) {
if (document.selection) { // IE
var range = document.body.createTextRange();
range.moveToElementText(document.getElementById(containerid));
range.select();
} else if (window.getSelection) {
var range = document.createRange();
range.selectNode(document.getElementById(containerid));
window.getSelection().removeAllRanges();
window.getSelection().addRange(range);
}
}