-
Notifications
You must be signed in to change notification settings - Fork 0
/
favorite.js
71 lines (64 loc) · 2.47 KB
/
favorite.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
const BASE_URL = 'https://movie-list.alphacamp.io'
const INDEX_URL = BASE_URL + '/api/v1/movies/'
const POSTER_URL = BASE_URL + '/posters/'
const movies = JSON.parse(localStorage.getItem('favoriteMovies'))||[]
const dataPanel = document.querySelector('#data-panel')
function renderMovieList(data) {
let rawHTML = ''
//processing
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
modalTitle.innerText = data.title
modalDate.innerText = 'Release date: ' + data.release_date
modalDescription.innerText = data.description
modalImage.innerHTML = `<img src="${POSTER_URL + data.image
}" alt="movie-poster" class="img-fluid">`
})
}
function removeFromFavorite(id) {
//findIndex回傳Index的位置
const movieIndex = movies.findIndex((movie) => movie.id === id)
movies.splice(movieIndex, 1)
localStorage.setItem('favoriteMovies', JSON.stringify(movies))
// console.log(JSON.stringify(list))
renderMovieList(movies)
}
//Model 委派點擊事件 製作事件監聽器 監聽data panel
// 此function 可改寫為簡潔的匿名函式
dataPanel.addEventListener('click', function onPanelClicked(event) {
if (event.target.matches('.btn-show-movie')) {
//console.log(event.target)用於檢查console的結果
//dataset
showMovieModal(Number(event.target.dataset.id))
} else if (event.target.matches('.btn-remove-favorite')) {
removeFromFavorite(Number(event.target.dataset.id))
}
})
renderMovieList(movies)