aboutsummaryrefslogtreecommitdiff
path: root/templates/partials/doc/toc_script.html
blob: 1453a69f305eafb2e48a9e00598f3afe1bee68fb (plain) (blame)
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
<script>

const menuBarHeight = document.querySelector("nav.navbar").clientHeight;
const mainTocMenuWidth = document.getElementById('main-toc-menu').clientWidth;
const tocItems = document.querySelectorAll(".toc");
const navSections = new Array(tocItems.length);

 // Global ToC
/*
    Fixed ToC when user scrolls.
*/

window.addEventListener('scroll', function() {
    if (window.screen.width >= 1280) {
        if (window.scrollY >= menuBarHeight) {
            document.getElementById('main-toc-menu').classList.add('fixed', 'top-0', 'left-0');
            document.getElementById('main-toc-menu').style.width = mainTocMenuWidth + 'px';
        } else {
            document.getElementById('main-toc-menu').classList.remove('fixed', 'top-0', 'left-0');
        }
    }
});

// Page content
/*
    Focus effect on current section anchor when user scrolls.
*/

tocItems.forEach((el, i) => {
    let id = el.getAttribute("id").substring(5);
    navSections[i] = document.getElementById(id);
})

function isVisible(tocIndex) {
    const current = navSections[tocIndex];
    const next = tocIndex < tocItems.length - 1 ? navSections[tocIndex + 1]
        : document.querySelectorAll("section.section").item(1);

    const c = current.getBoundingClientRect();
    const n = next.getBoundingClientRect();
    const h = (window.innerHeight || document.documentElement.clientHeight);

    return (c.top <= h) && (n.top - menuBarHeight >= 0);
}

function activateIfVisible() {
    for (b = true, i = 0; i < tocItems.length; i++) {
        if (b && isVisible(i)) {
            tocItems[i].classList.add('is-active');
            b = false;
        } else
            tocItems[i].classList.remove('is-active');
    }
}

var isTicking = null;
window.addEventListener('scroll', () => {
    if (!isTicking) {
        window.requestAnimationFrame(() => {
            activateIfVisible();
            isTicking = false;
        });
        isTicking = true;
    }
}, false);

document.addEventListener("DOMContentLoaded", function() {
    var menusTriggers = document.getElementsByClassName("deploySubMenu");
    var activeDocPage = document.getElementsByClassName("activePage")[0];
    for (var i = 0; i < menusTriggers.length; i++) {
        menusTriggers[i].checked = true;
    }
    activeDocPage.parentElement.parentElement.previousElementSibling.previousElementSibling.checked = false;
});

</script>