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
94 lines (80 loc) · 2.78 KB
/
script.js
File metadata and controls
94 lines (80 loc) · 2.78 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
let myLibrary = [];
window.addEventListener("load", function (e) {
if (localStorage.getItem("myLibrary")) {
myLibrary = JSON.parse(localStorage.getItem("myLibrary"));
} else {
populateStorage();
}
render();
});
function populateStorage() {
if (myLibrary.length === 0) {
let book1 = new Book("Robinson 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);
}
}
const titleInput = document.getElementById("title");
const authorInput = document.getElementById("author");
const pagesInput = document.getElementById("pages");
const readCheckBox = document.getElementById("check");
//check the right input from forms and if its ok -> add the new book
//via Book function and start render function
function submit() {
const title = titleInput.value.trim();
const author = authorInput.value.trim();
const pages = pagesInput.value.trim();
if (!title || !author || !pages || isNaN(pages) || pages <=0) {
alert("Please fill all fields correctly!");
return;
}
let book = new Book(title, author, Number(pages), readCheckBox.checked);
myLibrary.push(book);
render();
}
class Book {
constructor(title, author, pages, check) {
this.title = title;
this.author = author;
this.pages = pages;
this.check = check;
}
}
function render() {
const tableBody = document.querySelector("#display tbody");
tableBody.innerHTML = "";
//insert updated row and cells
for (let i = 0; i < myLibrary.length; i++) {
let row = tableBody.insertRow(-1);
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.textContent= myLibrary[i].title;
authorCell.textContent = myLibrary[i].author;
pagesCell.textContent = myLibrary[i].pages;
let toggleBtn = document.createElement("button");
toggleBtn.className = "btn btn-success";
toggleBtn.textContent = myLibrary[i].check ? "Yes" : "No";
wasReadCell.appendChild(toggleBtn);
toggleBtn.addEventListener("click", function () {
myLibrary[i].check = !myLibrary[i].check;
render();
});
//add delete button to every row and render again
let delBtn = document.createElement("button");
delBtn.className = "btn btn-warning";
delBtn.textContent = "Delete";
deleteCell.appendChild(delBtn);
delBtn.addEventListener("click", function () {
if(confirm(`Are you sure you want to delete " ${myLibrary[i].title}"?`)){
myLibrary.splice(i, 1);
render();
}
});
}
// Save updated library to localStorage
localStorage.setItem("myLibrary", JSON.stringify(myLibrary));
}