library/index.html

189 lines
6.6 KiB
HTML
Raw Normal View History

2017-05-09 01:56:35 +00:00
<!DOCTYPE html>
<html>
<head>
2017-05-09 01:58:16 +00:00
<title>Library</title>
2017-05-09 01:56:35 +00:00
<script type="text/javascript" src='js/jquery.js'></script>
<script type="text/javascript" src='js/mustache.js'></script>
<script type="text/javascript" src='js/lodash.min.js'></script>
2017-05-09 01:56:35 +00:00
<script src='https://cdnjs.cloudflare.com/ajax/libs/tabletop.js/1.5.1/tabletop.min.js'></script>
2017-05-09 01:58:16 +00:00
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"></link>
<link rel="stylesheet" href="css/reset.css"></link>
<link rel="stylesheet" href="css/style.css"></link>
2019-03-31 21:21:38 +00:00
<link rel="icon" href="/favicon.ico" type="image/x-icon">
2017-05-09 02:58:29 +00:00
<link href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700" rel="stylesheet">
2017-05-09 01:56:35 +00:00
<script type='text/javascript'>
var publicSpreadsheetUrl = 'https://docs.google.com/spreadsheets/d/1w5Dc57wV0_rrKFsG7KM-qdPWEpqYk6lFu3JzAA0cSv0/pubhtml';
var sortState = {
sortBy: 'authorLast',
sortOrder: 'asc'
};
2017-05-09 01:56:35 +00:00
2017-05-19 01:46:30 +00:00
function init() {
Tabletop.init({
key: publicSpreadsheetUrl,
callback: showInfo,
simpleSheet: true
});
}
2017-05-19 01:42:54 +00:00
function showInfo(data, tabletop) {
2017-05-14 01:36:32 +00:00
$("#reloadLink").unbind('click');
$("#reloadLink").on("click", function() { init(); });
2017-05-19 01:42:54 +00:00
$("#search").unbind('input');
$("#search").on("input", function(e) { search(data, e.target.value); });
2017-05-09 01:56:35 +00:00
$.each(data, function(key, value) {
value.sortTitle = titleCleaner(value.title);
if (!value['isbn-10'] && value['isbn-13']) {
value['isbn-10'] = generateISBNfromEAN(value['isbn-13']);
}
if (!value.coverurl && value['isbn-10']) {
value.coverurl = generateAmazonCoverUrl(value['isbn-10']);
}
});
2017-05-19 01:49:10 +00:00
renderTable(data);
2017-05-09 01:56:35 +00:00
}
2017-05-19 01:42:54 +00:00
function search(data, searchString) {
2018-12-29 15:49:40 +00:00
searchBy = searchString.toLowerCase().replace('"', '').replace(':', '').replace("'", '').replace(" ", '');
2017-05-19 01:42:54 +00:00
relevantFields = ['title', 'author', 'genre', 'publisher', 'series', 'year'];
if (!searchString) {
2017-05-19 01:49:10 +00:00
renderTable(data);
2017-05-19 01:42:54 +00:00
return false;
}
renderTable(_.filter(data, function(book) {
return _.find(_.pick(book, relevantFields), function(field) {
2018-12-29 15:49:40 +00:00
return field.toLowerCase().replace('"', '').replace(':', '').replace("'", '').replace(" ", '').indexOf(searchBy) !== -1;
2017-05-19 01:42:54 +00:00
});
}));
}
2017-05-09 01:56:35 +00:00
function renderTable(data, sortField) {
if (sortField) {
if (sortState.sortBy === sortField) {
sortState.sortOrder = (sortState.sortOrder === 'asc') ? 'desc' : 'asc'; // swap if we're looping
} else {
sortState.sortOrder = 'asc'; // reset if we've changed columns
}
sortState.sortBy = sortField;
}
data = _.orderBy(data, function(o) {
return o[sortState.sortBy].toLowerCase() + o["sortTitle"].toLowerCase();
}, sortState.sortOrder);
2017-05-09 01:56:35 +00:00
$.each(data, function(key, value) {
value.rowNumber = key; // re-key for new sort
});
var template = $('#Table').html();
var rendered = Mustache.render(template, {books: data});
$('#books').html(rendered);
$("#books tbody tr").not(':first').on("click", function() {
updateCurrentBook(data[$(this)[0].id]); // ignore the headers
});
$("#books tbody tr th[data-sort-by]").on("click", function() {
renderTable(data, $(this).data('sortBy')); // only add callback when there's a sortBy attribute
});
$("#books tbody tr th[data-sort-by=" + sortState.sortBy + ']').addClass(sortState.sortOrder);
2017-05-09 01:56:35 +00:00
}
function updateCurrentBook(book) {
var template = $('#View').html();
var rendered = Mustache.render(template, {book: book});
$('#current').html(rendered);
}
2017-05-17 18:47:35 +00:00
function titleCleaner(title) {
return title
.replace('"', '')
.replace(':', '')
.replace(/^(An?|The)\s/i, '');
}
function generateAmazonCoverUrl(ISBN) {
return "https://images-na.ssl-images-amazon.com/images/P/" + ISBN + ".01.LZZ.jpg"
}
function generateISBNfromEAN(EAN) {
ISBN = EAN.slice(3,12);
var checkdigit = ((11 - (_.reduce(ISBN.split(''), function(sum, num, key) {
return sum + (num * (10 - key));
}, 0) % 11)) % 11);
return ISBN + (checkdigit == 10 ? 'X' : checkdigit);
}
2017-05-19 01:46:30 +00:00
window.addEventListener('DOMContentLoaded', init);
2017-05-09 01:56:35 +00:00
</script>
</head>
<body>
<div class="wrapper">
<div id="header">
<h1>Library</h1>
<a target="_blank" href="https://docs.google.com/spreadsheets/d/1w5Dc57wV0_rrKFsG7KM-qdPWEpqYk6lFu3JzAA0cSv0/edit">spreadsheet</a>
<a target="_blank" href="https://github.com/deltamualpha/my-library">github</a>
2017-05-14 01:36:32 +00:00
<a id="reloadLink" href="#">reload</a>
2017-05-19 01:42:54 +00:00
<div id="searchBox">
<input id="search" type="text" name="search" placeholder="Search..."/>
</div>
2017-05-09 01:56:35 +00:00
</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>
2017-05-17 18:47:35 +00:00
<th data-sort-by="sortTitle" class="tHeader title">Title</th>
2017-05-09 01:56:35 +00:00
<th data-sort-by="authorLast" 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}}
2017-07-07 16:05:47 +00:00
{{#signed}}<span class="signed" title="Signed by the author"></span>{{/signed}}</td>
2017-05-09 01:56:35 +00:00
<td class="author">{{author}}</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}}"/>
2017-05-09 01:56:35 +00:00
{{/coverurl}}
<h1 {{#onLoan}}class="onLoan" {{/onLoan}}>{{title}}</h1>
2017-05-09 01:56:35 +00:00
<h2>{{author}}</h2>
<span>{{isbn-13}}</span><br/>
2017-05-09 02:17:59 +00:00
<span>{{publisher}}, {{year}}</span><br/>
2017-05-14 01:36:32 +00:00
{{#series}}
2018-02-06 23:34:32 +00:00
<span>{{series}}{{#volume}}, Volume {{volume}}</span>{{/volume}}<br/>
2017-05-14 01:36:32 +00:00
{{/series}}
2017-05-14 20:10:46 +00:00
{{#signed}}
<span>Signed by the author ✒</span><br/>
2017-05-14 20:10:46 +00:00
{{/signed}}
2017-05-09 02:17:59 +00:00
<span>{{format}}</span>
{{#onLoan}}
<h2 class="onLoan">On loan to {{onLoan}}</h2>
{{/onLoan}}
2017-05-09 01:56:35 +00:00
<div class="description">
<p>{{description}}</p>
{{#notes}}
<span>Notes:</span>
2017-05-14 01:36:32 +00:00
<p>{{notes}}</p>
2017-05-09 01:56:35 +00:00
{{/notes}}
</div>
{{/book}}
</script>
</body>
</html>