more bookmark feature
tornado fix for tornado <6.2
This commit is contained in:
parent
4bbcec21e4
commit
444ac181f8
|
@ -179,6 +179,8 @@ kthoom.ImageFile = function(file) {
|
||||||
};
|
};
|
||||||
|
|
||||||
function updateDirectionButtons(){
|
function updateDirectionButtons(){
|
||||||
|
$("#right").show();
|
||||||
|
$("#left").show();
|
||||||
if (currentImage == 0 ) {
|
if (currentImage == 0 ) {
|
||||||
if (settings.direction === 0) {
|
if (settings.direction === 0) {
|
||||||
$("#right").show();
|
$("#right").show();
|
||||||
|
@ -205,11 +207,12 @@ function initProgressClick() {
|
||||||
var rate = settings.direction === 0 ? x / $(this).width() : 1 - x / $(this).width();
|
var rate = settings.direction === 0 ? x / $(this).width() : 1 - x / $(this).width();
|
||||||
currentImage = Math.max(1, Math.ceil(rate * totalImages)) - 1;
|
currentImage = Math.max(1, Math.ceil(rate * totalImages)) - 1;
|
||||||
updateDirectionButtons();
|
updateDirectionButtons();
|
||||||
|
setBookmark();
|
||||||
updatePage();
|
updatePage();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadFromArrayBuffer(ab, lastCompletion = 0) {
|
function loadFromArrayBuffer(ab) {
|
||||||
const collator = new Intl.Collator('en', { numeric: true, sensitivity: 'base' });
|
const collator = new Intl.Collator('en', { numeric: true, sensitivity: 'base' });
|
||||||
loadArchiveFormats(['rar', 'zip', 'tar'], function() {
|
loadArchiveFormats(['rar', 'zip', 'tar'], function() {
|
||||||
// Open the file as an archive
|
// Open the file as an archive
|
||||||
|
@ -244,12 +247,8 @@ function loadFromArrayBuffer(ab, lastCompletion = 0) {
|
||||||
|
|
||||||
// display first page if we haven't yet
|
// display first page if we haven't yet
|
||||||
if (imageFiles.length === currentImage + 1) {
|
if (imageFiles.length === currentImage + 1) {
|
||||||
if (settings.direction === 0) {
|
updateDirectionButtons();
|
||||||
$("#right").show();
|
updatePage();
|
||||||
} else {
|
|
||||||
$("#left").show();
|
|
||||||
}
|
|
||||||
updatePage(lastCompletion);
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
totalImages--;
|
totalImages--;
|
||||||
|
@ -264,13 +263,6 @@ function loadFromArrayBuffer(ab, lastCompletion = 0) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function scrollTocToActive() {
|
function scrollTocToActive() {
|
||||||
// Scroll to the thumbnail in the TOC on page change
|
|
||||||
$("#tocView").stop().animate({
|
|
||||||
scrollTop: $("#tocView a.active").position().top
|
|
||||||
}, 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
function updatePage() {
|
|
||||||
$(".page").text((currentImage + 1 ) + "/" + totalImages);
|
$(".page").text((currentImage + 1 ) + "/" + totalImages);
|
||||||
|
|
||||||
// Mark the current page in the TOC
|
// Mark the current page in the TOC
|
||||||
|
@ -282,20 +274,19 @@ function updatePage() {
|
||||||
// Set it to active
|
// Set it to active
|
||||||
.addClass("active");
|
.addClass("active");
|
||||||
|
|
||||||
|
// Scroll to the thumbnail in the TOC on page change
|
||||||
|
$("#tocView").stop().animate({
|
||||||
|
scrollTop: $("#tocView a.active").position().top
|
||||||
|
}, 200);
|
||||||
|
}
|
||||||
|
|
||||||
|
function updatePage() {
|
||||||
scrollTocToActive();
|
scrollTocToActive();
|
||||||
|
scrollCurrentImageIntoView();
|
||||||
updateProgress();
|
updateProgress();
|
||||||
pageDisplayUpdate();
|
pageDisplayUpdate();
|
||||||
setTheme();
|
setTheme();
|
||||||
|
|
||||||
if (imageFiles[currentImage]) {
|
|
||||||
setImage(imageFiles[currentImage].dataURI);
|
|
||||||
} else {
|
|
||||||
setImage("loading");
|
|
||||||
}
|
|
||||||
|
|
||||||
$("body").toggleClass("dark-theme", settings.theme === "dark");
|
|
||||||
$("#mainContent").toggleClass("disabled-scrollbar", settings.scrollbar === 0);
|
|
||||||
|
|
||||||
kthoom.setSettings();
|
kthoom.setSettings();
|
||||||
kthoom.saveSettings();
|
kthoom.saveSettings();
|
||||||
}
|
}
|
||||||
|
@ -370,7 +361,6 @@ function setImage(url, _canvas) {
|
||||||
img.onerror = function() {
|
img.onerror = function() {
|
||||||
canvas.width = innerWidth - 100;
|
canvas.width = innerWidth - 100;
|
||||||
canvas.height = 300;
|
canvas.height = 300;
|
||||||
updateScale(true);
|
|
||||||
x.fillStyle = "black";
|
x.fillStyle = "black";
|
||||||
x.font = "50px sans-serif";
|
x.font = "50px sans-serif";
|
||||||
x.strokeStyle = "black";
|
x.strokeStyle = "black";
|
||||||
|
@ -424,8 +414,6 @@ function setImage(url, _canvas) {
|
||||||
scrollTo(0, 0);
|
scrollTo(0, 0);
|
||||||
x.drawImage(img, 0, 0);
|
x.drawImage(img, 0, 0);
|
||||||
|
|
||||||
updateScale(false);
|
|
||||||
|
|
||||||
canvas.style.display = "";
|
canvas.style.display = "";
|
||||||
$("body").css("overflowY", "");
|
$("body").css("overflowY", "");
|
||||||
x.restore();
|
x.restore();
|
||||||
|
@ -447,6 +435,7 @@ function showLeftPage() {
|
||||||
} else {
|
} else {
|
||||||
showNextPage();
|
showNextPage();
|
||||||
}
|
}
|
||||||
|
setBookmark();
|
||||||
}
|
}
|
||||||
|
|
||||||
function showRightPage() {
|
function showRightPage() {
|
||||||
|
@ -455,6 +444,7 @@ function showRightPage() {
|
||||||
} else {
|
} else {
|
||||||
showPrevPage();
|
showPrevPage();
|
||||||
}
|
}
|
||||||
|
setBookmark();
|
||||||
}
|
}
|
||||||
|
|
||||||
function showPrevPage() {
|
function showPrevPage() {
|
||||||
|
@ -464,9 +454,6 @@ function showPrevPage() {
|
||||||
currentImage++;
|
currentImage++;
|
||||||
} else {
|
} else {
|
||||||
updatePage();
|
updatePage();
|
||||||
if (settings.nextPage === 0) {
|
|
||||||
$("#mainContent").scrollTop(0);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
updateDirectionButtons();
|
updateDirectionButtons();
|
||||||
}
|
}
|
||||||
|
@ -478,9 +465,6 @@ function showNextPage() {
|
||||||
currentImage--;
|
currentImage--;
|
||||||
} else {
|
} else {
|
||||||
updatePage();
|
updatePage();
|
||||||
if (settings.nextPage === 0) {
|
|
||||||
$("#mainContent").scrollTop(0);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
updateDirectionButtons();
|
updateDirectionButtons();
|
||||||
}
|
}
|
||||||
|
@ -497,7 +481,7 @@ function scrollCurrentImageIntoView() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateScale(clear) {
|
function updateScale() {
|
||||||
var canvasArray = $("#mainContent > canvas");
|
var canvasArray = $("#mainContent > canvas");
|
||||||
var maxheight = innerHeight - 50;
|
var maxheight = innerHeight - 50;
|
||||||
|
|
||||||
|
@ -506,7 +490,7 @@ function updateScale(clear) {
|
||||||
canvasArray.css("maxWidth", "");
|
canvasArray.css("maxWidth", "");
|
||||||
canvasArray.css("maxHeight", "");
|
canvasArray.css("maxHeight", "");
|
||||||
|
|
||||||
if(!clear) {
|
if(settings.pageDisplay === 0) {
|
||||||
canvasArray.addClass("hide");
|
canvasArray.addClass("hide");
|
||||||
pageDisplayUpdate();
|
pageDisplayUpdate();
|
||||||
}
|
}
|
||||||
|
@ -667,13 +651,23 @@ function drawCanvas() {
|
||||||
$("#mainContent").append(canvasElement);
|
$("#mainContent").append(canvasElement);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateArrows() {
|
||||||
|
if ($('input[name="direction"]:checked').val() === "0") {
|
||||||
|
$("#prev_page_key").html("←");
|
||||||
|
$("#next_page_key").html("→");
|
||||||
|
} else {
|
||||||
|
$("#prev_page_key").html("→");
|
||||||
|
$("#next_page_key").html("←");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
function init(filename) {
|
function init(filename) {
|
||||||
var request = new XMLHttpRequest();
|
var request = new XMLHttpRequest();
|
||||||
request.open("GET", filename);
|
request.open("GET", filename);
|
||||||
request.responseType = "arraybuffer";
|
request.responseType = "arraybuffer";
|
||||||
request.addEventListener("load", function () {
|
request.addEventListener("load", function () {
|
||||||
if (request.status >= 200 && request.status < 300) {
|
if (request.status >= 200 && request.status < 300) {
|
||||||
loadFromArrayBuffer(request.response, currentImage);
|
loadFromArrayBuffer(request.response);
|
||||||
} else {
|
} else {
|
||||||
console.warn(request.statusText, request.responseText);
|
console.warn(request.statusText, request.responseText);
|
||||||
}
|
}
|
||||||
|
@ -728,7 +722,7 @@ function init(filename) {
|
||||||
}
|
}
|
||||||
|
|
||||||
updatePage();
|
updatePage();
|
||||||
updateScale(false);
|
updateScale();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Close modal
|
// Close modal
|
||||||
|
@ -741,9 +735,6 @@ function init(filename) {
|
||||||
$("#thumbnails").on("click", "a", function () {
|
$("#thumbnails").on("click", "a", function () {
|
||||||
currentImage = $(this).data("page") - 1;
|
currentImage = $(this).data("page") - 1;
|
||||||
updatePage();
|
updatePage();
|
||||||
if (settings.nextPage === 0) {
|
|
||||||
$("#mainContent").scrollTop(0);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Fullscreen mode
|
// Fullscreen mode
|
||||||
|
@ -812,8 +803,12 @@ function init(filename) {
|
||||||
});
|
});
|
||||||
|
|
||||||
// Scrolling up/down will update current image if a new image is into view (for Long Strip Display)
|
// Scrolling up/down will update current image if a new image is into view (for Long Strip Display)
|
||||||
$("#mainContent").scroll(function(){
|
$("#mainContent").scroll(function (event){
|
||||||
var scroll = $("#mainContent").scrollTop();
|
var scroll = $("#mainContent").scrollTop();
|
||||||
|
var viewLength = 0;
|
||||||
|
$(".mainImage").each(function(){
|
||||||
|
viewLength += $(this).height();
|
||||||
|
});
|
||||||
if (settings.pageDisplay === 0) {
|
if (settings.pageDisplay === 0) {
|
||||||
// Don't trigger the scroll for Single Page
|
// Don't trigger the scroll for Single Page
|
||||||
} else if (scroll > prevScrollPosition) {
|
} else if (scroll > prevScrollPosition) {
|
||||||
|
@ -821,6 +816,7 @@ function init(filename) {
|
||||||
if (currentImage + 1 < imageFiles.length) {
|
if (currentImage + 1 < imageFiles.length) {
|
||||||
if (currentImageOffset(currentImage + 1) <= 1) {
|
if (currentImageOffset(currentImage + 1) <= 1) {
|
||||||
currentImage++;
|
currentImage++;
|
||||||
|
console.log(Math.round(imageFiles.length / viewLength * scroll, 0));
|
||||||
scrollTocToActive();
|
scrollTocToActive();
|
||||||
updateProgress();
|
updateProgress();
|
||||||
}
|
}
|
||||||
|
@ -830,6 +826,7 @@ function init(filename) {
|
||||||
if (currentImage - 1 > -1) {
|
if (currentImage - 1 > -1) {
|
||||||
if (currentImageOffset(currentImage - 1) >= 0) {
|
if (currentImageOffset(currentImage - 1) >= 0) {
|
||||||
currentImage--;
|
currentImage--;
|
||||||
|
console.log(Math.round(imageFiles.length / viewLength * scroll, 0));
|
||||||
scrollTocToActive();
|
scrollTocToActive();
|
||||||
updateProgress();
|
updateProgress();
|
||||||
}
|
}
|
||||||
|
@ -844,3 +841,31 @@ function init(filename) {
|
||||||
function currentImageOffset(imageIndex) {
|
function currentImageOffset(imageIndex) {
|
||||||
return $(".mainImage").eq(imageIndex).offset().top - $("#mainContent").position().top
|
return $(".mainImage").eq(imageIndex).offset().top - $("#mainContent").position().top
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function setBookmark() {
|
||||||
|
// get csrf_token
|
||||||
|
let csrf_token = $("input[name='csrf_token']").val();
|
||||||
|
//This sends a bookmark update to calibreweb.
|
||||||
|
$.ajax(calibre.bookmarkUrl, {
|
||||||
|
method: "post",
|
||||||
|
data: {
|
||||||
|
csrf_token: csrf_token,
|
||||||
|
bookmark: currentImage
|
||||||
|
}
|
||||||
|
}).fail(function (xhr, status, error) {
|
||||||
|
console.error(error);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
$(function() {
|
||||||
|
$('input[name="direction"]').change(function () {
|
||||||
|
updateArrows();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#left').click(function () {
|
||||||
|
showLeftPage();
|
||||||
|
});
|
||||||
|
$('#right').click(function () {
|
||||||
|
showRightPage();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
|
@ -61,8 +61,8 @@
|
||||||
<div id="mainContent" tabindex="-1">
|
<div id="mainContent" tabindex="-1">
|
||||||
<div id="mainText" style="display:none"></div>
|
<div id="mainText" style="display:none"></div>
|
||||||
</div>
|
</div>
|
||||||
<div id="left" class="arrow" style="display:none" onclick="showLeftPage(); setBookmark();">‹</div>
|
<div id="left" class="arrow" style="display:none">‹</div>
|
||||||
<div id="right" class="arrow" style="display:none" onclick="showRightPage(); setBookmark();">›</div>
|
<div id="right" class="arrow" style="display:none">›</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal md-effect-1" id="settings-modal">
|
<div class="modal md-effect-1" id="settings-modal">
|
||||||
|
@ -183,58 +183,23 @@
|
||||||
<div class="overlay"></div>
|
<div class="overlay"></div>
|
||||||
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
|
||||||
<script>
|
<script>
|
||||||
var updateArrows = function () {
|
|
||||||
if ($('input[name="direction"]:checked').val() === "0") {
|
|
||||||
$("#prev_page_key").html("←");
|
|
||||||
$("#next_page_key").html("→");
|
|
||||||
} else {
|
|
||||||
$("#prev_page_key").html("→");
|
|
||||||
$("#next_page_key").html("←");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
function setBookmark() {
|
|
||||||
// get csrf_token
|
|
||||||
let csrf_token = $("input[name='csrf_token']").val();
|
|
||||||
//This sends a bookmark update to calibreweb.
|
|
||||||
$.ajax(calibre.bookmarkUrl, {
|
|
||||||
method: "post",
|
|
||||||
data: {
|
|
||||||
csrf_token: csrf_token,
|
|
||||||
bookmark: currentImage
|
|
||||||
}
|
|
||||||
}).fail(function (xhr, status, error) {
|
|
||||||
console.error(error);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
window.calibre = {
|
window.calibre = {
|
||||||
filePath: "{{ url_for('static', filename='js/libs/') }}",
|
|
||||||
cssPath: "{{ url_for('static', filename='css/') }}",
|
|
||||||
bookUrl: "{{ url_for('static', filename=comicfile) }}/",
|
|
||||||
bookmarkUrl: "{{ url_for('web.set_bookmark', book_id=comicfile, book_format=extension.upper()) }}",
|
bookmarkUrl: "{{ url_for('web.set_bookmark', book_id=comicfile, book_format=extension.upper()) }}",
|
||||||
bookmark: "{{ bookmark.bookmark_key if bookmark != None }}",
|
bookmark: "{{ bookmark.bookmark_key if bookmark != None }}",
|
||||||
useBookmarks: "{{ current_user.is_authenticated | tojson }}"
|
useBookmarks: "{{ current_user.is_authenticated | tojson }}"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
document.onreadystatechange = function () {
|
||||||
|
if (document.readyState == "complete") {
|
||||||
if (calibre.useBookmarks) {
|
if (calibre.useBookmarks) {
|
||||||
currentImage = eval(calibre.bookmark);
|
currentImage = eval(calibre.bookmark);
|
||||||
if (typeof currentImage !== 'number') {
|
if (typeof currentImage !== 'number') {
|
||||||
currentImage = 0;
|
currentImage = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
document.onreadystatechange = function () {
|
|
||||||
if (document.readyState == "complete") {
|
|
||||||
init("{{ url_for('web.serve_book', book_id=comicfile, book_format=extension) }}");
|
init("{{ url_for('web.serve_book', book_id=comicfile, book_format=extension) }}");
|
||||||
updateArrows();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<script>
|
|
||||||
$('input[name="direction"]').change(function() {
|
|
||||||
updateArrows();
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -34,7 +34,7 @@ if typing.TYPE_CHECKING:
|
||||||
class MyWSGIContainer(WSGIContainer):
|
class MyWSGIContainer(WSGIContainer):
|
||||||
|
|
||||||
def __call__(self, request: httputil.HTTPServerRequest) -> None:
|
def __call__(self, request: httputil.HTTPServerRequest) -> None:
|
||||||
if tornado.version_info > (6, 2, 0, 0):
|
if tornado.version_info < (6, 2, 0, 0):
|
||||||
data = {} # type: Dict[str, Any]
|
data = {} # type: Dict[str, Any]
|
||||||
response = [] # type: List[bytes]
|
response = [] # type: List[bytes]
|
||||||
|
|
||||||
|
@ -91,9 +91,9 @@ class MyWSGIContainer(WSGIContainer):
|
||||||
|
|
||||||
|
|
||||||
def environ(self, request: httputil.HTTPServerRequest) -> Dict[Text, Any]:
|
def environ(self, request: httputil.HTTPServerRequest) -> Dict[Text, Any]:
|
||||||
if isinstance(WSGIContainer.environ, FunctionType):
|
try:
|
||||||
environ = WSGIContainer.environ(self, request)
|
environ = WSGIContainer.environ(self, request)
|
||||||
else:
|
except TypeError as e:
|
||||||
environ = WSGIContainer.environ(request)
|
environ = WSGIContainer.environ(request)
|
||||||
environ['RAW_URI'] = request.path
|
environ['RAW_URI'] = request.path
|
||||||
return environ
|
return environ
|
||||||
|
|
Loading…
Reference in New Issue
Block a user