blob: bdb87e4aa87a526f2be56a93616b369c6aa3fefe (
plain)
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
|
function sidebar_close() {
$("#sidebar")[0].classList.remove('sidebar-active');
}
function sidebar_open() {
$("#sidebar")[0].classList.add('sidebar-active');
}
function show_loading() {
$("#content").html(("<div class='spinner centered'></div>"));
}
function load_(file, title) {
show_loading();
$("#header").text(title);
document.title = 'IcHTML - ' + title;
$.get("content/"+file, function(data) {
$("#content").html(data);
}, "text");
}
var refs = {};
function load(id){
var item = refs[id];
load_(item.url, item.name);
}
function onload() {
$.getJSON({cache: false,url:"content/content.json"})
.then(function(data){
var el = $("#sidebar")[0];
data.forEach((item)=>{
var load = item.load;
var url = item.url;
var name = item.name;
var img = item.img;
var id = item.id;
refs[id] = {
name: name,
url: url
}
var atag = document.createElement("a");
if(load=="href"){
atag.href = url;
atag.target = "_blank";
atag.onclick = sidebar_close;
}
if(load=="content"){
atag.href = "#"+item.id;
atag.onclick = function(){
sidebar_close();
window.load_(item.url, item.name);
};
}
var texttag = document.createTextNode(name);
if(img) {
var imgtag = document.createElement("img");
imgtag.src = img;
atag.appendChild(imgtag);
}
atag.appendChild(texttag);
atag.classList.add('button');
atag.classList.add('sidebar-button');
el.appendChild(atag);
});
el.lastChild.classList.add('sidebar-last');
});
let tag = location.href.split("#");
if(tag.length > 1){
load(tag[1]);
}
}
|