2015-07-08 18:22:39 +03:00
// The generic plugin emulates end-user interaction by pressing keyboard and detects changes to the DOM.
// The deck is considered over when no change is detected afterward.
exports . options = {
keycode : {
default : "Right" ,
help : "Key code pressed to navigate to next slide"
}
} ;
2015-07-09 16:07:55 +03:00
exports . help =
"Emulates the end-user interaction by pressing the key with the specified [keycode]\n" +
"and iterates over the presentation as long as any change to the DOM is detected\n" +
"by observing mutation events to the body element and its subtree.\n" +
"The [keycode] must be one of the PhantomJS page event keys and defaults to [Right]." ;
2015-07-08 18:22:39 +03:00
exports . create = function ( page , options ) {
return new Generic ( page , options ) ;
} ;
function Generic ( page , options ) {
this . page = page ;
this . options = options ;
this . isNextSlideDetected = false ;
}
Generic . prototype = {
getName : function ( ) {
return "Generic" ;
} ,
isActive : function ( ) {
return true ;
} ,
configure : function ( ) {
2015-07-09 19:19:26 +03:00
this . page . evaluate ( function ( ) {
2015-07-08 18:22:39 +03:00
var observer = new window . MutationObserver ( function ( ) {
window . callPhantom ( { isNextSlideDetected : true } ) ;
} ) ;
observer . observe ( document . querySelector ( "body" ) , { attributes : true , childList : true , subtree : true } ) ;
} ) ;
var plugin = this ;
2015-07-09 19:19:26 +03:00
this . page . onCallback = function ( mutation ) {
2015-07-08 18:22:39 +03:00
if ( mutation . isNextSlideDetected )
plugin . isNextSlideDetected = true ;
} ;
} ,
slideCount : function ( ) {
return undefined ;
} ,
hasNextSlide : function ( ) {
// A priori knowledge is impossible to achieve in a generic way. Thus the only way is to actually emulate end-user interaction by pressing the configured key and check whether the DOM has changed a posteriori.
2015-07-09 19:19:26 +03:00
this . page . sendEvent ( "keypress" , page . event . key [ this . options . keycode || exports . options . keycode . default ] ) ;
2015-07-08 18:22:39 +03:00
var plugin = this ;
return new Promise ( function ( fulfill ) {
// TODO: use mutation event directly instead of relying on a timeout
setTimeout ( function ( ) {
fulfill ( plugin . isNextSlideDetected ) ;
} , 1000 ) ;
} ) ;
} ,
nextSlide : function ( ) {
this . isNextSlideDetected = false ;
} ,
currentSlideIndex : function ( ) {
2015-07-09 19:19:26 +03:00
var fragment = this . page . evaluate ( function ( ) {
2015-07-08 18:22:39 +03:00
return window . location . hash . replace ( /^#\/?/ , "" ) ;
} ) ;
return fragment . length ? fragment : this . currentSlide ;
}
} ;