-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.js
133 lines (101 loc) · 3.27 KB
/
library.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
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
const library = [
new Book("Essentialism: The Disciplined Pursuit of Less", "Greg McKeown", 304, "Read")
];
function Book(title, author, pages, read) {
this.title = title;
this.author = author;
this.pages = pages;
this.read = read;
this.info = function() {
if (read == True)
return this.title+" by "+this.author+", "+pages+" pages, " +"read";
else
return this.title+" by "+this.author+", "+pages+" pages, " +"not read";
}
}
let books = document.getElementsByClassName("books");
function render() {
// Clear all books before rendering
books[0].textContent = "";
// Reset IDs for buttons
let id = 0;
for (var b of library) {
const newBook = document.createElement("div");
newBook.classList.add("book");
const removeBook = document.createElement("button");
removeBook.innerHTML = "X";
removeBook.classList.add("removeBook");
removeBook.dataset.id = id;
const removeDiv = document.createElement("div");
removeDiv.classList.add("removeDiv");
removeDiv.append(removeBook);
newBook.appendChild(removeDiv);
const titleSpan = document.createElement("span");
titleSpan.innerHTML = b.title;
titleSpan.id = "title";
newBook.appendChild(titleSpan);
const authorSpan = document.createElement("span");
authorSpan.innerHTML = b.author;
authorSpan.id = "author";
newBook.appendChild(authorSpan);
const pagesSpan = document.createElement("span");
pagesSpan.innerHTML = b.pages + " pages";
pagesSpan.id = "pages";
newBook.appendChild(pagesSpan);
// const readSpan = document.createElement("span");
// readSpan.innerHTML = b.read;
// readSpan.id = "read";
// newBook.appendChild(readSpan);
const markRead = document.createElement("button");
markRead.innerHTML = b.read;
markRead.id = "markRead";
newBook.appendChild(markRead);
// Used getElementsByClassName -> books is an array
books[0].appendChild(newBook);
// Increment ID to associate DOM elements to book objects
id += 1;
removeBook.onclick = function() {
library.splice(removeBook.dataset.id, 1);
render();
};
markRead.onclick = function() {
console.log("read");
if (b.read == "Read")
b.read = "Unread";
else
b.read = "Read";
render();
};
}
}
function addBook(title, author, pages, read) {
let newBook = new Book(title, author, pages, read);
library.push(newBook);
render();
}
const dialog = document.querySelector("dialog");
const showButton = document.querySelector("dialog + button");
const submitButton = document.querySelector("dialog button");
showButton.addEventListener("click", () => {
dialog.showModal();
});
let form = document.getElementById("book_form");
form.addEventListener("submit", function(event) {
event.preventDefault();
let titleField = form.elements['f_title'];
let title = titleField.value;
let authorField = form.elements['f_author'];
let author = authorField.value;
let pagesField = form.elements['f_pages'];
let pages = pagesField.value;
let readField = form.elements['f_read'];
let read = readField.checked;
if (read)
read = "Read";
else
read = "Unread";
addBook(title, author, pages, read);
form.reset();
dialog.close();
});
render();