-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
165 lines (135 loc) · 5.66 KB
/
app.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
const formulario = document.getElementById("formulario");
const btnSiguiente = document.getElementById("siguiente");
const btnAnterior = document.getElementById("anterior");
const detalles = document.getElementById("detalles");
const video = document.getElementById("video");
const contenedorPelicula = document.getElementById("contenedor");
const titulo = document.querySelector(".titulo");
const urlBase = "https://api.themoviedb.org/3/";
const apiKey = "api_key=c9b993483c9002e040faf6c3550d97fd";
const urlImg = "https://image.tmdb.org/t/p/original/";
let contador = 1;
/* BOTON PARA CAMBIAR PELICULA */
btnSiguiente.addEventListener("click", ()=>{
if(contador < 1000){
contador++;
detalles.innerHTML = "";
video.innerHTML = "";
cargarpelicula();
}
})
/* BOTON PARA CAMBIAR PELICULA */
btnAnterior.addEventListener("click", ()=>{
if(contador > 1){
contador--;
detalles.innerHTML = "";
video.innerHTML = "";
cargarpelicula();
}
})
/* FUNCION PARA BUSCAR PELICULA */
function buscarPelicula(e){
e.preventDefault();
const buscar = document.getElementById("buscar").value;
consultarApi(buscar);
detalles.innerHTML = "";
video.innerHTML = "";
}
formulario.addEventListener("submit", buscarPelicula); /* ESCUCHA EL EVENTO PARA BUSCAR PELICULA */
async function consultarApi(buscar){
/* CONSULTA A LA API CON EL PARAMETRO DE LA BUSQUEDA */
try {
const api = await fetch(`${urlBase}search/movie?${apiKey}&query=${buscar}`)
.then(respuesta => respuesta.json())
.then(resultado => resultado);
let peliculas = "";
api.results.forEach(async (pelicula)=>{
peliculas += `
<ul>
<li class="peliculas">
<a href="#formulario"> <img class="img-pelicula" src="${urlImg}${pelicula.poster_path}" onclick="detallePelicula(${pelicula.id})"> </a>
<h3>${pelicula.title}</h3>
<p>${pelicula.vote_average}${" "}⭐</p>
</li>
</ul>
`
})
contenedorPelicula.innerHTML = peliculas; /* IMPRIME EL RESULTADO DE LA BUSQUEDA */
if (peliculas == ""){ /* VALIDA SI NO ENCUENTRA PELICULA */
detalles.innerHTML = `
<h1 class="sinResult">Sin Resultado</h1>
`
}
}catch (error) {
console.log(error);
}
}
const cargarpelicula = async() => {
try { /* FUNCION PARA CARGAR LAS PELICULAS MAS POPULARES */
const api = await fetch(`${urlBase}movie/popular?${apiKey}&language=es-ES&page=${contador}`)
.then(respuesta => respuesta.json())
.then(resultado => resultado);
let peliculas = "";
api.results.forEach( async(pelicula) => {
peliculas += `
<ul>
<li id="${pelicula.id}" class="peliculas">
<a href="#formulario" > <img class="img-pelicula" src="${urlImg}${pelicula.poster_path}" onclick="detallePelicula(${pelicula.id})"> </a>
<h3>${pelicula.title}</h3>
<p>${pelicula.vote_average}${" "}⭐</p>
</li>
</ul>
`
});
contenedorPelicula.innerHTML = peliculas; /* IMPRIME EL RESULTADO DE LA API */
} catch(error){
console.log(error);
}
}
titulo.addEventListener("click", ()=>{ /* FUNCION CON EVENTO CLICK PARA CARGAR NUEVAMENTO LAS PELICULAS */
detalles.innerHTML = "";
video.innerHTML = "";
cargarpelicula();
});
async function detallePelicula(id){ /* FUNCION CON LLAMADA A API CON ID DE PELICULA */
try {
const api = await fetch(`${urlBase}movie/${id}?${apiKey}&language=es-ES&page=${contador}`)
.then(respuesta => respuesta.json())
.then(resultado => resultado);
let generos = ""; /* GUARDA LOS GENEROS */
api.genres.forEach((i)=>{ /* IMPRIME CADA GENERO Y LO GUARDA EN LA VARIABLE */
generos += `
${i.name},
`
})
detalles.innerHTML = `
<img class="img-pelicula" src="${urlImg}${api.poster_path}">
<img class="fondo" src="${urlImg}${api.backdrop_path}">
<div id="info" >
<h2>${api.title}</h2>
<p>${api.vote_average}${" "}⭐</p>
<h3>Descripción :</h3>
<h4>${api.overview}</h4>
<h4>Lanzamiento : ${api.release_date}</h4>
<h4> Genero: ${generos} </h4>
<h4> Duracion: ${api.runtime} minutos<h4>
</div>
`
videos(api.id); /* RECOJE EL ID DE LAS PELICULAS PARA IMPRIMIR VIDEO */
} catch (error) {
console.log(error);
}
}
async function videos(id){
try { /* FUNCION PARA LLAMAR A API HE IMPRIMIR LOS VIDEOS */
const api = await fetch(`${urlBase}movie/${id}/videos?${apiKey}&language=es-ES&page=${contador}`)
.then(respuesta => respuesta.json())
.then(resultado => resultado);
video.innerHTML = `
<iframe width="660" height="415" src="https://www.youtube.com/embed/${api.results[parseInt(api.results.length - 1)].key}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
`
} catch (error) {
video.innerHTML = "" /* NO IMPRIME NINGUN VALOR SI HAY ERROR EN LA API */
}
}
cargarpelicula(); /* CARGAR LAS PELICULAS MAS POPULARES */