-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibscript.js
More file actions
372 lines (329 loc) · 10.9 KB
/
Copy pathlibscript.js
File metadata and controls
372 lines (329 loc) · 10.9 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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
// array to store books
const myLibrary = [];
// refactored book constructor using class
class Book {
constructor(title, author, pages, published, stats, adaptation, cover) {
this.title = title;
this.author = author;
this.pages = pages;
this.published = published;
this.stats = stats;
this.adaptation = adaptation;
this.cover = cover || "images/placeholdercover.png";
this.id = self.crypto.randomUUID(); // random uuid for each book
}
// methods here
info() {
return `<div style="text-align: center;">
<img src="${this.cover}" alt="${this.title}" class="stamp" style="width: 103px; height: 155px; margin-bottom: 20px; margin-top: -15px">
<div>${this.title} by ${this.author}<br>${this.pages} pages<br>Published on ${this.published}<br>${this.stats}<br>Has ${this.adaptation} adaptation</div>
</div>`;
}
toggle() {
// function to toggle book's read/unread status
if (this.stats === "Read") {
this.stats = "Unread";
console.log("read --> unread");
} else if (this.stats === "Unread") {
this.stats = "Read";
console.log("unread --> read");
} else {
console.log("Error");
}
// displayBooks();
return this.stats;
}
}
// add books to library array
function addBookToLibrary(
title,
author,
pages,
published,
stats,
adaptation,
cover
) {
// take params, create a book then store it in the array
myLibrary.push(
new Book(title, author, pages, published, stats, adaptation, cover)
);
}
// manually add a few books to the array so the display can be seen
// test book 1
addBookToLibrary(
"Fight Club",
"Chuck Palahniuk",
"208",
"1996-08-17",
"Read",
"a movie",
"images/fightclubcover.jpg"
);
// test book 2
addBookToLibrary(
"American Gods",
"Neil Gaiman",
"465",
"2001-06-19",
"Read",
"a TV show",
"images/americangodscover.jpg"
);
// test book 3
addBookToLibrary(
"La Belle Sauvage",
"Philip Pullman",
"560",
"2017-10-19",
"Unread",
"no",
"images/labellecover.jpg"
);
// wait for DOM to be fully loaded before displaying books
document.addEventListener("DOMContentLoaded", function () {
// get the book container element
const bookContainer = document.getElementById("bookContainer");
if (!bookContainer) {
console.error("bookContainer element not found!");
return;
}
// get other necessary elements
const showButton = document.getElementById("addBook");
const bookInput = document.getElementById("bookInput");
const outputBox = document.querySelector("output");
const confirmBtn = document.querySelector("#confirmBtn");
// store the form reference once
const userInputForm = document.getElementById("userInput");
// get form fields for validation
const titleField = document.getElementById("title");
const authorField = document.getElementById("author");
const pagesField = document.getElementById("pages");
const publishedField = document.getElementById("published");
// check if all elements exist
if (!showButton) console.error("addBook button not found!");
if (!bookInput) console.error("bookInput dialog not found!");
if (!outputBox) console.error("output element not found!");
if (!confirmBtn) console.error("confirmBtn button not found!");
if (!userInputForm) console.error("userInput form not found!");
// set up realtime validation for each field
function setupFieldValidation() {
// title validation
if (titleField) {
titleField.addEventListener("input", () => {
if (titleField.validity.valueMissing) {
titleField.setCustomValidity("Title is required");
} else if (titleField.validity.tooShort) {
titleField.setCustomValidity(
"Title must be at least 1 character long"
);
} else {
titleField.setCustomValidity("");
}
titleField.reportValidity();
});
titleField.addEventListener("blur", () => {
titleField.reportValidity();
});
}
// author validation
if (authorField) {
authorField.addEventListener("input", () => {
if (authorField.validity.valueMissing) {
authorField.setCustomValidity("Author is required");
} else if (authorField.validity.tooShort) {
authorField.setCustomValidity(
"Author must be at least 1 character long"
);
} else {
authorField.setCustomValidity("");
}
authorField.reportValidity();
});
authorField.addEventListener("blur", () => {
authorField.reportValidity();
});
}
// pages validation
if (pagesField) {
pagesField.addEventListener("input", () => {
if (pagesField.validity.valueMissing) {
pagesField.setCustomValidity("Number of pages is required");
} else if (pagesField.validity.rangeUnderflow) {
pagesField.setCustomValidity("Number of pages must be at least 1");
} else if (pagesField.validity.badInput) {
pagesField.setCustomValidity("Please enter a valid number");
} else {
pagesField.setCustomValidity("");
}
pagesField.reportValidity();
});
pagesField.addEventListener("blur", () => {
pagesField.reportValidity();
});
}
// publication date validation
if (publishedField) {
publishedField.addEventListener("input", () => {
if (publishedField.validity.valueMissing) {
publishedField.setCustomValidity("Publication date is required");
} else {
publishedField.setCustomValidity("");
}
publishedField.reportValidity();
});
publishedField.addEventListener("blur", () => {
publishedField.reportValidity();
});
}
}
// validate all fields before submission
function validateAllFields() {
let isValid = true;
const fields = [titleField, authorField, pagesField, publishedField];
fields.forEach((field) => {
if (field && !field.checkValidity()) {
field.reportValidity();
isValid = false;
}
});
return isValid;
}
// loop through array to display library
function displayBooks() {
// clear existing books first to avoid duplicates
bookContainer.innerHTML = "";
// add each book to the container on its own card
for (const book of myLibrary) {
const bookCard = document.createElement("div");
bookCard.classList.add("bookCard");
bookCard.dataset.id = book.id;
// create icon bar
const iconBar = document.createElement("div");
iconBar.classList.add("icon-bar");
// book icons
const bookIcon = document.createElement("span");
bookIcon.title = "toggle read/unread";
bookIcon.style.cursor = "pointer";
bookIcon.innerHTML = `<img src="${
book.stats === "Read"
? "images/book-open-variant.svg"
: "images/book-open-variant-outline.svg"
}" class="${book.stats === "Read" ? "book-bold" : "book-outline"}">`;
bookIcon.classList.add("book-icon-left");
// toggle read/unread status
bookIcon.addEventListener("click", function () {
book.toggle();
displayBooks();
});
// ❌ icon
const crossIcon = document.createElement("span");
crossIcon.title = "delete book";
crossIcon.style.cursor = "pointer";
crossIcon.innerHTML = `<img src="images/alpha-x-box-outline.svg" class="cross">`;
// remove book
crossIcon.addEventListener("click", function () {
const idToDelete = bookCard.dataset.id;
const index = myLibrary.findIndex((book) => book.id === idToDelete);
if (index !== -1) {
myLibrary.splice(index, 1);
}
bookCard.remove();
});
// vertical line
const verticalLine = document.createElement("div");
verticalLine.classList.add("verticalLine");
// vertical dots
const holePunch1 = document.createElement("span");
holePunch1.classList.add("holePunch1");
const holePunch2 = document.createElement("span");
holePunch2.classList.add("holePunch2");
const holePunch3 = document.createElement("span");
holePunch3.classList.add("holePunch3");
// appending elements to book card
iconBar.appendChild(bookIcon);
iconBar.appendChild(crossIcon);
bookCard.appendChild(verticalLine);
bookCard.appendChild(holePunch1);
bookCard.appendChild(holePunch2);
bookCard.appendChild(holePunch3);
bookCard.appendChild(iconBar);
// book info
bookCard.insertAdjacentHTML("beforeend", `<p>${book.info()}</p>`);
bookContainer.appendChild(bookCard);
}
console.log("Books displayed:", myLibrary.length); // debugging
}
// display initial books
displayBooks();
// set up validation when DOM is ready
setupFieldValidation();
// bookInput opens modal
showButton.addEventListener("click", () => {
bookInput.showModal();
});
// cancel closes dialog without submitting
bookInput.addEventListener("close", (e) => {
// make sure form exists before resetting
if (userInputForm) {
// clear form input
userInputForm.reset();
// clear any custom validation messages
const fields = [titleField, authorField, pagesField, publishedField];
fields.forEach((field) => {
if (field) {
field.setCustomValidity("");
}
});
} else {
console.error("Cannot reset form - userInput form not found!");
}
});
// handle form submission
confirmBtn.addEventListener("click", (event) => {
event.preventDefault(); // don't submit to server
// validate all fields first
if (!validateAllFields()) {
console.log("Form validation failed");
// stop here if validation fails
return;
}
// collect form data if validation passes
const title = document.getElementById("title")?.value;
const author = document.getElementById("author")?.value;
const pages = document.getElementById("pages")?.value;
const published = document.getElementById("published")?.value;
const stats = document.getElementById("stats")?.value;
const adaptation = document.getElementById("adaptation")?.value;
const coverInput = document.getElementById("cover");
let coverPath = "images/placeholdercover.png"; // default cover
console.log("Form data collected:", {
title,
author,
pages,
published,
stats,
adaptation,
});
// cover file upload
if (coverInput && coverInput.files && coverInput.files[0]) {
coverPath = URL.createObjectURL(coverInput.files[0]);
}
// add book with the collected data
addBookToLibrary(
title,
author,
pages,
published,
stats,
adaptation,
coverPath
);
console.log("Book added to library, new count:", myLibrary.length);
// redisplay all books
displayBooks();
// close dialog
bookInput.close("default");
});
});
console.table(myLibrary);