forked from pubkey/rxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext-button.js
66 lines (52 loc) · 1.77 KB
/
next-button.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
function runAddingNextButtons() {
function addNextButton() {
var id = 'rxdb-custon-next-button';
var alreadyThere = document.querySelector('#' + id);
if (alreadyThere) {
return;
}
console.log('custom next button NOT already there.');
var block = document.querySelector('.normal.markdown-section');
console.dir(block);
var path = window.location.pathname;
var page = path.split('/').pop();
console.log('page: ' + page);
var chapters = document.querySelectorAll('.chapter');
var dataPaths = [];
chapters.forEach(function (chapter) {
var dataPath = chapter.dataset.path;
if (dataPath) {
dataPaths.push(dataPath);
}
});
var lastIndex = dataPaths.lastIndexOf(page);
console.dir('dataPaths:');
console.dir(dataPaths);
var nextPath = dataPaths[lastIndex + 1];
console.log('nexdtPath: ' + nextPath);
if (!nextPath) {
return;
}
var hr = document.createElement('hr');
block.appendChild(hr);
console.log('# Add next button');
var span = document.createElement('p');
span.id = id;
span.innerHTML = 'If you are new to RxDB, you should continue ';
var link = document.createElement('a');
link.href = nextPath;
link.innerHTML = 'here';
span.appendChild(link);
block.appendChild(span);
}
addNextButton();
/**
* Gitbook does a strange page change handling,
* so we have to re-run the function
* because listening to history changes did not work.
*/
setInterval(function () {
addNextButton();
}, 100);
}
runAddingNextButtons();