-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
139 lines (118 loc) · 4.39 KB
/
Copy pathindex.js
File metadata and controls
139 lines (118 loc) · 4.39 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
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
const BASE_URL = 'https://webdev.alphacamp.io/'
const INDEX_URL = BASE_URL + 'api/movies'
const POSTER_URL = BASE_URL + '/posters/'
const MOVIES_PER_PAGE = 12
const movies = []
let filteredMovies = []
const dataPanel = document.querySelector('#data-panel')
const searchForm = document.querySelector('#search-form')
const searchInput = document.querySelector('#search-input')
const paginator = document.querySelector('#paginator')
const favoriteIcon = document.querySelector('.btn-add-favorite')
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-info btn-add-favorite" data-id='${item.id}'>+</button>
</div>
</div>
</div>
</div>
`
})
dataPanel.innerHTML = rawHTML
}
function renderPaginator (amount) {
const numberOfPages = Math.ceil(amount / MOVIES_PER_PAGE)
let rawHTML = ''
for (let page = 1; page <= numberOfPages; page++){
rawHTML += `
<li class="page-item"><a class="page-link" href="#" data-page='${page}'>${page}</a></li>
`
}
paginator.innerHTML = rawHTML
}
function getMoviesByPage(page){
const data = filteredMovies.length ? filteredMovies: movies
const startIndex = (page - 1) * MOVIES_PER_PAGE
return data.slice(startIndex, startIndex + MOVIES_PER_PAGE)
}
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')
modalTitle.innerText = ''
modalImage.innerHTML = ''
modalDate.innerText = ''
modalDescription.innerText = ''
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 addFavoriteID (id) {
const list = JSON.parse(localStorage.getItem('favoriteMovies')) || []
const movie = movies.find((movie) => movie.id === id)
if (list.some((movie) => movie.id === id)) {
return alert('此電影已在收藏清單中!')
}
list.push(movie)
console.log(list)
localStorage.setItem('favoriteMovies',JSON.stringify(list))
}
dataPanel.addEventListener('click',function onPanelClicked(event) {
const target = event.target
if (target.matches('.btn-show-movie')) {
console.log(target.dataset)
showMovieModal(Number(target.dataset.id))
} else if (target.matches('.btn-add-favorite')) {
addFavoriteID(Number(target.dataset.id))
}
})
paginator.addEventListener('click', function onPaginatorClick(event) {
if(event.target.tagName !== 'A') return
const page =Number(event.target.dataset.page)
renderMovieList(getMoviesByPage(page))
})
searchForm.addEventListener('submit', function onSearchFormSubmitted(event) {
event.preventDefault()
const keyword = searchInput.value.trim().toLowerCase()
filteredMovies = movies.filter(movie => movie.title.toLowerCase().includes(keyword))
if (filteredMovies.length === 0){
alert(" Cannot find movies with keyword: " + keyword)
return renderMovieList(data)
}
// for (const movie of movies){
// if (movie.title.toLowerCase().includes(keyword)){
// filteredMovies.push(movie)
// }
// }
renderPaginator(filteredMovies.length)
renderMovieList(getMoviesByPage(1))
})
// 取得API
axios.get(INDEX_URL).then((response) => {
movies.push(...response.data.results)
renderPaginator(movies.length)
renderMovieList(getMoviesByPage(1))
}).catch((err)=> console.log(err))