-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfavorite.js
More file actions
76 lines (66 loc) · 2.59 KB
/
Copy pathfavorite.js
File metadata and controls
76 lines (66 loc) · 2.59 KB
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 BASE_URL = 'https://webdev.alphacamp.io/'
const INDEX_URL = BASE_URL + 'api/movies'
const POSTER_URL = BASE_URL + '/posters/'
const movies = JSON.parse(localStorage.getItem('favoriteMovies')) || []
const dataPanel = document.querySelector('#data-panel')
const searchForm = document.querySelector('#search-form')
const searchInput = document.querySelector('#search-input')
function renderMovieList(data) {
let rawHTML = ''
data.forEach((item) =>{
//title,image
rawHTML += `
<div class="col-sm-3">
<div class="mb-2">
<div class="card">
<img
src="${POSTER_URL + item.image}"
class="card-img-top" alt="Movie Poster" />
<div class="card-body">
<h5 class="card-title">${item.title}</h5>
</div>
<div class="card-footer">
<button class="btn btn-primary btn-show-movie" data-bs-toggle="modal" data-bs-target="#movie-modal" data-id='${item.id}'>More</button>
<button class="btn btn-danger btn-remove-favorite" data-id='${item.id}'>X</button>
</div>
</div>
</div>
</div>
`
})
dataPanel.innerHTML = rawHTML
}
function showMovieModal (id){
const modalTitle = document.querySelector('#movie-modal-title')
const modalImage = document.querySelector('#movie-modal-image')
const modalDate = document.querySelector('#movie-modal-date')
const modalDescription = document.querySelector('#movie-modal-description')
axios.get(INDEX_URL + '/' + id)
.then(response =>{
const data = response.data.results
console.log(data)
modalTitle.innerText = data.title
modalImage.innerHTML = `
<img src="${POSTER_URL + data.image}" alt="movies-posters" class="image-fluid">
`
modalDate.innerText = `release_date: ${data.release_date}`
modalDescription.innerText = data.description
})
}
function removeFromFavorite(id) {
if (!movies || !movies.length) return
const movieIndex = movies.findIndex((movie) => movie.id === id)
if(movieIndex === -1) return
movies.splice(movieIndex, 1)
localStorage.setItem('favoriteMovies', JSON.stringify(movieIndex))
renderMovieList(movies)
}
dataPanel.addEventListener('click',function onPanelClicked(event) {
const target = event.target
if (target.matches('.btn-show-movie')) {
showMovieModal(Number(target.dataset.id))
} else if (target.matches('.btn-remove-favorite')) {
removeFromFavorite(Number(target.dataset.id))
}
})
renderMovieList(movies)