forked from Technigo/project-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
312 lines (270 loc) · 8.82 KB
/
script.js
File metadata and controls
312 lines (270 loc) · 8.82 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
299
300
301
302
303
/*Here we have created two different arrays that you can work with if you want.
If you choose to create your own arrays with elements, just make sure that some
of the properties make sense to filter on, and some to sort on.*/
const books = [
{
title: "The Great Gatsby",
author: "F. Scott Fitzgerald",
year: 1925,
genre: "Fiction",
rating: 4.2,
description:
"A classic novel set in the Roaring Twenties, it explores themes of wealth, love, and the American Dream through the enigmatic Jay Gatsby.",
image: "./books-images/the-great-gatsby.jpg"
},
{
title: "To Kill a Mockingbird",
author: "Harper Lee",
year: 1960,
genre: "Fiction",
rating: 4.5,
description:
"Set in the American South, this novel tackles issues of racism and injustice through the eyes of young Scout Finch.",
image: "./books-images/to-kill-a-mockingbird.jpg"
},
{
title: "1984",
author: "George Orwell",
year: 1949,
genre: "Science Fiction",
rating: 4.4,
description:
"A dystopian classic that explores totalitarianism and the consequences of a surveillance state in a bleak future.",
image: "./books-images/1984.jpg"
},
{
title: "Pride and Prejudice",
author: "Jane Austen",
year: 1813,
genre: "Fiction",
rating: 4.25,
description:
"A timeless romance novel that examines societal expectations and the misunderstandings that can arise from pride and prejudice.",
image: "./books-images/pride-and-prejudice.jpg"
},
{
title: "The Catcher in the Rye",
author: "J.D. Salinger",
year: 1951,
genre: "Fiction",
rating: 4,
description:
"Narrated by the teenage Holden Caulfield, the novel explores themes of alienation and the search for authenticity.",
image: "./books-images/unknown.jpg"
},
{
title: "The Hobbit",
author: "J.R.R. Tolkien",
year: 1937,
genre: "Fantasy",
rating: 4.6,
description:
"A fantasy adventure novel that follows Bilbo Baggins on a quest to help a group of dwarves reclaim their homeland from a dragon.",
image: "./books-images/the-hobbit.jpg"
},
{
title: "Harry Potter and the Sorcerer's Stone",
author: "J.K. Rowling",
year: 1997,
genre: "Fantasy",
rating: 4.7,
description:
"The first book in the beloved Harry Potter series, it introduces readers to the magical world of Hogwarts and the young wizard Harry Potter.",
image: "./books-images/harry-potter-and-the-sorcerer.jpg"
},
{
title: "Moby-Dick",
author: "Herman Melville",
year: 1851,
genre: "Adventure",
rating: 4.1,
description:
"An epic tale of obsession, revenge, and the relentless pursuit of the great white whale, Moby Dick.",
image: "./books-images/moby-dick.jpg"
},
{
title: "The Lord of the Rings: The Fellowship of the Ring",
author: "J.R.R. Tolkien",
year: 1954,
genre: "Fantasy",
rating: 4.55,
description:
"The first volume of the epic fantasy trilogy follows Frodo Baggins and the Fellowship on their quest to destroy the One Ring.",
image: "./books-images/the-lord-of-the-rings.jpg"
},
{
title: "The Shining",
author: "Stephen King",
year: 1977,
genre: "Horror",
rating: 4.3,
description:
"A psychological horror novel that tells the story of the Torrance family's terrifying experiences at the haunted Overlook Hotel.",
image: "./books-images/unknown.jpg"
},
{
title: "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe",
author: "C.S. Lewis",
year: 1950,
genre: "Fantasy",
rating: 4.15,
description:
"The first book in the Chronicles of Narnia series, it follows the adventures of children who discover the magical land of Narnia.",
image: "./books-images/the-chronicles-of-narnia.jpg"
},
{
title: "The Da Vinci Code",
author: "Dan Brown",
year: 2003,
genre: "Mystery",
rating: 3.8,
description:
"A gripping mystery thriller that follows Harvard symbologist Robert Langdon as he unravels the secrets of the Da Vinci Code.",
image: "./books-images/unknown.jpg"
},
{
title: "The Alchemist",
author: "Paulo Coelho",
year: 1988,
genre: "Fiction",
rating: 4.25,
description:
"A philosophical novel that tells the story of Santiago, a shepherd boy, on his quest to discover his personal legend.",
image: "./books-images/unknown.jpg"
},
{
title: "The Hunger Games",
author: "Suzanne Collins",
year: 2008,
genre: "Science Fiction",
rating: 4.3,
description:
"In a dystopian future, Katniss Everdeen becomes a symbol of rebellion when she volunteers to take her sister's place in the brutal Hunger Games.",
image: "./books-images/unknown.jpg"
},
{
title: "The Girl with the Dragon Tattoo",
author: "Stieg Larsson",
year: 2005,
genre: "Mystery",
rating: 4.1,
description:
"A gripping mystery novel featuring investigative journalist Mikael Blomkvist and the enigmatic hacker Lisbeth Salander.",
image: "./books-images/unknown.jpg"
},
{
title: "The Road",
author: "Cormac McCarthy",
year: 2006,
genre: "Dystopian",
rating: 4,
description:
"Set in a post-apocalyptic world, it follows a father and son's harrowing journey to survive and find safety.",
image: "./books-images/unknown.jpg"
},
{
title: "The Hitchhiker's Guide to the Galaxy",
author: "Douglas Adams",
year: 1979,
genre: "Science Fiction",
rating: 4.35,
description:
"A comedic science fiction series that follows the misadventures of Arthur Dent after Earth's destruction.",
image: "./books-images/unknown.jpg"
},
{
title: "The Giver",
author: "Lois Lowry",
year: 1993,
genre: "Dystopian",
rating: 4.12,
description:
"A dystopian novel set in a seemingly perfect society where young Jonas discovers the dark truth beneath the surface.",
image: "./books-images/unknown.jpg"
}
]
// Variables for HTML elements by ID
const container = document.getElementById("container");
const filterDropdown = document.getElementById("filterDropdown");
const sortButton = document.getElementById("sortButton");
// const faveBooks = [];
// Load all books when page loads
const loadBooks = (bookArray) => {
// Clears the containet HTML element of content
container.innerHTML = ""
bookArray.forEach((book) => {
// console.log(`${book.title} is a good book`)
// Adds the populated card to the HTML
container.innerHTML += `
<div class="card">
<img src="${book.image}" art="${book.title}">
<p class="title"><b>Title:</b> ${book.title}</p>
<p class="description"> ${book.description}</p>
<p class="author"><b>Author:</b> ${book.author}</p>
<p class="genre"><b>Genre:</b> ${book.genre}</p>
<p class="style.css"><b>Released:</b> ${book.year}</p>
<p class="rating"><b>Rating:</b> ${book.rating}</p>
</div>
`;
});
};
/*
// Not working
const filterBooks = () => {
const value = filterDropdown.value.toLowerCase();
if (value === "all") {
loadBooks(books);
} else {
const filteredList = books.filter((book) => book.genre.toLocaleLowerCase() === value);
loadBooks(filteredList);
}
};*/
//Filters
/*-------------------------------------------*/
// Dropdown by genre
// Function filter based on genre: all, fiction, scienceFiction, fantasy, adventure, horror, mystery, dystopian
const filterBooks = () => {
const value = filterDropdown.value;
if (value === "ALL") {
loadBooks(books);
} else {
const filteredList = books.filter((book) => book.genre === value);
loadBooks(filteredList);
}
};
// Need to add to be able to re select ALL again
// Make options case insensitive
/*-------------------------------------------*/
// Initial sort direction A-Z
let sortDirection = "az";
const sortBooks = () => {
// Toggle between A-Z anb Z-A
sortDirection = sortDirection === "az" ? "za" : "az";
if (sortDirection === "az") {
// Sort books A-Z by title
books.sort((a, b) => {
const titleA = a.title.toLowerCase();
const titleB = b.title.toLowerCase();
return titleA.localeCompare(titleB);
});
// Update button text to A-Z
sortButton.textContent = "Sort by title A-Z";
} else {
// Sort books in Z-A by title
books.sort((a, b) => {
const titleA = a.title.toLowerCase();
const titleB = b.title.toLowerCase();
return titleB.localeCompare(titleA);
});
// Update button text to Z-A
sortButton.textContent = "Sort by title Z-A";
}
filterBooks();
};
// eventListeners
// Apply the filter when the user changes the dropdown selection
filterDropdown.addEventListener("change", filterBooks);
// Toggle A-Z sorting button
sortButton.addEventListener("click", sortBooks);
// Loading the books array
loadBooks(books)