223 lines
6.6 KiB
HTML
223 lines
6.6 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<title>Library</title>
|
||
<script type="text/javascript" src="js/jquery.js"></script>
|
||
<script type="text/javascript" src="js/mustache.js"></script>
|
||
<link
|
||
rel="stylesheet"
|
||
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
|
||
/>
|
||
<link rel="stylesheet" href="css/reset.css" />
|
||
<link rel="stylesheet" href="css/style.css" />
|
||
<link rel="icon" href="favicon.ico" type="image/x-icon" />
|
||
<link
|
||
href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700"
|
||
rel="stylesheet"
|
||
/>
|
||
<script type="text/javascript">
|
||
var sortState = {
|
||
sortBy: "sortAuthor",
|
||
sortOrder: "asc",
|
||
};
|
||
|
||
function init() {
|
||
fetch("/api")
|
||
.then((response) => response.json())
|
||
.then(showInfo);
|
||
}
|
||
|
||
function showInfo(books) {
|
||
books.forEach((book) => {
|
||
book.sortTitle = titleCleaner(book.title);
|
||
if (!book["isbn-10"] && book["isbn-13"]) {
|
||
book["isbn-10"] = ISBNfromEAN(book["isbn-13"]);
|
||
}
|
||
if (!book.coverurl && book["isbn-10"]) {
|
||
book.coverurl = amazonCoverUrl(book["isbn-10"]);
|
||
}
|
||
});
|
||
|
||
$("#search")
|
||
.unbind("input")
|
||
.on("input", (e) => {
|
||
search(books, e.target.value);
|
||
});
|
||
|
||
$("#reloadLink")
|
||
.unbind("click")
|
||
.on("click", () => {
|
||
init();
|
||
});
|
||
|
||
renderTable(books);
|
||
}
|
||
|
||
function search(books, searchBy) {
|
||
searchBy = searchCleaner(searchBy);
|
||
if (searchBy !== "") {
|
||
books = books.filter(
|
||
({ title, authors, genre, publisher, series, year }) => {
|
||
return Object.values({
|
||
title,
|
||
authors: authors.join(" "),
|
||
genre,
|
||
publisher,
|
||
series,
|
||
year,
|
||
}).find((field) => searchCleaner(field).indexOf(searchBy) !== -1);
|
||
}
|
||
);
|
||
}
|
||
renderTable(books);
|
||
}
|
||
|
||
function renderTable(books, sortField) {
|
||
if (sortField) {
|
||
if (sortState.sortBy === sortField && sortState.sortOrder === "asc") {
|
||
sortState.sortOrder = "desc";
|
||
} else {
|
||
sortState.sortOrder = "asc";
|
||
}
|
||
sortState.sortBy = sortField;
|
||
}
|
||
books.sort((one, two) =>
|
||
(one[sortState.sortBy] + one["sortTitle"]).localeCompare(
|
||
two[sortState.sortBy] + two["sortTitle"]
|
||
)
|
||
);
|
||
if (sortState.sortOrder === "desc") {
|
||
books.reverse();
|
||
}
|
||
books.forEach((e, i) => (e.rowNumber = i)); // re-key for new sort
|
||
|
||
$("#books").html(Mustache.render($("#Table").html(), { books }));
|
||
$("#books tbody tr")
|
||
.not(":first") // ignore the headers
|
||
.on("click", function () {
|
||
updateCurrentBook(books[$(this)[0].id]);
|
||
});
|
||
$("#books tbody tr th[data-sort-by]").on("click", function () {
|
||
renderTable(books, $(this).data("sortBy")); // only add callback when there's a sortBy attribute
|
||
});
|
||
$("#books tbody tr th[data-sort-by=" + sortState.sortBy + "]").addClass(
|
||
sortState.sortOrder
|
||
);
|
||
}
|
||
|
||
function updateCurrentBook(book) {
|
||
$("#current").html(Mustache.render($("#View").html(), { book }));
|
||
}
|
||
|
||
function titleCleaner(title) {
|
||
return title
|
||
.replace('"', "")
|
||
.replace(":", "")
|
||
.replace(/^(An?|The)\s/i, "");
|
||
}
|
||
|
||
function searchCleaner(str) {
|
||
return str
|
||
.toLowerCase()
|
||
.replace('"', "")
|
||
.replace(":", "")
|
||
.replace("'", "")
|
||
.replace(" ", "");
|
||
}
|
||
|
||
function amazonCoverUrl(ISBN) {
|
||
return `https://images-na.ssl-images-amazon.com/images/P/${ISBN}.01.LZZ.jpg`;
|
||
}
|
||
|
||
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);
|
||
}
|
||
|
||
window.addEventListener("DOMContentLoaded", init);
|
||
</script>
|
||
</head>
|
||
<body>
|
||
<div class="wrapper">
|
||
<div id="header">
|
||
<h1>Library</h1>
|
||
<a target="_blank" href="https://git.yetaga.in/alazyreader/library"
|
||
>git</a
|
||
>
|
||
<a id="reloadLink" href="#">reload</a>
|
||
<div id="searchBox">
|
||
<input
|
||
id="search"
|
||
type="text"
|
||
name="search"
|
||
placeholder="Search..."
|
||
/>
|
||
</div>
|
||
</div>
|
||
<div id="current">No Book Selected</div>
|
||
<div id="books"></div>
|
||
<!-- Table goes here -->
|
||
</div>
|
||
|
||
<script id="Table" type="text/html">
|
||
<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}}
|
||
<tr class="tRow {{#onLoan}}onLoan{{/onLoan}}" id="{{rowNumber}}">
|
||
<td class="title">
|
||
{{title}} {{#signed}}<span
|
||
class="signed"
|
||
title="Signed by the author"
|
||
>✒</span
|
||
>︎{{/signed}}
|
||
</td>
|
||
<td class="author">{{authors}}</td>
|
||
<td class="publisher">{{publisher}}</td>
|
||
<td class="year">{{year}}</td>
|
||
<td class="isbn">{{isbn-13}}</td>
|
||
</tr>
|
||
{{/books}}
|
||
</table>
|
||
</script>
|
||
|
||
<script id="View" type="text/html">
|
||
{{#book}}
|
||
{{#coverurl}}
|
||
<img src="{{coverurl}}"/>
|
||
{{/coverurl}}
|
||
<h1 {{#onLoan}}class="onLoan" {{/onLoan}}>{{title}}</h1>
|
||
<h2>{{authors}}</h2>
|
||
<span>{{isbn-13}}</span><br/>
|
||
<span>{{publisher}}, {{year}}</span><br/>
|
||
{{#series}}
|
||
<span>{{series}}{{#volume}}, Volume {{volume}}</span>{{/volume}}<br/>
|
||
{{/series}}
|
||
{{#signed}}
|
||
<span>Signed by the author ✒</span><br/>
|
||
{{/signed}}
|
||
<span>{{format}}</span>
|
||
{{#onLoan}}
|
||
<h2 class="onLoan">On loan to {{onLoan}}</h2>
|
||
{{/onLoan}}
|
||
<div class="description">
|
||
<p>{{description}}</p>
|
||
{{#notes}}
|
||
<span>Notes:</span>
|
||
<p>{{notes}}</p>
|
||
{{/notes}}
|
||
</div>
|
||
{{/book}}
|
||
</script>
|
||
</body>
|
||
</html>
|