1
0
Fork 0
mirror of https://github.com/futurepress/epub.js.git synced 2025-10-03 14:59:18 +02:00

basic scrolling renderer

This commit is contained in:
Fred Chasen 2014-07-31 17:25:56 -04:00
parent 849625fc83
commit b1b98f9d57
15 changed files with 1020 additions and 22 deletions

87
lib/epubjs/view.js Normal file
View file

@ -0,0 +1,87 @@
EPUBJS.View = function(options) {
this.id = "epubjs-view:" + EPUBJS.core.uuid();
this.loading = new RSVP.defer();
this.loaded = this.loading.promise;
this.iframe = this.create();
this.height;
this.width;
};
// EPUBJS.View.prototype.load = function(section) {
// var contents = section.render();
// var loading = new RSVP.defer();
// var loaded = loading.promise;
// this.section = section;
// contents.then(function(contents) {
// //TODO: Add a more generic set contents
// this.iframe.srcdoc = contents;
// this.layout();
// loading.resolve(this);
// }.bind(this));
// return loaded;
// };
EPUBJS.View.prototype.load = function(contents) {
var loading = new RSVP.defer();
var loaded = loading.promise;
this.document = this.iframe.contentDocument;
// this.iframe.srcdoc = contents;
this.document.open();
this.document.write(contents);
this.document.close();
this.iframe.onload = function(e) {
this.iframe.style.display = "block";
this.layout();
this.iframe.style.visibility = "visible";
loading.resolve(this);
this.loading.resolve(this);
}.bind(this);
return loaded;
};
EPUBJS.View.prototype.unload = function() {
};
EPUBJS.View.prototype.create = function() {
this.iframe = document.createElement('iframe');
this.iframe.id = this.id;
this.iframe.scrolling = "no";
this.iframe.seamless = "seamless";
// Back up if seamless isn't supported
this.iframe.style.border = "none";
this.iframe.width = "100%";
this.iframe.height = "100%";
// this.iframe.addEventListener("load", this.loaded.bind(this), false);
this.iframe.style.display = "none";
this.iframe.style.visibility = "hidden";
return this.iframe;
};
EPUBJS.View.prototype.layout = function() {
this.height = this.document.documentElement.getBoundingClientRect().height;
this.width = this.document.documentElement.getBoundingClientRect().width;
this.iframe.style.height = this.height + "px";
};
EPUBJS.View.prototype.appendTo = function(element) {
element.appendChild(this.iframe);
};
EPUBJS.View.prototype.prependTo = function(element) {
element.insertBefore(this.iframe, element.firstChild);
};
EPUBJS.View.prototype.destroy = function() {
};