-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
72 lines (53 loc) · 2.54 KB
/
script.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
const conteinerVideos = document.querySelector('.videos__container');
async function buscarEMostrarVideos(){
try {
const busca = await fetch("http://localhost:3000/videos");
const videos = await busca.json();
videos.forEach((video) => {
if(video.categoria == "") {
throw new Error('Video nao tem categoria');
} //isso pode usar para avisar os erros especificos
conteinerVideos.innerHTML += `
<li class="videos__item">
<iframe src="${video.url}" title="${video.titulo}" frameborder="0" allowfullscreen></iframe>
<div class="descricao-video">
<img class="img-canal" src="${video.imagem}" alt="Logo Dp Canal">
<h3 class="titulo-video">${video.titulo}</h3>
<p class="titulo-canal">${video.descricao}</p>
<p class="categoria" hidden>${video.categoria}</p> <!-- hidden sinifica escondido, usamos apenas para pegar info pelo class catehoria-->
</div>
</li>
`;
})
} catch(error) {
conteinerVideos.innerHTML = `<p style="color: crimson;"> Houve um erro ao corregar os videos: ${error} </p>`
} finally {
//alert('Isso sempre acontece!');
}
}
buscarEMostrarVideos();
//tratando barra de pesquisa
const barraDePesquisa = document.querySelector(".pesquisar__input");
barraDePesquisa.addEventListener('input', filtrarPesquisa);
function filtrarPesquisa() {
const videos = document.querySelectorAll('.videos__item');
const valorFiltro = barraDePesquisa.value.toLowerCase();
videos.forEach((video) => {
const titulo = video.querySelector('.titulo-video').textContent.toLowerCase();
video.style.display = valorFiltro ? titulo.includes(valorFiltro) ? 'block' : 'none' : 'block';
});
}
//filtrando categorias
const botaoCategoria = document.querySelectorAll(".superior__item");
botaoCategoria.forEach ((botao) => {
let nomeCategoria = botao.getAttribute("name");
botao.addEventListener('click', () => filtrarPorCategoria(nomeCategoria));
});
function filtrarPorCategoria(filtro) {
const videos = document.querySelectorAll('.videos__item');
const valorFiltro = filtro.toLowerCase();
videos.forEach((video) => {
const categoria = video.querySelector('.categoria').textContent.toLowerCase();
video.style.display = valorFiltro!='tudo' ? categoria.includes(valorFiltro) ? 'block' : 'none' : 'block';
});
}