-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
143 lines (129 loc) · 4.52 KB
/
main.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
const refNomeFilme = document.getElementById("movie-name");
const btnPesquisar = document.getElementById("search-btn");
const resultado = document.getElementById("result");
const containerSugestoes = document.getElementById("suggestions");
const chave = "3cda63dc";
let temporizadorDebounce;
const cache = {};
const btnLimpar = document.getElementById("clear-btn");
const loading = document.getElementById("loading");
const limparPesquisa = () => {
refNomeFilme.value = "";
resultado.innerHTML = "";
containerSugestoes.classList.add("hidden");
};
const mostrarLoading = () => {
loading.classList.remove("hidden");
};
const esconderLoading = () => {
loading.classList.add("hidden");
};
const pesquisarFilmes = async (termoPesquisa) => {
if (cache[termoPesquisa]) {
return cache[termoPesquisa];
}
const url = `https://www.omdbapi.com/?s=${termoPesquisa}&apikey=${chave}`;
try {
const resposta = await fetch(url);
const dados = await resposta.json();
cache[termoPesquisa] = dados.Search || [];
return cache[termoPesquisa];
} catch (erro) {
console.error("Erro ao buscar sugestões:", erro);
return [];
}
};
const mostrarSugestoes = (sugestoes) => {
containerSugestoes.innerHTML = "";
if (sugestoes.length > 0) {
for (const filme of sugestoes) {
const div = document.createElement("div");
div.textContent = filme.Title;
div.className = "p-2 hover:bg-slate-600 cursor-pointer";
div.onclick = () => {
refNomeFilme.value = filme.Title;
containerSugestoes.classList.add("hidden");
obterFilme();
};
containerSugestoes.appendChild(div);
}
containerSugestoes.classList.remove("hidden");
} else {
containerSugestoes.classList.add("hidden");
}
};
const pesquisaComDebounce = () => {
clearTimeout(temporizadorDebounce);
resultado.innerHTML = "";
temporizadorDebounce = setTimeout(async () => {
const termoPesquisa = refNomeFilme.value.trim();
if (termoPesquisa.length > 2) {
mostrarLoading();
const sugestoes = await pesquisarFilmes(termoPesquisa);
esconderLoading();
mostrarSugestoes(sugestoes);
} else {
containerSugestoes.classList.add("hidden");
}
}, 700);
};
// Função para buscar dados da API
const obterFilme = async () => {
const nomeFilme = refNomeFilme.value.trim();
if (nomeFilme.length <= 0) {
resultado.innerHTML = `<h3 class="msg">Por favor, digite o nome de um filme</h3>`;
return;
}
mostrarLoading();
resultado.innerHTML = "";
const url = `https://www.omdbapi.com/?t=${nomeFilme}&apikey=${chave}`;
try {
const resposta = await fetch(url);
const dados = await resposta.json();
esconderLoading();
if (dados.Response === "True") {
resultado.innerHTML = `
<div class="info">
<img src=${dados.Poster} class="poster">
<div>
<h2>${dados.Title}</h2>
<div class="rating">
<img src="star-icon.svg">
<h4>${dados.imdbRating}</h4>
</div>
<div class="details">
<span>${dados.Rated}</span>
<span>${dados.Year}</span>
<span>${dados.Runtime}</span>
</div>
<div class="genre">
<div>${dados.Genre.split(",").join(
"</div><div>"
)}</div>
</div>
</div>
</div>
<h3>Enredo:</h3>
<p>${dados.Plot}</p>
<h3>Elenco:</h3>
<p>${dados.Actors}</p>
`;
} else {
resultado.innerHTML = `<h3 class="msg">${dados.Error}</h3>`;
}
} catch (erro) {
console.error("Erro ao buscar filme:", erro);
esconderLoading();
resultado.innerHTML = `<h3 class="msg">Ocorreu um erro ao buscar o filme</h3>`;
}
};
refNomeFilme.addEventListener("input", pesquisaComDebounce);
btnPesquisar.addEventListener("click", obterFilme);
btnLimpar.addEventListener("click", limparPesquisa);
window.addEventListener("load", obterFilme);
// Fechar sugestões ao clicar fora
document.addEventListener("click", (e) => {
if (!containerSugestoes.contains(e.target) && e.target !== refNomeFilme) {
containerSugestoes.classList.add("hidden");
}
});