-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscript.js
More file actions
298 lines (260 loc) · 9.63 KB
/
script.js
File metadata and controls
298 lines (260 loc) · 9.63 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
// ----- DOM elements
const searchInput = document.getElementById("search-input");
const searchCount = document.getElementById("search-count");
const showSelect = document.getElementById("show-select");
const episodeSelect = document.getElementById("episode-select");
const statusMessage = document.getElementById("status-message");
const homeLink = document.getElementById("home-link");
const allEpisodes = document.getElementById("episodes");
const allShows = document.getElementById("shows");
const showSelectContainer = document.getElementById("show-select-container");
const episodeSelectContainer = document.getElementById(
"episode-select-container",
);
// ----- state and cache
const state = {
shows: [],
episodes: [],
episodeCache: {},
searchTerm: "",
};
// -----setup function
function setup() {
fetchTvShows()
.then(function (tvShows) {
statusMessage.textContent = "";
// sort shows alphabetically, case-insensitive
state.shows = tvShows.sort((a, b) =>
a.name.localeCompare(b.name, undefined, { sensitivity: "base" }),
);
populateShowSelect(state.shows);
return makePageForShows(state.shows);
})
.catch(function (error) {
// Requirement 5: Handle errors for the user
statusMessage.textContent =
"Failed to load episodes. Please try again later.";
console.error(error);
});
}
// ================================== DROPDOWNS ==================================
// ----- show select dropdown
function populateShowSelect(shows) {
showSelect.innerHTML = "";
const defaultOption = document.createElement("option");
defaultOption.value = "";
defaultOption.textContent = "Select a show...";
showSelect.appendChild(defaultOption);
shows.forEach((show) => {
const option = document.createElement("option");
option.value = show.id;
option.textContent = show.name;
showSelect.appendChild(option);
});
}
// ----- episode select Dropdown
function populateEpisodeSelect(episodes) {
// episodes: array of episode objects for the currently selected show
const select = episodeSelect;
// default option to show all
const defaultOption = document.createElement("option");
defaultOption.value = "";
defaultOption.textContent = "Show all episodes";
select.appendChild(defaultOption);
episodes.forEach((episode) => {
const option = document.createElement("option");
option.value = episode.id;
option.textContent = `${createEpisodeCode(episode)} - ${episode.name}`;
select.appendChild(option);
});
}
// ================================== EVENT LISTENERS==================================
// ----- event listener search show and episode
searchInput.addEventListener("input", function () {
const searchTerm = searchInput.value.trim().toLowerCase();
const isViewingEpisodes = episodeSelectContainer.style.display === "block";
if (isViewingEpisodes) {
const filteredEpisodes = state.episodes.filter(function (episode) {
const name = (episode.name || "").toLowerCase();
const summary = (episode.summary || "").toLowerCase();
return name.includes(searchTerm) || summary.includes(searchTerm);
});
makePageForEpisodes(filteredEpisodes);
searchCount.textContent = `Displaying ${filteredEpisodes.length} / ${state.episodes.length} episodes`;
} else {
const filteredShows = state.shows.filter(function (show) {
const name = (show.name || "").toLowerCase();
const summary = (show.summary || "").toLowerCase();
const genres = show.genres.join(" ").toLowerCase();
return (
name.includes(searchTerm) ||
summary.includes(searchTerm) ||
genres.includes(searchTerm)
);
});
makePageForShows(filteredShows);
searchCount.textContent = `Displaying ${filteredShows.length} / ${state.shows.length} shows`;
}
});
// ----- event listener episode dropdown
episodeSelect.addEventListener("change", (event) => {
const targetId = `ep-${event.target.value}`;
// if user chose the empty option, show all episodes for the current show
if (!event.target.value) {
makePageForEpisodes(state.episodes);
return;
}
const element = document.getElementById(targetId);
if (element) {
element.scrollIntoView({ behavior: "smooth", block: "start" });
}
});
// ----- event listener show dropdown
showSelect.addEventListener("change", function (e) {
const showId = e.target.value;
if (!showId) return;
loadEpisodesForShow(showId);
allShows.innerHTML = "";
});
// ----- event listener hyperlink home
homeLink.addEventListener("click", function (event) {
event.preventDefault();
searchInput.value = "";
makePageForShows(state.shows);
});
// ==================================== EPISODES ====================================
// ----- setup for episodes
function makePageForEpisodes(episodeList) {
episodeSelectContainer.style.display = "block";
episodeSelect.innerHTML = "";
document.getElementById("episodes").innerHTML = "";
document.getElementById("shows").innerHTML = "";
populateEpisodeSelect(episodeList);
showAllEpisodes(episodeList);
searchCount.textContent = `Displaying ${episodeList.length} / ${state.episodes.length} episodes`;
homeLink.textContent = "<<< Return to Title Page of Shows";
}
// ----- appends episodes
function showAllEpisodes(episodes) {
const episodeCards = episodes.map(createEpisodeCard);
document.getElementById("episodes").append(...episodeCards);
}
// ----- creates episode cards
function createEpisodeCard(episode) {
const episodeCode = createEpisodeCode(episode);
const episodeCard = document
.getElementById("episode-card-template")
.content.cloneNode(true);
const section = episodeCard.querySelector("section");
section.id = `ep-${episode.id}`;
const img = episodeCard.querySelector("img");
if (episode.image && episode.image.medium) {
img.src = episode.image.medium;
} else {
img.remove();
}
episodeCard.querySelector("h3").textContent =
`${episodeCode} - ${episode.name}`;
episodeCard.querySelector("p").innerHTML =
episode.summary || "<em>No summary available.</em>";
return episodeCard;
}
// ----- creates episode code e.g. S01E05
function createEpisodeCode(episode) {
const seasonNum = String(episode.season);
const episodeNum = String(episode.number);
return `S${seasonNum.padStart(2, 0)}E${episodeNum.padStart(2, 0)}`;
}
// -- gets from cache or fetches episodes for show
function loadEpisodesForShow(showId) {
const showName = state.shows.find((show) => show.id === Number(showId)).name;
// do not fetch if cached
if (state.episodeCache[showId]) {
state.episodes = state.episodeCache[showId];
console.log(`got ${showName} episodes from cache`);
makePageForEpisodes(state.episodes);
return Promise.resolve(state.episodes);
}
statusMessage.textContent = "Loading episodes...";
const url = `https://api.tvmaze.com/shows/${showId}/episodes`;
return fetch(url)
.then((res) => {
if (!res.ok) throw new Error(`Failed to fetch episodes: ${res.status}`);
return res.json();
})
.then((episodes) => {
console.log(`fetched ${showName} episodes from tvMaze`);
state.episodeCache[showId] = episodes;
state.episodes = episodes;
makePageForEpisodes(episodes);
statusMessage.textContent = "";
return episodes;
})
.catch((err) => {
console.error(err);
statusMessage.textContent = "Failed to load episodes for that show.";
});
}
// ==================================== SHOWS ====================================
// ----- setup for shows
function makePageForShows(showList) {
allEpisodes.innerHTML = "";
episodeSelectContainer.style.display = "none";
homeLink.textContent = "";
showSelect.innerHTML = "";
document.getElementById("shows").innerHTML = "";
populateShowSelect(showList);
showAllShows(showList);
searchCount.textContent = `Displaying ${showList.length} / ${state.shows.length} shows`;
}
// ----- appends shows
function showAllShows(shows) {
const showCards = shows.map(createShowCard);
document.getElementById("shows").append(...showCards);
}
// ----- creates show cards
function createShowCard(show) {
const showCard = document
.getElementById("show-card-template")
.content.cloneNode(true);
const section = showCard.querySelector("section");
section.id = `ep-${show.id}`;
const img = showCard.querySelector("img");
if (show.image && show.image.medium) {
img.src = show.image.medium;
} else {
img.remove();
}
showCard.querySelector("a").textContent = `${show.name}`;
showCard.querySelector("p[summary]").innerHTML =
`${show.summary || "<em>Unavailable.</em>"}`;
showCard.querySelector("p[genres]").innerHTML =
`<b>Genres:</b> ${show.genres.join(" - ") || "Unavailable."}`;
showCard.querySelector("p[status]").innerHTML =
`<b>Status:</b> ${show.status || "Unavailable."}`;
showCard.querySelector("p[rating]").innerHTML =
`<b>Rating:</b> ${show.rating.average || "Unavailable."}`;
showCard.querySelector("p[runtime]").innerHTML =
`<b>Runtime:</b> ${show.runtime || "Unavailable."}`;
// ----- event listener hyperlink show
showCard.querySelector("a").addEventListener("click", function (event) {
event.preventDefault();
window.scrollTo({ top: 0, behavior: "smooth" });
searchInput.value = "";
loadEpisodesForShow(show.id);
});
return showCard;
}
// ----- fetches shows
function fetchTvShows() {
const tvShowURL = "https://api.tvmaze.com/shows";
return fetch(tvShowURL).then(function (data) {
console.log("fetched shows from tvMaze");
return data.json();
});
}
// ==================================== PAGE LOAD ====================================
// wire show select change after DOM load
window.onload = function () {
setup();
};