decktape/plugins/reveal.js

65 lines
1.8 KiB
JavaScript
Raw Normal View History

function Reveal(page) {
this.page = page;
2015-05-29 00:35:06 +03:00
}
Reveal.prototype = {
2015-05-29 14:22:00 +03:00
getName : function() {
return "Reveal JS";
},
isActive : function() {
return this.page.evaluate(function() {
if (typeof Reveal === "undefined")
return false;
if (!(typeof Reveal.isLastSlide === "function")) {
console.log("Reveal JS plugin isn't compatible with reveal.js version < 2.3.0");
return false;
}
return true;
});
2015-05-29 14:22:00 +03:00
},
2015-05-29 00:35:06 +03:00
configure : function() {
this.page.evaluate(function() {
Reveal.configure({controls: false, progress: false});
});
2015-05-29 00:35:06 +03:00
},
slideCount : function() {
return this.page.evaluate(function() {
// TODO: the getTotalSlides API does not report the number of slides accurately as it does not take stacks and some index-less fragments into account
// getTotalSlides API is only available starting reveal.js version 3.0.0
return typeof Reveal.getTotalSlides === "function" ? Reveal.getTotalSlides() : undefined;
});
2015-05-29 00:35:06 +03:00
},
2015-05-29 14:22:00 +03:00
hasNextSlide : function() {
return this.page.evaluate(function() {
return !Reveal.isLastSlide();
});
2015-05-29 00:35:06 +03:00
},
nextSlide : function() {
this.page.evaluate(function() {
Reveal.next();
});
2015-05-29 00:35:06 +03:00
},
currentSlideIndex : function() {
return this.page.evaluate(function() {
var indices = Reveal.getIndices();
var id = Reveal.getCurrentSlide().getAttribute("id");
if (typeof id === "string" && id.length)
return '/' + id;
else
return '/' + indices.h + (indices.v > 0 ? '/' + indices.v : '');
});
2015-05-29 00:35:06 +03:00
}
};
exports.create = function(page) {
return new Reveal(page);
};