2021-11-01 00:00:04 +00:00
|
|
|
var sortState = {
|
|
|
|
sortBy: "sortAuthor",
|
|
|
|
sortOrder: "asc",
|
|
|
|
};
|
|
|
|
|
2024-01-06 21:38:13 +00:00
|
|
|
var admin = false;
|
|
|
|
|
|
|
|
var books;
|
|
|
|
|
|
|
|
function checkAdminMode() {
|
|
|
|
fetch("/api/mode")
|
|
|
|
.then((response) => response.json())
|
|
|
|
.then((resp) => (admin = resp.Admin))
|
|
|
|
.then(() => {
|
|
|
|
if (admin) {
|
|
|
|
var element = document.getElementById("addBook");
|
|
|
|
element.addEventListener("click", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
renderAddBookView();
|
|
|
|
});
|
|
|
|
element.classList.remove("hidden");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function loadBookList() {
|
2022-03-13 22:04:09 +00:00
|
|
|
fetch("/api/books")
|
2021-11-01 00:00:04 +00:00
|
|
|
.then((response) => response.json())
|
2024-01-06 21:38:13 +00:00
|
|
|
.then((list) => {
|
2021-11-01 00:00:04 +00:00
|
|
|
// prepare response
|
2024-01-06 21:38:13 +00:00
|
|
|
list.forEach(apiResponseParsing);
|
|
|
|
books = list;
|
|
|
|
document.getElementById("search").addEventListener("input", rerender);
|
|
|
|
document.getElementById("childrens").addEventListener("change", rerender);
|
|
|
|
rerender();
|
2021-11-01 00:00:04 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-01-06 21:38:13 +00:00
|
|
|
function rerender() {
|
|
|
|
var searchValue = document.getElementById("search").value;
|
|
|
|
var childrens = document.getElementById("childrens").checked;
|
|
|
|
renderTable(search(searchValue, childrens));
|
|
|
|
}
|
|
|
|
|
|
|
|
function init() {
|
|
|
|
checkAdminMode();
|
|
|
|
loadBookList();
|
|
|
|
}
|
|
|
|
|
|
|
|
function renderAddBookView() {
|
|
|
|
document.getElementById("current").innerHTML = AddBookTemplate();
|
|
|
|
document.getElementById("lookup").addEventListener("click", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
if (document.getElementById("isbn-13").value.length === 13) {
|
|
|
|
getPossibleBooks(document.getElementById("isbn-13").value);
|
2021-11-01 00:00:04 +00:00
|
|
|
} else {
|
2024-01-06 21:38:13 +00:00
|
|
|
console.log("no isbn");
|
2021-11-01 00:00:04 +00:00
|
|
|
}
|
2024-01-06 21:38:13 +00:00
|
|
|
});
|
|
|
|
document.getElementById("save").addEventListener("click", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
saveBook({
|
|
|
|
title: document.getElementById("title").value,
|
|
|
|
authors: document.getElementById("authors").value.split(";"),
|
|
|
|
sortAuthor: document.getElementById("sortAuthor").value,
|
|
|
|
"isbn-10": document.getElementById("isbn-10").value,
|
|
|
|
"isbn-13": document.getElementById("isbn-13").value,
|
|
|
|
publisher: document.getElementById("publisher").value,
|
|
|
|
format: document.getElementById("format").value,
|
|
|
|
genre: document.getElementById("genre").value,
|
|
|
|
series: document.getElementById("series").value,
|
|
|
|
volume: document.getElementById("volume").value,
|
|
|
|
year: document.getElementById("year").value,
|
|
|
|
coverURL: document.getElementById("coverURL").value,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getPossibleBooks(isbn) {
|
|
|
|
fetch("/api/query", {
|
|
|
|
method: "POST",
|
|
|
|
headers: { "Content-Type": "application/json" },
|
|
|
|
body: JSON.stringify({ "isbn-13": isbn }),
|
|
|
|
})
|
|
|
|
.then((response) => response.json())
|
|
|
|
.then((json) => {
|
|
|
|
Object.keys(json).forEach((key) => {
|
|
|
|
var elem = document.getElementById(key);
|
|
|
|
if (elem !== null) {
|
|
|
|
elem.value = json[key];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function saveBook(book) {
|
|
|
|
fetch("/api/books", {
|
|
|
|
method: "POST",
|
|
|
|
headers: { "Content-Type": "application/json" },
|
|
|
|
body: JSON.stringify(book),
|
|
|
|
}).then(() => {
|
|
|
|
clearAddBookForm();
|
|
|
|
loadBookList();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function renderTable(bookList, sortField) {
|
|
|
|
if (sortField) {
|
|
|
|
sortState.sortOrder =
|
|
|
|
sortState.sortBy === sortField && sortState.sortOrder === "asc"
|
|
|
|
? "desc"
|
|
|
|
: "asc";
|
2021-11-01 00:00:04 +00:00
|
|
|
sortState.sortBy = sortField;
|
|
|
|
}
|
2024-01-06 21:38:13 +00:00
|
|
|
bookList.sort((one, two) =>
|
2021-11-01 00:00:04 +00:00
|
|
|
(one[sortState.sortBy] + one["sortTitle"]).localeCompare(
|
|
|
|
two[sortState.sortBy] + two["sortTitle"]
|
|
|
|
)
|
|
|
|
);
|
|
|
|
if (sortState.sortOrder === "desc") {
|
2024-01-06 21:38:13 +00:00
|
|
|
bookList.reverse();
|
2021-11-01 00:00:04 +00:00
|
|
|
}
|
2024-01-06 21:38:13 +00:00
|
|
|
bookList.forEach((e, i) => (e.rowNumber = i)); // re-key
|
2021-11-01 00:00:04 +00:00
|
|
|
|
|
|
|
// rendering
|
|
|
|
var bookElement = document.getElementById("books");
|
2024-01-06 21:38:13 +00:00
|
|
|
bookElement.innerHTML = TableTemplate(bookList);
|
2021-11-01 00:00:04 +00:00
|
|
|
|
2024-01-06 21:38:13 +00:00
|
|
|
document.getElementById("bookCount").innerHTML = `${bookList.length} books`;
|
2023-02-05 01:51:40 +00:00
|
|
|
|
2021-11-01 00:00:04 +00:00
|
|
|
// add listeners for selecting book to view
|
|
|
|
Array.from(bookElement.querySelectorAll("tbody tr"))
|
|
|
|
.slice(1) // remove header from Array
|
|
|
|
.forEach((row) => {
|
|
|
|
row.addEventListener("click", (e) => {
|
|
|
|
// add listener to swap current book
|
|
|
|
document.getElementById("current").innerHTML = BookTemplate(
|
2024-01-06 21:38:13 +00:00
|
|
|
bookList[e.currentTarget.id]
|
2021-11-01 00:00:04 +00:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
// add sorting callbacks
|
|
|
|
Array.from(bookElement.querySelectorAll("tbody tr th[data-sort-by]")).forEach(
|
|
|
|
(row) => {
|
|
|
|
row.addEventListener("click", function (e) {
|
2024-01-06 21:38:13 +00:00
|
|
|
// only add callback when there's a sortBy attribute
|
|
|
|
renderTable(bookList, e.target.dataset.sortBy);
|
2021-11-01 00:00:04 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|
|
|
|
// mark currently active column
|
|
|
|
bookElement
|
|
|
|
.querySelector("tbody tr th[data-sort-by=" + sortState.sortBy + "]")
|
|
|
|
.classList.add(sortState.sortOrder);
|
|
|
|
}
|
|
|
|
|
2021-11-01 00:07:41 +00:00
|
|
|
function apiResponseParsing(book) {
|
|
|
|
book.sortTitle = titleCleaner(book.title);
|
|
|
|
if (!book["isbn-10"] && book["isbn-13"]) {
|
|
|
|
book["isbn-10"] = ISBNfromEAN(book["isbn-13"]);
|
|
|
|
}
|
2022-01-15 20:46:59 +00:00
|
|
|
if (!book.coverURL && book["isbn-10"]) {
|
|
|
|
book.coverURL =
|
2021-11-01 00:07:41 +00:00
|
|
|
`https://images-na.ssl-images-amazon.com/images/P/` +
|
|
|
|
book["isbn-10"] +
|
|
|
|
`.01.LZZ.jpg`;
|
|
|
|
}
|
|
|
|
return book;
|
|
|
|
}
|
|
|
|
|
2024-01-06 21:38:13 +00:00
|
|
|
function search(searchBy, includeChildrensBooks) {
|
2021-11-01 00:00:04 +00:00
|
|
|
searchBy = searchCleaner(searchBy);
|
2024-01-06 21:38:13 +00:00
|
|
|
return books.filter(
|
2023-10-14 21:08:55 +00:00
|
|
|
({ title, authors, genre, publisher, series, year, childrens }) => {
|
|
|
|
var inSearch = true;
|
|
|
|
if (searchBy !== "") {
|
|
|
|
inSearch = Object.values({
|
2021-11-01 00:00:04 +00:00
|
|
|
title,
|
|
|
|
authors: authors.join(" "),
|
|
|
|
genre,
|
|
|
|
publisher,
|
|
|
|
series,
|
|
|
|
year,
|
|
|
|
}).find((field) => searchCleaner(field).indexOf(searchBy) !== -1);
|
|
|
|
}
|
2023-10-14 21:08:55 +00:00
|
|
|
if (!includeChildrensBooks) {
|
|
|
|
return inSearch && !childrens;
|
|
|
|
}
|
|
|
|
return inSearch;
|
|
|
|
}
|
|
|
|
);
|
2021-11-01 00:00:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function titleCleaner(title) {
|
|
|
|
return title
|
|
|
|
.replace('"', "")
|
|
|
|
.replace(":", "")
|
|
|
|
.replace(/^(An?|The)\s/i, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
function searchCleaner(str) {
|
|
|
|
return str
|
|
|
|
.toLowerCase()
|
|
|
|
.replaceAll('"', "")
|
|
|
|
.replaceAll(":", "")
|
|
|
|
.replaceAll("'", "")
|
|
|
|
.replaceAll(" ", "");
|
|
|
|
}
|
|
|
|
|
|
|
|
function ISBNfromEAN(EAN) {
|
|
|
|
ISBN = EAN.slice(3, 12);
|
|
|
|
var checkdigit =
|
|
|
|
(11 - (ISBN.split("").reduce((s, n, k) => s + n * (10 - k), 0) % 11)) % 11;
|
|
|
|
return ISBN + (checkdigit === 10 ? "X" : checkdigit);
|
|
|
|
}
|
|
|
|
|
2024-01-06 21:38:13 +00:00
|
|
|
function clearAddBookForm() {
|
|
|
|
document
|
|
|
|
.getElementById("newBookForm")
|
|
|
|
.childNodes.forEach((node) =>
|
|
|
|
node.nodeName === "LABEL" ? (node.lastChild.value = "") : null
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-11-01 00:00:04 +00:00
|
|
|
function BookTemplate({
|
|
|
|
"isbn-13": isbn13,
|
2023-10-14 19:37:36 +00:00
|
|
|
"isbn-10": isbn10,
|
2021-11-01 00:00:04 +00:00
|
|
|
authors,
|
2022-01-15 20:46:59 +00:00
|
|
|
coverURL,
|
2021-11-01 00:00:04 +00:00
|
|
|
format,
|
|
|
|
publisher,
|
|
|
|
series,
|
|
|
|
signed,
|
|
|
|
title,
|
|
|
|
volume,
|
|
|
|
year,
|
|
|
|
}) {
|
2023-02-05 02:30:18 +00:00
|
|
|
return `<img ${coverURL ? `src="${coverURL}"` : ``}/>
|
|
|
|
<div class="bookDetails">
|
|
|
|
<h1>${title}</h1>
|
|
|
|
<h2>${authors}</h2>
|
2023-10-14 20:42:46 +00:00
|
|
|
<span>${[isbn10, isbn13].filter((v) => v != "").join(" / ")}</span><br/>
|
2023-02-05 02:30:18 +00:00
|
|
|
<span>${publisher}, ${year}</span><br/>
|
|
|
|
${
|
|
|
|
series
|
|
|
|
? `<span>${series}${volume ? `, Volume ${volume}` : ""}</span><br/>`
|
|
|
|
: ""
|
|
|
|
}
|
|
|
|
${signed ? "<span>Signed by the author ✒</span><br/>" : ""}
|
|
|
|
<span>${format}</span>
|
2024-01-06 21:38:13 +00:00
|
|
|
${admin ? `<a href="#">Edit Book</a>` : ""}
|
2021-11-01 00:00:04 +00:00
|
|
|
</div>`;
|
|
|
|
}
|
|
|
|
|
|
|
|
function TableRowTemplate({
|
|
|
|
"isbn-13": isbn13,
|
2023-10-14 19:37:36 +00:00
|
|
|
"isbn-10": isbn10,
|
2021-11-01 00:00:04 +00:00
|
|
|
authors,
|
|
|
|
publisher,
|
|
|
|
rowNumber,
|
|
|
|
signed,
|
|
|
|
title,
|
|
|
|
year,
|
|
|
|
}) {
|
2022-05-07 19:46:56 +00:00
|
|
|
return `<tr class="tRow" id="${rowNumber}">
|
2021-11-01 00:00:04 +00:00
|
|
|
<td class="title">
|
|
|
|
${title} ${
|
2023-02-05 02:30:18 +00:00
|
|
|
signed ? '<span class="signed" title="Signed by the author" >✒</span>' : ""
|
2021-11-01 00:00:04 +00:00
|
|
|
}
|
|
|
|
</td>
|
|
|
|
<td class="author">${authors}</td>
|
|
|
|
<td class="publisher">${publisher}</td>
|
|
|
|
<td class="year">${year}</td>
|
2023-10-14 19:37:36 +00:00
|
|
|
<td class="isbn">${isbn13 ? isbn13 : isbn10}</td>
|
2021-11-01 00:00:04 +00:00
|
|
|
</tr>`;
|
|
|
|
}
|
|
|
|
|
|
|
|
function TableTemplate(books) {
|
|
|
|
return `<table class="bookTable">
|
|
|
|
<tr>
|
|
|
|
<th data-sort-by="sortTitle" class="tHeader title">Title</th>
|
|
|
|
<th data-sort-by="sortAuthor" class="tHeader author">Author</th>
|
|
|
|
<th data-sort-by="publisher" class="tHeader publisher">Publisher</th>
|
|
|
|
<th data-sort-by="year" class="tHeader year">Year</th>
|
|
|
|
<th class="tHeader isbn">ISBN</th>
|
|
|
|
</tr>${books.reduce((acc, book) => {
|
|
|
|
return acc.concat(TableRowTemplate(book));
|
|
|
|
}, "")} </table>`;
|
|
|
|
}
|
2024-01-06 21:38:13 +00:00
|
|
|
|
|
|
|
function AddBookTemplate() {
|
|
|
|
return `<div class="addBookView">
|
|
|
|
<div id="newBookForm">
|
|
|
|
${[
|
|
|
|
{ name: "Title", id: "title", type: "text" },
|
|
|
|
{ name: "Authors", id: "authors", type: "text" },
|
|
|
|
{ name: "SortAuthor", id: "sortAuthor", type: "text" },
|
|
|
|
{ name: "ISBN10", id: "isbn-10", type: "text" },
|
|
|
|
{ name: "ISBN13", id: "isbn-13", type: "text" },
|
|
|
|
{ name: "Publisher", id: "publisher", type: "text" },
|
|
|
|
{ name: "Format", id: "format", type: "text" },
|
|
|
|
{ name: "Genre", id: "genre", type: "text" },
|
|
|
|
{ name: "Series", id: "series", type: "text" },
|
|
|
|
{ name: "Volume", id: "volume", type: "text" },
|
|
|
|
{ name: "Year", id: "year", type: "text" },
|
|
|
|
{ name: "CoverURL", id: "coverURL", type: "text" },
|
|
|
|
{ name: "Signed", id: "signed", type: "checkbox" },
|
|
|
|
{ name: "Childrens", id: "childrens", type: "checkbox" },
|
|
|
|
].reduce((acc, field) => {
|
|
|
|
return acc.concat(
|
|
|
|
`<label>${field.name} <input
|
|
|
|
type="${field.type}"
|
|
|
|
name="${field.name.toLowerCase()}"
|
|
|
|
id="${field.id}"
|
|
|
|
/></label><br/>`
|
|
|
|
);
|
|
|
|
}, "")}
|
|
|
|
<input id="lookup" type="submit" value="look up">
|
|
|
|
<input id="save" type="submit" value="save">
|
|
|
|
</div>
|
|
|
|
</div>`;
|
|
|
|
}
|