forked from Renderhaf/ExcaliburWebsite
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathload-tutorial.js
60 lines (56 loc) · 2.06 KB
/
load-tutorial.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
const json = JSON.parse(`
{{ content }}
`)
function loadProgressButtons(currentPermalink) {
let i;
if (currentPermalink.endsWith("/")) {
setProgressLinks(null, json["articles"][0]["file"])
document.getElementById("tutorial-home").hidden = true;
return;
}
// alert(json) // debug
// alert(json["articles"]); // debug
for (i = 0; i < json["articles"].length; i++) {
let element = json["articles"][i];
if (element["file"] === currentPermalink) {
setProgressLinks((i === 0)? null : json["articles"][i-1]["file"],
(i === json["articles"].length - 1)? null : json["articles"][i+1]["file"])
break;
}
}
function setProgressLinks(prevLink, nextLink) {
let prev = document.getElementById("previous");
let next = document.getElementById("next");
if (prevLink === null) {
prev.hidden = true;
} else {
prev.setAttribute("href", prevLink);
}
if (nextLink === null) {
next.hidden = true;
} else {
next.setAttribute("href", nextLink);
}
}
}
function loadSidebar(currentPermalink) {
// alert("loadSidebar() called"); // debug
let parent = document.getElementById("sidebar");
json["articles"].forEach(function (current, idx, arr) {
let element = document.createElement("a");
element.className = "sidebar-item";
element.setAttribute("href", current["file"]);
element.text = current["name"];
if (current["file"] === currentPermalink) {
document.getElementById("tutorial-intro").className -= " active";
element.className += " active";
}
parent.appendChild(element);
});
}
function setTitle(currentPermalink) {
let header = document.getElementById("title");
let currentfile = json["articles"].filter(article => article["file"] === currentPermalink)[0];
header.id = currentfile["name"].replace(" ", "-").replace("/", "").toLowerCase();
header.innerText = currentfile["name"];
}