-
Notifications
You must be signed in to change notification settings - Fork 0
/
choose_lib.js
110 lines (99 loc) · 3.27 KB
/
choose_lib.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
const feliz = document.querySelector('#feliz')
const giraffe = document.querySelector('#giraffe')
const sutil = document.querySelector('#sutil')
const bolero = document.querySelector('#bolero')
const websharper = document.querySelector('#websharper')
const falco = document.querySelector('#falco')
export function get_key() {
let defaultlib = localStorage.getItem('html2fslib') ?? 'feliz'
return defaultlib
}
export function persist_key(lib) {
localStorage.setItem('html2fslib', lib)
return
}
export function changeLib(lib) {
if (lib == 'feliz') {
feliz.classList.add('btn-primary')
giraffe.classList.remove('btn-primary')
sutil.classList.remove('btn-primary')
bolero.classList.remove('btn-primary')
websharper.classList.remove('btn-primary')
falco.classList.remove('btn-primary')
}
if (lib == 'giraffe') {
feliz.classList.remove('btn-primary')
giraffe.classList.add('btn-primary')
sutil.classList.remove('btn-primary')
bolero.classList.remove('btn-primary')
websharper.classList.remove('btn-primary')
falco.classList.remove('btn-primary')
}
if (lib == 'sutil') {
feliz.classList.remove('btn-primary')
giraffe.classList.remove('btn-primary')
sutil.classList.add('btn-primary')
bolero.classList.remove('btn-primary')
websharper.classList.remove('btn-primary')
falco.classList.remove('btn-primary')
}
if (lib == 'bolero') {
feliz.classList.remove('btn-primary')
giraffe.classList.remove('btn-primary')
sutil.classList.remove('btn-primary')
bolero.classList.add('btn-primary')
websharper.classList.remove('btn-primary')
falco.classList.remove('btn-primary')
}
if (lib == 'websharper') {
feliz.classList.remove('btn-primary')
giraffe.classList.remove('btn-primary')
sutil.classList.remove('btn-primary')
bolero.classList.remove('btn-primary')
websharper.classList.add('btn-primary')
falco.classList.remove('btn-primary')
}
if (lib == 'falco') {
feliz.classList.remove('btn-primary')
giraffe.classList.remove('btn-primary')
sutil.classList.remove('btn-primary')
bolero.classList.remove('btn-primary')
websharper.classList.remove('btn-primary')
falco.classList.add('btn-primary')
}
persist_key(lib)
return
}
export function startup() {
changeLib(get_key())
feliz.addEventListener('click', (e) => {
e.preventDefault()
e.stopPropagation()
changeLib('feliz')
})
giraffe.addEventListener('click', (e) => {
e.preventDefault()
e.stopPropagation()
changeLib('giraffe')
})
sutil.addEventListener('click', (e) => {
e.preventDefault()
e.stopPropagation()
changeLib('sutil')
})
bolero.addEventListener('click', (e) => {
e.preventDefault()
e.stopPropagation()
changeLib('bolero')
})
websharper.addEventListener('click', (e) => {
e.preventDefault()
e.stopPropagation()
changeLib('websharper')
})
falco.addEventListener('click', (e) => {
e.preventDefault()
e.stopPropagation()
changeLib('falco')
})
}