summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-03-15 13:54:02 +0300
committerAndrew Dolgov <[email protected]>2019-03-15 13:54:02 +0300
commit4f1c7a977ba958b6def28b2ca42bcaef83286e4f (patch)
treeb8b5bc67ae31963170ab8224bf0a3bbc4e278d28 /index.php
parent0d01e871012b85936a9a5d64082dcf551499e2b0 (diff)
code/layout cleanup
Diffstat (limited to 'index.php')
-rw-r--r--index.php228
1 files changed, 101 insertions, 127 deletions
diff --git a/index.php b/index.php
index f6541a8..49eb9f4 100644
--- a/index.php
+++ b/index.php
@@ -60,12 +60,12 @@
<script src="lib/holder.min.js"></script>
<script src="lib/localforage.min.js"></script>
<title>The Epube</title>
- <link type="text/css" rel="stylesheet" media="screen" href="css/index.css" />
+ <link type="text/css" rel="stylesheet" media="screen" href="css/index.css?<?php echo time() ?>" />
<link rel="shortcut icon" type="image/png" href="img/favicon.png" />
<link rel="manifest" href="manifest.json">
<meta name="mobile-web-app-capable" content="yes">
- <script src="js/index.js"></script>
- <script src="js/common.js"></script>
+ <script src="js/index.js?<?php echo time() ?>"></script>
+ <script src="js/common.js?<?php echo time() ?>"></script>
</head>
<body>
@@ -154,6 +154,7 @@
.html("Service worker support missing in browser (are you using plain HTTP?).");
}
+ show_covers();
mark_offline_books();
cache_refresh();
@@ -230,14 +231,19 @@
while ($line = $sth->fetch()) {
++$rows;
- $cover_filename = BOOKS_DIR . "/" . $line["path"] . "/" . "cover.jpg";
+ if ($line['has_cover']) {
+ $cover_filename = BOOKS_DIR . "/" . $line["path"] . "/" . "cover.jpg";
- if (file_exists($cover_filename))
- $cover_mtime = filemtime($cover_filename);
- else
- $cover_mtime = 0;
+ if (file_exists($cover_filename))
+ $cover_mtime = filemtime($cover_filename);
+ else
+ $cover_mtime = 0;
+
+ $cover_link = "backend.php?" . http_build_query(["op" => "cover", "id" => $line["id"], "ts" => $cover_mtime]);
+ } else {
+ $cover_link = "holder.js/120x180";
+ }
- $cover_link = "backend.php?" . http_build_query(["op" => "cover", "id" => $line["id"], "ts" => $cover_mtime]);
$author_link = "?" . http_build_query(["query" => $line["author_sort"]]);
$in_progress = false;
@@ -263,129 +269,103 @@
$read_link = "";
}
- $cover_read = $is_read ? "read" : "";
-
- print "<div class='col-xs-6 col-sm-3 col-md-2 index_cell' id=\"cell-".$line["id"]."\">";
- print "<div class=\"thumb $cover_read\">";
-
- if ($read_link) print "<a href=\"$read_link\">";
-
- if ($line["has_cover"]) {
- print "<img data-book-id='".$line["id"]."' src='$cover_link'>";
- } else {
- print "<img data-book-id='".$line["id"]."' data-src='holder.js/120x180'>";
- }
-
- if ($read_link) print "</a>";
-
- print "<div class='caption'>";
-
+ $cover_class = $is_read ? "read" : "";
$title_class = $in_progress ? "in_progress" : "";
- print "<div title=\"".htmlspecialchars($line["title"])."\" class=\"$title_class\">";
-
- if ($read_link) {
- print "<a href=\"$read_link\">" . $line["title"] . "</a>";
- } else {
- print $line["title"];
- }
-
- print "</div>";
-
if ($line["series_name"]) {
$series_link = "?" . http_build_query(["query" => $line["series_name"]]);
$series_full = $line["series_name"] . " [" . $line["series_index"] . "]";
-
- print "<div><a title=\"".htmlspecialchars($series_full)."\"
- href=\"$series_link\">$series_full</a></div>";
+ } else {
+ $series_link = "";
+ $series_full = "";
}
- print "<div><a title=\"".htmlspecialchars($line["author_sort"])."\"
- href=\"$author_link\">" . $line["author_sort"] . "</a></div>";
-
$data_sth = $db->prepare("SELECT * FROM data WHERE book = ? LIMIT 3");
$data_sth->execute([$line['id']]);
- /*print "<span class=\"label label-default\">
- <span class=\"glyphicon glyphicon-download-alt\">
- </span>";*/
-
- print "</div>";
-
?>
- <div class="dropdown" style="white-space : nowrap">
- <a href="#" data-toggle="dropdown" role="button">
- More...
- <span class="caret"></span>
- </a>
-
- <ul class="dropdown-menu" aria-labelledby="dLabel">
-
- <!-- <?php if ($line["series_name"]) {
- $series_link = "?" . http_build_query(["query" => $line["series_name"]]);
- $series_full = $line["series_name"] . " [" . $line["series_index"] . "]";
-
- print "<li><a title=\"".htmlspecialchars($series_full)."\"
- href=\"$series_link\">$series_full</a></li>";
- }
- ?> -->
-
- <?php
-
- $fav_sth = $ldb->prepare("SELECT id FROM epube_favorites
- WHERE bookid = ? AND owner = ? LIMIT 1");
- $fav_sth->execute([$line['id'], $owner]);
-
- $found_id = false;
-
- while ($fav_line = $fav_sth->fetch()) {
- $found_id = $fav_line["id"];
- }
-
- if ($found_id) {
- $toggle_fav_prompt = "Remove from favorites";
- $fav_attr = "1";
- } else {
- $toggle_fav_prompt = "Add to favorites";
- $fav_attr = "0";
- }
- ?>
-
- <li><a href="#" onclick="return show_summary(this)"
- data-book-id="<?php echo $line["id"] ?>">Summary</a></li>
-
- <li><a href="#" onclick="return toggle_fav(this)"
- data-is-fav="<?php echo $fav_attr ?>"
- class="fav_item" data-book-id="<?php echo $line["id"] ?>">
- <?php echo $toggle_fav_prompt ?></a></li>
-
- <?php if ($line["epub_id"]) { ?>
- <li><a href="#" onclick=""
- data-book-id="<?php echo $line["id"] ?>" class="offline_dropitem"></a></li>
- <li class="divider"></li>
- <?php } ?>
-
- <?php while ($data_line = $data_sth->fetch()) {
- if ($data_line["format"] != "ORIGINAL_EPUB") {
- $label_class = $data_line["format"] == "EPUB" ? "label-success" : "label-primary";
-
- $download_link = "backend.php?op=download&id=" . $data_line["id"];
-
- print "<li><a target=\"_blank\" href=\"$download_link\">Download: <span class=\"label $label_class\">" .
- $data_line["format"] . "</span></a></li>";
- }
- } ?>
- </ul>
- </div>
-
- <?php
-
- print "</div>";
- print "</div>";
-
- }
-
- ?>
+ <div class='col-xs-6 col-sm-3 col-md-2' id="cell-<?php echo $line["id"] ?>">
+ <?php if ($read_link) { ?> <a href="<?php echo $read_link ?>"> <?php } ?>
+
+ <div class="thumbnail <?php echo $cover_class ?>">
+ <img style="display : none" data-book-id="<?php echo $line['id'] ?>" data-cover-link="<?php echo $cover_link ?>">
+ </div>
+
+ <?php if ($read_link) { ?> </a> <?php } ?>
+
+ <div class="caption">
+ <div title="<?php echo htmlspecialchars($line['title']) ?>" class="<?php echo $title_class ?>">
+ <?php if ($read_link) { ?>
+ <a href="<?php echo $read_link ?>"><?php echo $line['title'] ?></a>
+ <?php } else { ?>
+ <?php echo $line['title'] ?>
+ <?php } ?>
+ </div>
+
+ <div><a title="<?php echo htmlspecialchars($series_full) ?>" href="<?php echo $series_link ?>">
+ <?php echo $series_full ?></a></div>
+
+ <div><a title="<?php echo htmlspecialchars($line["author_sort"]) ?>" href="<?php echo $author_link ?>">
+ <?php echo $line["author_sort"] ?></a></div>
+
+ </div>
+
+ <div class="dropdown" style="white-space : nowrap">
+ <a href="#" data-toggle="dropdown" role="button">
+ More...
+ <span class="caret"></span>
+ </a>
+
+ <ul class="dropdown-menu" aria-labelledby="dLabel">
+ <?php
+
+ $fav_sth = $ldb->prepare("SELECT id FROM epube_favorites
+ WHERE bookid = ? AND owner = ? LIMIT 1");
+ $fav_sth->execute([$line['id'], $owner]);
+
+ $found_id = false;
+
+ while ($fav_line = $fav_sth->fetch()) {
+ $found_id = $fav_line["id"];
+ }
+
+ if ($found_id) {
+ $toggle_fav_prompt = "Remove from favorites";
+ $fav_attr = "1";
+ } else {
+ $toggle_fav_prompt = "Add to favorites";
+ $fav_attr = "0";
+ }
+ ?>
+
+ <li><a href="#" onclick="return show_summary(this)"
+ data-book-id="<?php echo $line["id"] ?>">Summary</a></li>
+
+ <li><a href="#" onclick="return toggle_fav(this)"
+ data-is-fav="<?php echo $fav_attr ?>"
+ class="fav_item" data-book-id="<?php echo $line["id"] ?>">
+ <?php echo $toggle_fav_prompt ?></a></li>
+
+ <?php if ($line["epub_id"]) { ?>
+ <li><a href="#" onclick=""
+ data-book-id="<?php echo $line["id"] ?>" class="offline_dropitem"></a></li>
+ <li class="divider"></li>
+ <?php } ?>
+
+ <?php while ($data_line = $data_sth->fetch()) {
+ if ($data_line["format"] != "ORIGINAL_EPUB") {
+ $label_class = $data_line["format"] == "EPUB" ? "label-success" : "label-primary";
+
+ $download_link = "backend.php?op=download&id=" . $data_line["id"];
+
+ print "<li><a target=\"_blank\" href=\"$download_link\">Download: <span class=\"label $label_class\">" .
+ $data_line["format"] . "</span></a></li>";
+ }
+ } ?>
+ </ul>
+ </div>
+ </div>
+ <?php } /* while */ ?>
</div>
@@ -407,12 +387,6 @@
<li class="next disabled"><a href="#">Next&rarr;</a></li>
<?php } ?>
</ul>
-
- <!-- <p class="text-center small">
- <a class="text-muted" href="#" onclick="return cache_refresh(true)">Refresh cache</a>
- </p> -->
-
-
</div>
</body>
</html>