-
Notifications
You must be signed in to change notification settings - Fork 0
/
comandos.js
86 lines (76 loc) · 2.25 KB
/
comandos.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
var url = new URL(window.location)
var comando = url.searchParams.get("comando")
let legenda = document.getElementById("legenda")
let busca = document.getElementById("inputBusca")
let reset = document.getElementById("resetBusca")
const comandos = document.getElementsByClassName("lista")[0].children
const filtros = document.getElementById("filtro").children
document.getElementById("qtd-comandos").innerText = comandos.length
if (comando) {
let selecionado = document.getElementById(comando)
selecionado.setAttribute(
"style",
`--custom-top: ${legenda.offsetHeight + 10}px;`
)
selecionado.scrollIntoView()
selecionado.classList.add("comando-ativo")
selecionado.addEventListener("mouseleave", removeClass)
}
busca.addEventListener("input", () => {
for (const comando of comandos) {
if (!comando.classList.contains("sumir")) {
if (comando.id.toString().search(busca.value.toLowerCase()) == -1) {
comando.classList.add("sumir")
}
}
}
reset.classList.remove("resetHidden")
})
function removeClass(evt) {
let selecionado = evt.target
selecionado.classList.remove("comando-ativo")
selecionado.removeEventListener("mouseleave", removeClass)
}
function filtrar(categoria) {
if (categoria == "todos") {
for (const filtro of filtros) {
filtro.classList.remove("active-bg")
}
filtros[1].classList.add("active-bg")
for (const comando of comandos) {
comando.classList.remove("sumir")
}
busca.value = ""
} else {
filtros[1].classList.remove("active-bg")
for (const filtro of filtros) {
if (filtro.innerText.toLowerCase() == categoria) {
filtro.classList.toggle("active-bg")
break
}
}
for (const comando of comandos) {
if (!comando.classList.contains("sumir")) {
if (comando.getAttribute("categoria") != categoria) {
comando.classList.toggle("sumir")
}
}
}
}
}
function resetBusca() {
for (const filtro of filtros) {
filtro.classList.remove("active-bg")
}
filtros[1].classList.add("active-bg")
for (const comando of comandos) {
comando.classList.remove("sumir")
}
busca.value = ""
let buscaReset = document.getElementById("resetBusca")
buscaReset.classList.add("resetAnimation")
setTimeout(() => {
buscaReset.classList.remove("resetAnimation")
buscaReset.classList.add("resetHidden")
}, 2000)
}