summaryrefslogtreecommitdiff
path: root/js/offline.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/offline.js')
-rw-r--r--js/offline.js63
1 files changed, 52 insertions, 11 deletions
diff --git a/js/offline.js b/js/offline.js
index d9bed0b..d1c49d6 100644
--- a/js/offline.js
+++ b/js/offline.js
@@ -1,23 +1,64 @@
-var CACHE_NAME = "epube-test";
-
function populate_list() {
var books = $("#books_container");
+ books.html("");
- window.caches.open(CACHE_NAME).then(function(cache) {
- cache.keys().then(function(items) {
+ localforage.iterate(function(value, key, i) {
+ if (key.match(/epube-book\.\d{1,}$/)) {
- $.each(items, function(i, req) {
+ Promise.all([
+ localforage.getItem(key),
+ localforage.getItem(key + ".cover")
+ ]).then(function(results) {
- if (req.url.match(/\.epub/)) {
- console.log(req.url);
+ var info = results[0];
+ if (info) {
+ var cover = false;
- }
+ if (results && results[1]) {
+ cover = URL.createObjectURL(results[1]);
+ }
- });
+ var cell = "<div class='col-xs-6 col-sm-3 col-md-2 index_cell'>";
- });
- });
+ cell += "<div class=\"thumb\">";
+ cell += "<a href=\"read.html?id="+info.epub_id+"&b="+info.id+"\"><img data-src=\"holder.js/120x180\"></a>";
+
+ cell += "<div class=\"caption\">";
+ cell += "<div><a href=\"read.html?id="+info.epub_id+"&b="+info.id+"\">" + info.title + "</a></div>";
+ cell += "<div>" + info.author_sort + "</div>";
+
+ if (info.series_name) {
+ cell += "<div>" + info.series_name + " [" + info.series_index + "]</div>";
+ }
+
+ cell += "</div>";
+
+ cell += "<div class=\"dropdown\" style=\"white-space : nowrap\">";
+ cell += "<a href=\"#\" data-toggle=\"dropdown\" role=\"button\">" +
+ "More..." + "<span class=\"caret\"></span></a>";
+
+ cell += "<ul class=\"dropdown-menu\">";
+ cell += "<li><a href=\"#\" data-book-id=\""+info.id+"\" onclick=\"offline_remove(this)\">Remove download</a></li>";
+ cell += "</ul>";
+ cell += "</div>";
+
+ cell += "</div>";
+ cell += "</div>";
+
+ var cell = $(cell);
+
+ if (cover) {
+ cell.find("img").attr("src", cover);
+ }
+
+ books.append(cell);
+
+ Holder.run();
+ }
+ });
+ }
+ });
}