-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenderer.js
71 lines (53 loc) · 1.55 KB
/
renderer.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
const unicodeRanges = require('unicode-range-json');
/*
for (var i = 0; i < unicodeRanges.length; i++) {
key = unicodeRanges[i]
}
*/
document.addEventListener('DOMContentLoaded', function() {
var elems = document.querySelectorAll('select');
var instances = M.FormSelect.init(elems, "");
});
var select = document.getElementById('select');
unicodeRanges.forEach(range => {
var opt = document.createElement('option');
opt.appendChild( document.createTextNode(range.category) );
opt.value = range.category;
select.appendChild(opt);
});
function s_update()
{
var load = document.getElementById("loading")
load.style.display = "block"
unicodeRanges.forEach(range => {
if (range.category!=select.value)
{
return
}
else if (range.category==select.value)
{
update_html(range.range)
}
});
load.style.display = "none"
}
function update_html(range)
{
var div = document.getElementById('list');
div.innerHTML = "";
for(var i = range[0]; i <= range[1]; i++)
{
var c = document.createElement("div")
c.className="col s1 unicode-card"
c.setAttribute("onclick","unicode_click(this.id)")
c.innerText = String.fromCodePoint(i)
c.setAttribute("id", c.innerText)
div.appendChild(c)
}
}
function unicode_click(id)
{
var c = document.getElementById('flash');
c.innerHTML = id+" copied to clipboard !";
navigator.clipboard.writeText(id)
}