Skip to content
Open
90 changes: 33 additions & 57 deletions debugging/book-library/index.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title> </title>
<meta
charset="utf-8"
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Book Library</title>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>

<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
/>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" href="style.css" />
</head>

<body>
Expand All @@ -23,72 +22,49 @@ <h1>Library</h1>
<p>Add books to your virtual library</p>
</div>

<button data-toggle="collapse" data-target="#demo" class="btn btn-info">
<button
id="toggleFormBtn"
class="btn btn-info"
data-toggle="collapse"
data-target="#demo"
aria-expanded="false"
aria-controls="demo"
>
Add new book
</button>

<div id="demo" class="collapse">
<div class="form-group">
<label for="title">Title:</label>
<input
type="title"
class="form-control"
id="title"
name="title"
required
/>
<label for="author">Author: </label>
<input
type="author"
class="form-control"
id="author"
name="author"
required
/>
<label for="pages">Pages:</label>
<input
type="number"
class="form-control"
id="pages"
name="pages"
required
/>
<form id="bookForm" class="form-group">
<label>Title:</label>
<input type="text" class="form-control" id="title" />

<label>Author:</label>
<input type="text" class="form-control" id="author" />

<label>Pages:</label>
<input type="number" class="form-control" id="pages" min="1" />

<label class="form-check-label">
<input
type="checkbox"
class="form-check-input"
id="check"
value=""
/>Read
<input type="checkbox" class="form-check-input" id="check" /> Read
</label>
<input
type="submit"
value="Submit"
class="btn btn-primary"
onclick="submit();"
/>
</div>

<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>

<div id="notification" class="notification"></div>

<table class="table" id="display">
<thead class="thead-dark">
<tr>
<th>Title</th>
<th>Author</th>
<th>Number of Pages</th>
<th>Pages</th>
<th>Read</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
<tbody></tbody>
</table>

<script src="script.js"></script>
Expand Down
230 changes: 143 additions & 87 deletions debugging/book-library/script.js
Original file line number Diff line number Diff line change
@@ -1,103 +1,159 @@
let myLibrary = [];
const STORAGE_KEY = "bookLibrary_v1";

window.addEventListener("load", function (e) {
populateStorage();
render();
});
/* ---------- Storage ---------- */

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
function loadStorage() {
try {
const raw = localStorage.getItem(STORAGE_KEY);
if (!raw) return false;

const parsed = JSON.parse(raw);
if (!Array.isArray(parsed)) return false;

myLibrary = parsed.map(
(o) => new Book(o.title, o.author, o.pages, o.check)
);
myLibrary.push(book1);
myLibrary.push(book2);
render();
return true;
} catch (e) {
console.warn("Failed to load storage", e);
return false;
}
}

const title = document.getElementById("title");
const author = document.getElementById("author");
const pages = document.getElementById("pages");
const check = document.getElementById("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
function submit() {
if (
title.value == null ||
title.value == "" ||
pages.value == null ||
pages.value == ""
) {
alert("Please fill all fields!");
return false;
} else {
let book = new Book(title.value, title.value, pages.value, check.checked);
library.push(book);
render();
function saveStorage() {
const plain = myLibrary.map((b) => ({
title: b.title,
author: b.author,
pages: b.pages,
check: b.check,
}));
localStorage.setItem(STORAGE_KEY, JSON.stringify(plain));
}

function populateStorage() {
if (loadStorage()) return;

myLibrary.push(
new Book("Robinson Crusoe", "Daniel Defoe", 252, true),
new Book("The Old Man and the Sea", "Ernest Hemingway", 127, true)
);
saveStorage();
}

/* ---------- Book Model ---------- */

class Book {
constructor(title, author, pages, check) {
this.title = title;
this.author = author;
this.pages = pages;
this.check = check;
}

toggleRead() {
this.check = !this.check;
}
}

/* ---------- DOM ---------- */

const titleEl = document.getElementById("title");
const authorEl = document.getElementById("author");
const pagesEl = document.getElementById("pages");
const readEl = document.getElementById("check");
const formEl = document.getElementById("bookForm");
const tableEl = document.getElementById("display");
const notificationEl = document.getElementById("notification");

/* ---------- Helpers ---------- */

function showToast(message, ms = 2500) {
notificationEl.textContent = message;
notificationEl.classList.add("show");
setTimeout(() => notificationEl.classList.remove("show"), ms);
}

function Book(title, author, pages, check) {
this.title = title;
this.author = author;
this.pages = pages;
this.check = check;
function showConfirm(message) {
return window.confirm(message);
}

function render() {
let table = document.getElementById("display");
let rowsNumber = table.rows.length;
//delete old table
for (let n = rowsNumber - 1; n > 0; n-- {
table.deleteRow(n);
/* ---------- Form ---------- */

formEl.addEventListener("submit", (e) => {
e.preventDefault();

const title = titleEl.value.trim();
const author = authorEl.value.trim();
const pages = Number(pagesEl.value);
const isRead = readEl.checked;

if (!title || !author) {
showToast("Title and author are required");
return;
}

if (!Number.isFinite(pages) || pages <= 0) {
showToast("Pages must be a positive number");
return;
}
//insert updated row and cells
let length = myLibrary.length;
for (let i = 0; i < length; i++) {
let row = table.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.innerHTML = myLibrary[i].title;
authorCell.innerHTML = myLibrary[i].author;
pagesCell.innerHTML = myLibrary[i].pages;

//add and wait for action for read/unread button
let changeBut = document.createElement("button");
changeBut.id = i;
changeBut.className = "btn btn-success";
wasReadCell.appendChild(changeBut);
let readStatus = "";
if (myLibrary[i].check == false) {
readStatus = "Yes";
} else {
readStatus = "No";
}
changeBut.innerText = readStatus;

changeBut.addEventListener("click", function () {
myLibrary[i].check = !myLibrary[i].check;

myLibrary.push(new Book(title, author, pages, isRead));
saveStorage();
formEl.reset();
render();
});

/* ---------- Render ---------- */

function render() {
const tbody = tableEl.querySelector("tbody");
tbody.innerHTML = "";

myLibrary.forEach((book, index) => {
const row = document.createElement("tr");

const titleCell = document.createElement("td");
titleCell.textContent = book.title;

const authorCell = document.createElement("td");
authorCell.textContent = book.author;

const pagesCell = document.createElement("td");
pagesCell.textContent = book.pages;

const readCell = document.createElement("td");
const readBtn = document.createElement("button");
readBtn.className = "btn btn-success";
readBtn.textContent = book.check ? "Yes" : "No";
readBtn.onclick = () => {
book.toggleRead();
saveStorage();
render();
});

//add delete button to every row and render again
let delButton = document.createElement("button");
delBut.id = i + 5;
deleteCell.appendChild(delBut);
delBut.className = "btn btn-warning";
delBut.innerHTML = "Delete";
delBut.addEventListener("clicks", function () {
alert(`You've deleted title: ${myLibrary[i].title}`);
myLibrary.splice(i, 1);
};
readCell.appendChild(readBtn);

const actionsCell = document.createElement("td");
const deleteBtn = document.createElement("button");
deleteBtn.className = "btn btn-warning";
deleteBtn.textContent = "Delete";
deleteBtn.onclick = () => {
if (!showConfirm(`Delete "${book.title}"?`)) return;
myLibrary.splice(index, 1);
saveStorage();
render();
});
}
showToast("Book deleted");
};
actionsCell.appendChild(deleteBtn);

row.append(titleCell, authorCell, pagesCell, readCell, actionsCell);
tbody.appendChild(row);
});
}

/* ---------- Init ---------- */

document.addEventListener("DOMContentLoaded", () => {
populateStorage();
render();
});
Loading