-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.js
44 lines (37 loc) · 890 Bytes
/
sidebar.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
const expandSidebar = () => {
$id('sidebar-content').classList.remove('hidden')
sidebar.classList.add('expand')
}
const closeSidebar = () => {
$id('sidebar-content').classList.add('hidden')
sidebar.classList.remove('expand')
}
sidebar.addEventListener('mouseenter', (e) => {
if (e.target === $id('sidebar-close')) {
return
}
expandSidebar()
e.stopPropagation()
})
sidebar.addEventListener('click', (e) => {
if (e.target === $id('sidebar-close')) {
return
}
expandSidebar()
e.stopPropagation()
})
sidebar.addEventListener('mouseleave', () => {
closeSidebar()
})
document.addEventListener('click', (e) => {
let el = e.toElement || e.relatedTarget
try {
if (el.parentNode == document || el == document) {
return
}
} catch (e) { return }
closeSidebar()
})
$id('sidebar-close').addEventListener('click', () => {
closeSidebar()
})