forked from CodeYourFuture/Module-Data-Flows
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
116 lines (102 loc) · 3.18 KB
/
script.js
File metadata and controls
116 lines (102 loc) · 3.18 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
let myLibrary = [];
window.addEventListener("load", function (e) {
populateStorage();
});
function populateStorage() {
if (myLibrary.length == 0) {
let book1 = new Book("Robison Crusoe", "Daniel Defoe", 252, true);
let book2 = new Book(
"The Old Man and the Sea",
"Ernest Hemingway",
127,
true
);
myLibrary.push(book1);
myLibrary.push(book2);
render();
}
}
const titleElem = document.querySelector(".title");
const authorElem = document.querySelector(".author");
const pagesElem = document.querySelector(".pages");
const checkBox = document.querySelector(".check");
//check the right input from forms and if its ok -> add the new book (object in array)
//via Book function and start render function
export function submit() {
const bookTitle = titleElem.value.trim();
const bookAuthor = authorElem.value.trim();
const bookPages = Number(pagesElem.value);
if (!Number.isInteger(bookPages)){
alert("Pages must be an integer !");
return false;
}
else if (
bookTitle == "" ||
bookAuthor == "" ||
bookPages <= 0
) {
alert("Please fill all fields!");
return false;
} else {
let book = new Book(bookTitle, bookAuthor, bookPages, checkBox.checked);
myLibrary.push(book);
render();
titleElem.value = "";
authorElem.value = "";
pagesElem.value = "";
checkBox.checked = false;
}
}
document.querySelector('#submitButton').addEventListener('click', () => {
submit();
})
function Book(title, author, pages, check) {
this.title = title;
this.author = author;
this.pages = pages;
this.check = check;
}
function render() {
let table = document.getElementById("display");
let tableBody = document.querySelector('tbody');
tableBody.innerHTML = "";
//insert updated row and cells
let length = myLibrary.length;
for (let i = 0; i < length; i++) {
let row = tableBody.insertRow(0);
let titleCell = row.insertCell(0);
let authorCell = row.insertCell(1);
let pagesCell = row.insertCell(2);
let wasReadCell = row.insertCell(3);
let deleteCell = row.insertCell(4);
titleCell.innerText = myLibrary[i].title;
authorCell.innerText = myLibrary[i].author;
pagesCell.innerText = myLibrary[i].pages;
//add and wait for action for read/unread button
let changeButton = document.createElement("button");
changeButton.id = i;
changeButton.className = "btn btn-success";
wasReadCell.appendChild(changeButton);
let readStatus = "";
readStatus = myLibrary[i].check ? "yes":"no";
changeButton.innerText = readStatus;
changeButton.addEventListener("click", function () {
myLibrary[i].check = !myLibrary[i].check;
render();
});
//add delete button to every row and render again
let delButton = document.createElement("button");
delButton.id = i + 5;
deleteCell.appendChild(delButton);
delButton.className = "btn btn-warning";
delButton.innerText = "Delete";
delButton.addEventListener("click", function () {
const deletedTitle = myLibrary[i].title;
myLibrary.splice(i, 1);
render();
setTimeout(() => {
alert(`You've deleted title: ${deletedTitle}`);
}, 0)
});
}
}