-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
53 lines (45 loc) · 1.93 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
// TMDB API KEY: 95f57e6b016f0eb20c84f9c349e1671f
const APILINK = 'https://api.themoviedb.org/3/discover/movie?sorta_by=popularity.desc&api_key=95f57e6b016f0eb20c84f9c349e1671f&page=1';
const IMG_PATH = 'https://image.tmdb.org/t/p/w1280';
const SEARCHAPI = "https://api.themoviedb.org/3/search/movie?&api_key=95f57e6b016f0eb20c84f9c349e1671f&query=";
const main = document.getElementById("section");
const form = document.getElementById("form");
const search = document.getElementById("query");
returnMovies(APILINK);
function returnMovies(url){
fetch(url).then( res => res.json()).then(function(data){
console.log(data.results);
data.results.forEach(element => {
const div_card = document.createElement('div');
div_card.setAttribute('class', 'card');
const div_row = document.createElement('div');
div_row.setAttribute('class', 'row');
const div_column = document.createElement('div');
div_column.setAttribute('class', 'column');
const image = document.createElement('img');
image.setAttribute('class', 'thumbnail');
image.setAttribute('id', 'image');
const title = document.createElement('h3');
title.setAttribute('id', 'title');
const center = document.createElement('center');
title.innerHTML = `${element.title}`;
image.src = IMG_PATH + element.poster_path;
center.appendChild(image);
div_card.appendChild(center);
div_card.appendChild(title);
div_column.appendChild(div_card);
div_row.appendChild(div_column);
main.appendChild(div_row);
});
});
}
form.addEventListener("submit", (e) => {
e.preventDefault();
main.innerHTML = '';
const searchItem = search.value;
if(searchItem)
{
returnMovies(SEARCHAPI + searchItem);
search.value="";
}
})