You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calibre-web/cps/static/js/kthoom.js

586 lines
19 KiB
JavaScript

/*
* kthoom.js
*
* Licensed under the MIT License
*
* Copyright(c) 2011 Google Inc.
* Copyright(c) 2011 antimatter15
7 years ago
*/
/* Reference Documentation:
* Web Workers: http://www.whatwg.org/specs/web-workers/current-work/
* Web Workers in Mozilla: https://developer.mozilla.org/En/Using_web_workers
* File API (FileReader): http://www.w3.org/TR/FileAPI/
* Typed Arrays: http://www.khronos.org/registry/typedarray/specs/latest/#6
*/
if (window.opera) {
7 years ago
window.console.log = function(str) {
opera.postError(str);
};
}
7 years ago
var kthoom;
// gets the element with the given id
function getElem(id) {
7 years ago
if (document.documentElement.querySelector) {
// querySelector lookup
7 years ago
return document.body.querySelector("#" + id);
7 years ago
}
// getElementById lookup
return document.getElementById(id);
}
7 years ago
if (window.kthoom === undefined) {
7 years ago
kthoom = {};
}
// key codes
kthoom.Key = {
ESCAPE: 27,
LEFT: 37,
UP: 38,
RIGHT: 39,
DOWN: 40,
A: 65, B: 66, C: 67, D: 68, E: 69, F: 70, G: 71, H: 72, I: 73, J: 74, K: 75, L: 76, M: 77,
N: 78, O: 79, P: 80, Q: 81, R: 82, S: 83, T: 84, U: 85, V: 86, W: 87, X: 88, Y: 89, Z: 90,
QUESTION_MARK: 191,
LEFT_SQUARE_BRACKET: 219,
RIGHT_SQUARE_BRACKET: 221
};
// The rotation orientation of the comic.
kthoom.rotateTimes = 0;
// global variables
var unarchiver = null;
var currentImage = 0;
var imageFiles = [];
var imageFilenames = [];
var totalImages = 0;
var lastCompletion = 0;
7 years ago
var hflip = false, vflip = false, fitMode = kthoom.Key.B;
var canKeyNext = true, canKeyPrev = true;
kthoom.saveSettings = function() {
7 years ago
localStorage.kthoomSettings = JSON.stringify({
7 years ago
rotateTimes: kthoom.rotateTimes,
hflip: hflip,
vflip: vflip,
fitMode: fitMode
});
7 years ago
};
kthoom.loadSettings = function() {
7 years ago
try {
7 years ago
if (localStorage.kthoomSettings.length < 10) return;
var s = JSON.parse(localStorage.kthoomSettings);
7 years ago
kthoom.rotateTimes = s.rotateTimes;
hflip = s.hflip;
vflip = s.vflip;
fitMode = s.fitMode;
7 years ago
} catch (err) {
alert("Error load settings");
7 years ago
}
}
7 years ago
var createURLFromArray = function(array, mimeType) {
var offset = array.byteOffset, len = array.byteLength;
var bb, url;
var blob;
// TODO: Move all this browser support testing to a common place
// and do it just once.
// Blob constructor, see http://dev.w3.org/2006/webapi/FileAPI/#dfn-Blob.
if (typeof Blob == "function") {
blob = new Blob([array], {type: mimeType});
} else {
throw "Browser support for Blobs is missing."
}
if (blob.slice) {
blob = blob.slice(offset, offset + len, mimeType);
} else {
throw "Browser support for Blobs is missing."
}
if ((typeof URL != "function" && typeof URL != "object") ||
typeof URL.createObjectURL != "function") {
throw "Browser support for Object URLs is missing";
}
return URL.createObjectURL(blob);
}
// Stores an image filename and its data: URI.
// TODO: investigate if we really need to store as base64 (leave off ;base64 and just
// non-safe URL characters are encoded as %xx ?)
// This would save 25% on memory since base64-encoded strings are 4/3 the size of the binary
kthoom.ImageFile = function(file) {
7 years ago
this.filename = file.filename;
7 years ago
var fileExtension = file.filename.split(".").pop().toLowerCase();
7 years ago
var mimeType = fileExtension === "png" ? "image/png" :
7 years ago
(fileExtension === "jpg" || fileExtension === "jpeg") ? "image/jpeg" :
7 years ago
fileExtension === "gif" ? "image/gif" : null;
7 years ago
this.dataURI = createURLFromArray(file.fileData, mimeType);
this.data = file;
};
kthoom.initProgressMeter = function() {
7 years ago
var svgns = "http://www.w3.org/2000/svg";
var pdiv = $("#progress")[0];
var svg = document.createElementNS(svgns, "svg");
svg.style.width = "100%";
svg.style.height = "100%";
7 years ago
7 years ago
var defs = document.createElementNS(svgns, "defs");
7 years ago
7 years ago
var patt = document.createElementNS(svgns, "pattern");
patt.id = "progress_pattern";
patt.setAttribute("width", "30");
patt.setAttribute("height", "20");
patt.setAttribute("patternUnits", "userSpaceOnUse");
7 years ago
7 years ago
var rect = document.createElementNS(svgns, "rect");
rect.setAttribute("width", "100%");
rect.setAttribute("height", "100%");
rect.setAttribute("fill", "#cc2929");
7 years ago
7 years ago
var poly = document.createElementNS(svgns, "polygon");
poly.setAttribute("fill", "yellow");
poly.setAttribute("points", "15,0 30,0 15,20 0,20");
7 years ago
patt.appendChild(rect);
patt.appendChild(poly);
defs.appendChild(patt);
svg.appendChild(defs);
7 years ago
var g = document.createElementNS(svgns, "g");
7 years ago
7 years ago
var outline = document.createElementNS(svgns, "rect");
outline.setAttribute("y", "1");
outline.setAttribute("width", "100%");
outline.setAttribute("height", "15");
outline.setAttribute("fill", "#777");
outline.setAttribute("stroke", "white");
outline.setAttribute("rx", "5");
outline.setAttribute("ry", "5");
7 years ago
g.appendChild(outline);
7 years ago
var title = document.createElementNS(svgns, "text");
title.id = "progress_title";
title.appendChild(document.createTextNode("0%"));
title.setAttribute("y", "13");
title.setAttribute("x", "99.5%");
title.setAttribute("fill", "white");
title.setAttribute("font-size", "12px");
title.setAttribute("text-anchor", "end");
7 years ago
g.appendChild(title);
7 years ago
var meter = document.createElementNS(svgns, "rect");
meter.id = "meter";
meter.setAttribute("width", "0%");
meter.setAttribute("height", "17");
meter.setAttribute("fill", "url(#progress_pattern)");
meter.setAttribute("rx", "5");
meter.setAttribute("ry", "5");
var meter2 = document.createElementNS(svgns, "rect");
meter2.id = "meter2";
meter2.setAttribute("width", "0%");
meter2.setAttribute("height", "17");
meter2.setAttribute("opacity", "0.8");
meter2.setAttribute("fill", "#007fff");
meter2.setAttribute("rx", "5");
meter2.setAttribute("ry", "5");
7 years ago
g.appendChild(meter);
g.appendChild(meter2);
7 years ago
var page = document.createElementNS(svgns, "text");
page.id = "page";
page.appendChild(document.createTextNode("0/0"));
page.setAttribute("y", "13");
page.setAttribute("x", "0.5%");
page.setAttribute("fill", "white");
page.setAttribute("font-size", "12px");
7 years ago
g.appendChild(page);
7 years ago
svg.appendChild(g);
pdiv.appendChild(svg);
7 years ago
svg.onclick = function(e) {
7 years ago
for (var x = pdiv, l = 0; x !== document.documentElement; x = x.parentNode) l += x.offsetLeft;
var page = Math.max(1, Math.ceil(((e.clientX - l) / pdiv.offsetWidth) * totalImages)) - 1;
7 years ago
currentImage = page;
updatePage();
};
}
7 years ago
kthoom.setProgressMeter = function(pct, optLabel) {
pct = (pct * 100);
var part = 1 / totalImages;
var remain = ((pct - lastCompletion) / 100) / part;
7 years ago
var fract = Math.min(1, remain);
7 years ago
var smartpct = ((imageFiles.length / totalImages) + (fract * part))* 100;
if (totalImages === 0) smartpct = pct;
7 years ago
// + Math.min((pct - lastCompletion), 100/totalImages * 0.9 + (pct - lastCompletion - 100/totalImages)/2, 100/totalImages);
var oldval = parseFloat(getElem("meter").getAttribute("width"));
if (isNaN(oldval)) oldval = 0;
var weight = 0.5;
smartpct = ((weight * smartpct) + ((1 - weight) * oldval));
if (pct == 100) smartpct = 100;
if (!isNaN(smartpct)) {
7 years ago
getElem("meter").setAttribute("width", smartpct + "%");
7 years ago
}
var title = getElem("progress_title");
while (title.firstChild) title.removeChild(title.firstChild);
var labelText = pct.toFixed(2) + "% " + imageFiles.length + "/" + totalImages + "";
if (optLabel) {
labelText = optLabel + " " + labelText;
}
title.appendChild(document.createTextNode(labelText));
getElem("meter2").setAttribute("width",
100 * (totalImages == 0 ? 0 : ((currentImage+1) / totalImages)) + "%");
var title = getElem("page");
while (title.firstChild) title.removeChild(title.firstChild);
title.appendChild(document.createTextNode( (currentImage+1) + '/' + totalImages ));
if (pct > 0) {
7 years ago
//getElem('nav').className = '';
7 years ago
getElem("progress").className = '';
7 years ago
}
}
function loadFromArrayBuffer(ab) {
7 years ago
var start = (new Date).getTime();
var h = new Uint8Array(ab, 0, 10);
7 years ago
var pathToBitJS = "../../static/js/";
7 years ago
if (h[0] == 0x52 && h[1] == 0x61 && h[2] == 0x72 && h[3] == 0x21) { //Rar!
unarchiver = new bitjs.archive.Unrarrer(ab, pathToBitJS);
} else if (h[0] == 80 && h[1] == 75) { //PK (Zip)
unarchiver = new bitjs.archive.Unzipper(ab, pathToBitJS);
} else { // Try with tar
unarchiver = new bitjs.archive.Untarrer(ab, pathToBitJS);
}
// Listen for UnarchiveEvents.
if (unarchiver) {
unarchiver.addEventListener(bitjs.archive.UnarchiveEvent.Type.PROGRESS,
function(e) {
var percentage = e.currentBytesUnarchived / e.totalUncompressedBytesInArchive;
totalImages = e.totalFilesInArchive;
7 years ago
kthoom.setProgressMeter(percentage, "Unzipping");
7 years ago
// display nav
lastCompletion = percentage * 100;
});
unarchiver.addEventListener(bitjs.archive.UnarchiveEvent.Type.EXTRACT,
function(e) {
// convert DecompressedFile into a bunch of ImageFiles
if (e.unarchivedFile) {
var f = e.unarchivedFile;
// add any new pages based on the filename
if (imageFilenames.indexOf(f.filename) == -1) {
imageFilenames.push(f.filename);
imageFiles.push(new kthoom.ImageFile(f));
}
}
// display first page if we haven't yet
if (imageFiles.length == currentImage + 1) {
updatePage();
}
});
unarchiver.addEventListener(bitjs.archive.UnarchiveEvent.Type.FINISH,
7 years ago
function(e) {
var diff = ((new Date).getTime() - start)/1000;
console.log("Unarchiving done in " + diff + "s");
});
7 years ago
unarchiver.start();
} else {
7 years ago
alert("Some error");
7 years ago
}
}
function updatePage() {
7 years ago
var title = getElem("page");
7 years ago
while (title.firstChild) title.removeChild(title.firstChild);
7 years ago
title.appendChild(document.createTextNode( (currentImage+1) + "/" + totalImages ));
7 years ago
7 years ago
getElem('meter2').setAttribute('width',
100 * (totalImages == 0 ? 0 : ((currentImage+1)/totalImages)) + "%");
7 years ago
if (imageFiles[currentImage]) {
setImage(imageFiles[currentImage].dataURI);
} else {
7 years ago
setImage("loading");
7 years ago
}
}
function setImage(url) {
7 years ago
var canvas = $("#mainImage")[0];
7 years ago
var x = $("#mainImage")[0].getContext("2d");
$("#mainText").hide();
if (url == "loading") {
7 years ago
updateScale(true);
canvas.width = innerWidth - 100;
canvas.height = 200;
7 years ago
x.fillStyle = "red";
x.font = "50px sans-serif";
x.strokeStyle = "black";
x.fillText("Loading Page #" + (currentImage + 1), 100, 100)
7 years ago
} else {
7 years ago
if ($("body").css("scrollHeight")/innerHeight > 1) {
$("body").css("overflowY", "scroll");
}
7 years ago
var img = new Image();
img.onerror = function(e) {
canvas.width = innerWidth - 100;
canvas.height = 300;
updateScale(true);
7 years ago
x.fillStyle = "orange";
x.font = "50px sans-serif";
x.strokeStyle = "black";
x.fillText("Page #" + (currentImage+1) + " (" +
imageFiles[currentImage].filename + ")", 100, 100)
x.fillStyle = "red";
x.fillText("Is corrupt or not an image", 100, 200);
7 years ago
if (/(html|htm)$/.test(imageFiles[currentImage].filename)) {
var xhr = new XMLHttpRequest();
7 years ago
xhr.open("GET", url, true);
7 years ago
xhr.onload = function() {
//document.getElementById('mainText').style.display = '';
$("#mainText").css("display", "");
7 years ago
$("#mainText").innerHTML("<iframe style=\"width:100%;height:700px;border:0\" src=\"data:text/html,"+escape(xhr.responseText)+"\"></iframe>");
7 years ago
}
xhr.send(null);
} else if (!/(jpg|jpeg|png|gif)$/.test(imageFiles[currentImage].filename) && imageFiles[currentImage].data.uncompressedSize < 10*1024) {
var xhr = new XMLHttpRequest();
7 years ago
xhr.open("GET", url, true);
7 years ago
xhr.onload = function() {
$("#mainText").css("display", "");
$("#mainText").innerText(xhr.responseText);
};
xhr.send(null);
}
};
7 years ago
img.onload = function() {
var h = img.height,
w = img.width,
sw = w,
sh = h;
kthoom.rotateTimes = (4 + kthoom.rotateTimes) % 4;
x.save();
if (kthoom.rotateTimes % 2 == 1) { sh = w; sw = h;}
canvas.height = sh;
canvas.width = sw;
x.translate(sw/2, sh/2);
x.rotate(Math.PI/2 * kthoom.rotateTimes);
x.translate(-w/2, -h/2);
if (vflip) {
x.scale(1, -1)
x.translate(0, -h);
}
if (hflip) {
x.scale(-1, 1)
x.translate(-w, 0);
}
7 years ago
canvas.style.display = "none";
7 years ago
scrollTo(0,0);
x.drawImage(img, 0, 0);
updateScale();
canvas.style.display = '';
$("body").css("overflowY", "");
x.restore();
};
img.src = url;
}
}
function showPrevPage() {
7 years ago
currentImage--;
if (currentImage < 0) {
7 years ago
// Freeze on the current page.
currentImage++;
} else {
updatePage();
}
}
function showNextPage() {
7 years ago
currentImage++;
if (currentImage >= Math.max(totalImages, imageFiles.length)) {
7 years ago
// Freeze on the current page.
currentImage--;
} else {
updatePage();
}
}
function updateScale(clear) {
7 years ago
var mainImageStyle = getElem('mainImage').style;
mainImageStyle.width = '';
mainImageStyle.height = '';
mainImageStyle.maxWidth = '';
mainImageStyle.maxHeight = '';
7 years ago
var maxheight = innerHeight - 15;
7 years ago
if (!/main/.test(getElem('titlebar').className)) {
7 years ago
maxheight -= 25;
}
if (clear || fitMode == kthoom.Key.N) {
} else if (fitMode == kthoom.Key.B) {
7 years ago
mainImageStyle.maxWidth = '100%';
mainImageStyle.maxHeight = maxheight + 'px';
7 years ago
} else if (fitMode == kthoom.Key.H) {
7 years ago
mainImageStyle.height = maxheight + 'px';
7 years ago
} else if (fitMode == kthoom.Key.W) {
7 years ago
mainImageStyle.width = '100%';
7 years ago
}
kthoom.saveSettings();
}
function keyHandler(evt) {
7 years ago
var code = evt.keyCode;
7 years ago
if ($("#progress").css('display') == "none")
return;
canKeyNext = (($("body").css("offsetWidth")+$("body").css("scrollLeft"))/ $("body").css("scrollWidth")) >= 1;
7 years ago
canKeyPrev = (scrollX <= 0);
if (evt.ctrlKey || evt.shiftKey || evt.metaKey) return;
switch(code) {
case kthoom.Key.LEFT:
if (canKeyPrev) showPrevPage();
break;
case kthoom.Key.RIGHT:
if (canKeyNext) showNextPage();
break;
case kthoom.Key.L:
kthoom.rotateTimes--;
if (kthoom.rotateTimes < 0) {
kthoom.rotateTimes = 3;
}
updatePage();
break;
case kthoom.Key.R:
kthoom.rotateTimes++;
if (kthoom.rotateTimes > 3) {
kthoom.rotateTimes = 0;
}
updatePage();
break;
case kthoom.Key.F:
if (!hflip && !vflip) {
hflip = true;
} else if(hflip == true) {
vflip = true;
hflip = false;
} else if(vflip == true) {
vflip = false;
}
updatePage();
break;
case kthoom.Key.W:
fitMode = kthoom.Key.W;
updateScale();
break;
case kthoom.Key.H:
fitMode = kthoom.Key.H;
updateScale();
break;
case kthoom.Key.B:
fitMode = kthoom.Key.B;
updateScale();
break;
case kthoom.Key.N:
fitMode = kthoom.Key.N;
updateScale();
break;
default:
//console.log('KeyCode = ' + code);
break;
}
}
function init(filename) {
7 years ago
if (!window.FileReader) {
7 years ago
alert("Sorry, kthoom will not work with your browser because it does not support the File API. Please try kthoom with Chrome 12+ or Firefox 7+");
7 years ago
} else {
var request = new XMLHttpRequest();
request.open("GET",filename);
request.responseType="arraybuffer";
request.setRequestHeader("X-Test","test1");
request.setRequestHeader("X-Test","test2");
7 years ago
request.addEventListener("load", function(event) {
7 years ago
if (request.status >= 200 && request.status < 300) {
loadFromArrayBuffer(request.response);
} else {
console.warn(request.statusText, request.responseText);
}
});
request.send();
kthoom.initProgressMeter();
7 years ago
document.body.className += /AppleWebKit/.test(navigator.userAgent) ? " webkit" : "";
7 years ago
kthoom.loadSettings();
$(document).keydown(keyHandler);
$(window).resize(function() {
var f = (screen.width - innerWidth < 4 && screen.height - innerHeight < 4);
7 years ago
getElem("titlebar").className = f ? "main" : "";
7 years ago
updateScale();
});
7 years ago
$("#mainImage").click(function(evt) {
7 years ago
// Firefox does not support offsetX/Y so we have to manually calculate
// where the user clicked in the image.
7 years ago
var mainContentWidth = $("#mainContent").width();
var mainContentHeight = $("#mainContent").height();
7 years ago
var comicWidth = evt.target.clientWidth;
var comicHeight = evt.target.clientHeight;
var offsetX = (mainContentWidth - comicWidth) / 2;
var offsetY = (mainContentHeight - comicHeight) / 2;
var clickX = !!evt.offsetX ? evt.offsetX : (evt.clientX - offsetX);
var clickY = !!evt.offsetY ? evt.offsetY : (evt.clientY - offsetY);
// Determine if the user clicked/tapped the left side or the
// right side of the page.
var clickedPrev = false;
switch (kthoom.rotateTimes) {
case 0:
clickedPrev = clickX < (comicWidth / 2);
break;
case 1:
clickedPrev = clickY < (comicHeight / 2);
break;
case 2:
clickedPrev = clickX > (comicWidth / 2);
break;
case 3:
clickedPrev = clickY > (comicHeight / 2);
break;
}
if (clickedPrev) {
7 years ago
showPrevPage();
7 years ago
} else {
7 years ago
showNextPage();
7 years ago
}
});
}
}