-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
76 lines (62 loc) · 2 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
73
74
75
76
const API_KEY = 'bf151074d088b89e1048d139030920c2';
const APIURL = `https://api.themoviedb.org/3/discover/movie?sort_by=popularity.desc&api_key=${API_KEY}&page=1`;
const IMGPATH = 'https://image.tmdb.org/t/p/w500';
const SEARCHAPI = `https://api.themoviedb.org/3/search/movie?api_key=${API_KEY}&query=`;
const search = document.getElementById('search');
const form = document.getElementById('form');
const main = document.getElementById('main');
//initially getting fav movies by popularity
getMovies(APIURL);
//fetching the data from TMDB API
async function getMovies(url){
const response = await fetch(url);
const responseData = await response.json();
//invoked for showing the movies
showMovies(responseData.results);
}
//displaying movies
function showMovies(movies){
//clear main
main.innerHTML = '';
//iterating through the movies object
if(movies.length==0){
alert("No match found Please contact developer [email protected]")
getMovies(APIURL);
}
movies.forEach((movie) => {
const {poster_path, title, vote_average, overview} = movie;
const movieEl1 = document.createElement('div');
movieEl1.classList.add('movie');
movieEl1.innerHTML = `
<img src=${IMGPATH + poster_path} alt=${title}>
<div class="movie-info">
<h3>${title}</h3>
<span class=${getClassByRate(vote_average)}>${vote_average}</span>
</div>
<div class="overview">
<h4>Overview:</h4>
${overview}
</div>
`;
main.appendChild(movieEl1);
});
}
//adding
function getClassByRate(vote){
if (vote >= 8) {
return 'green';
}else if(vote >= 5){
return 'orange';
}else{
return 'red';
}
}
// Searching the movie
form.addEventListener('submit', function(e){
e.preventDefault();
const searchTerm = search.value;
if (searchTerm){
getMovies(SEARCHAPI + searchTerm);
search.value = '';
}
});