forked from SoftwareBrothers/better-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathside-nav.js
78 lines (69 loc) · 2.07 KB
/
side-nav.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
72
73
74
75
76
77
78
const OFFSET = 150
$().ready(() => {
const wrapper = $('#side-nav')
/**
* @type {Array<{link: El, offset: number}>}
*/
const links = []
if (!$('.vertical-section').length) {
wrapper.hide()
}
$('.vertical-section').each((i, el) => {
const section = $(el)
const sectionName = section.find('> h1').text()
if (sectionName) {
wrapper.append($('<h3/>').text(sectionName))
const list = $('<ul></ul>')
section.find('.members h4.name').each((i, el) => {
const navLink = $(el)
const name = navLink.find('.code-name')
.clone().children().remove().end().text()
const href = navLink.find('a').attr('href')
const link = $(`<a href="${href}" />`).text(name)
list.append($('<li></li>').append(link))
links.push({ link, offset: navLink.offset().top})
})
wrapper.append(list)
}
else {
section.find('.members h4.name').each((i, el) => {
const navLink = $(el)
const name = navLink.find('.code-name')
.clone().children().remove().end().text()
const href = navLink.find('a').attr('href')
const link = $(`<a href="${href}" />`).text(name)
wrapper.append(link)
links.push({ link, offset: navLink.offset().top})
})
}
})
if (!$.trim(wrapper.text())) {
return wrapper.hide()
}
const core = $('#main-content-wrapper')
const selectOnScroll = () => {
const position = core.scrollTop()
let activeSet = false
for (let index = (links.length-1); index >= 0; index--) {
const link = links[index]
link.link.removeClass('is-active')
if ((position + OFFSET) >= link.offset) {
if (!activeSet) {
link.link.addClass('is-active')
activeSet = true
} else {
link.link.addClass('is-past')
}
} else {
link.link.removeClass('is-past')
}
}
}
core.on('scroll', selectOnScroll)
selectOnScroll()
links.forEach(link => {
link.link.click(() => {
core.animate({ scrollTop: link.offset - OFFSET + 1 }, 500)
})
})
})