Skip to content

PAWEL BROILO I MODULE DATA FLOWS I BOOK LIBRARY #220

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
162 changes: 162 additions & 0 deletions Book Library.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,162 @@
<!DOCTYPE html>
<html>
<head>
<title>Book Library</title>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0" />
<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" />
</head>

<body class="container mt-4">
<h2>Book Library</h2>

<!-- Form to add a new book -->
<div class="mb-4">
<div class="form-row">
<div class="form-group col-md-3">
<input type="text" id="title" class="form-control" placeholder="Title" />
</div>
<div class="form-group col-md-3">
<input type="text" id="author" class="form-control" placeholder="Author" />
</div>
<div class="form-group col-md-2">
<input type="number" id="pages" class="form-control" placeholder="Pages" />
</div>
<div class="form-group col-md-2 d-flex align-items-center">
<input type="checkbox" id="check" class="mr-2" />
<label for="check" class="mb-0">Read?</label>
</div>
<div class="form-group col-md-2">
<button onclick="submit()" class="btn btn-primary btn-block">Add</button>
</div>
</div>
</div>

<!-- Book table -->
<table id="display" class="table table-bordered">
<thead class="thead-dark">
<tr>
<th>Title</th>
<th>Author</th>
<th>Pages</th>
<th>Read</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<!-- Rows will be dynamically added here -->
</tbody>
</table>

<!-- Script Section (unchanged JS from your code) -->
<script>
let myLibrary = [];

window.addEventListener("load", function () {
populateStorage();
render();
});

function populateStorage() {
if (myLibrary.length === 0) {
let bookList = [
new Book("Robison Crusoe", "Daniel Defoe", "252", true),
new Book("The Old Man and the Sea", "Ernest Hemingway", "127", true),
new Book("The Great Gatsby", "F. Scott Fitzgerald", "180", true),
new Book("The Catcher in the Rye", "J.D Salinger", "277", true),
new Book("The Alchemist", "Paulo Coelho", "208", true),
new Book("Harry Potter", "J.K Rowling", "309", true),
new Book("The Lord of the Rings", "J.R.R Tolkien", "1178", true),
new Book("The Hobbit", "J.R.R Tolkien", "310", true),
new Book("The Three Musketeers", "Alexandre Dumas", "700", true),
new Book("The Little Prince", "Antoine de Saint-Exupery", "96", true),
new Book("The Psychology of Money", "Morgan Housel", "256", true),
new Book("How to Win Friends", "Dale Carnegie", "288", true),
new Book("Civilization", "Niall Ferguson", "512", true),
new Book("Around the World in 80 Days", "Jules Verne", "240", true),
new Book("Animal Farm", "George Orwell", "112", true),
new Book("Overthinking", "Ryan Creed", "256", true),
new Book("Get on with Anyone", "Katherine Stothart", "256", true),
new Book("Critical Thinking", "Jerrell Foreman", "256", true),
new Book("Emotional Intelligence", "Hanso", "256", true),
new Book("Fahrenheit 451", "Ray Bradbury", "256", true)
];
myLibrary.push(...bookList);
}
}

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

function submit() {
const titleInput = document.getElementById("title").value;
const authorInput = document.getElementById("author").value;
const pagesInput = document.getElementById("pages").value;
const isRead = document.getElementById("check").checked;

if (!titleInput || !authorInput || !pagesInput) {
alert("Please fill all fields!");
return;
}

const newBook = new Book(titleInput, authorInput, pagesInput, isRead);
myLibrary.push(newBook);

// Clear form inputs
document.getElementById("title").value = "";
document.getElementById("author").value = "";
document.getElementById("pages").value = "";
document.getElementById("check").checked = false;

render();
}

function render() {
const table = document.getElementById("display").getElementsByTagName("tbody")[0];
table.innerHTML = ""; // Clear table body

myLibrary.forEach((book, index) => {
let row = table.insertRow();

row.insertCell(0).textContent = book.title;
row.insertCell(1).textContent = book.author;
row.insertCell(2).textContent = book.pages;

// Read toggle button
let readCell = row.insertCell(3);
let readBtn = document.createElement("button");
readBtn.className = "btn btn-sm " + (book.check ? "btn-success" : "btn-secondary");
readBtn.textContent = book.check ? "Yes" : "No";
readBtn.onclick = () => {
myLibrary[index].check = !myLibrary[index].check;
render();
};
readCell.appendChild(readBtn);

// Delete button
let deleteCell = row.insertCell(4);
let delBtn = document.createElement("button");
delBtn.className = "btn btn-sm btn-danger";
delBtn.textContent = "Delete";
delBtn.onclick = () => {
if (confirm(`Delete "${book.title}"?`)) {
myLibrary.splice(index, 1);
render();
}
};
deleteCell.appendChild(delBtn);
});
}
</script>
</body>
</html>
4 changes: 1 addition & 3 deletions debugging/book-library/index.html
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why yo deleted the <script> tag in this file that imports the code from script.js?

You have a working implementation in Book Library.html. You can transfer the HTML code (only HTML code) from that file to this file.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you don't add a proper <script> tag to include your code from script.js, the app won't work properly.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title> </title>
<title>Book Library</title>
<meta
charset="utf-8"
name="viewport"
Expand Down Expand Up @@ -90,7 +90,5 @@ <h1>Library</h1>
</tr>
</tbody>
</table>

<script src="script.js"></script>
</body>
</html>
4 changes: 3 additions & 1 deletion debugging/book-library/script.js
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code in this script has bug and is not working properly. You will need to fix them.

Why don't you transfer your JS code from Book Library.html to this file?

Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<script>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file should only contain JavaScript code.

let myLibrary = [];

window.addEventListener("load", function (e) {
Expand Down Expand Up @@ -54,7 +55,7 @@ function render() {
let table = document.getElementById("display");
let rowsNumber = table.rows.length;
//delete old table
for (let n = rowsNumber - 1; n > 0; n-- {
for (let n = rowsNumber - 1; n > 0; n--) {
table.deleteRow(n);
}
//insert updated row and cells
Expand Down Expand Up @@ -101,3 +102,4 @@ function render() {
});
}
}
</script>