2023-01-16 11:41:19 +01:00
|
|
|
/**
|
|
|
|
* Makes it possble to jump to a slide by entering its
|
|
|
|
* slide number or id.
|
|
|
|
*/
|
|
|
|
export default class JumpToSlide {
|
|
|
|
|
|
|
|
constructor( Reveal ) {
|
|
|
|
|
|
|
|
this.Reveal = Reveal;
|
|
|
|
|
|
|
|
this.onInput = this.onInput.bind( this );
|
|
|
|
this.onBlur = this.onBlur.bind( this );
|
|
|
|
this.onKeyDown = this.onKeyDown.bind( this );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
|
|
|
|
this.element = document.createElement( 'div' );
|
|
|
|
this.element.className = 'jump-to-slide';
|
|
|
|
|
|
|
|
this.jumpInput = document.createElement( 'input' );
|
|
|
|
this.jumpInput.type = 'text';
|
|
|
|
this.jumpInput.className = 'jump-to-slide-input';
|
|
|
|
this.jumpInput.placeholder = 'Jump to slide';
|
|
|
|
this.jumpInput.addEventListener( 'input', this.onInput );
|
|
|
|
this.jumpInput.addEventListener( 'keydown', this.onKeyDown );
|
|
|
|
this.jumpInput.addEventListener( 'blur', this.onBlur );
|
|
|
|
|
|
|
|
this.element.appendChild( this.jumpInput );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
show() {
|
|
|
|
|
|
|
|
this.indicesOnShow = this.Reveal.getIndices();
|
|
|
|
|
|
|
|
this.Reveal.getRevealElement().appendChild( this.element );
|
|
|
|
this.jumpInput.focus();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
hide() {
|
|
|
|
|
|
|
|
if( this.isVisible() ) {
|
|
|
|
this.element.remove();
|
|
|
|
this.jumpInput.value = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
isVisible() {
|
|
|
|
|
|
|
|
return !!this.element.parentNode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-01-16 12:33:37 +01:00
|
|
|
/**
|
|
|
|
* Parses the current input and jumps to the given slide.
|
|
|
|
*/
|
2023-01-16 11:41:19 +01:00
|
|
|
jump() {
|
|
|
|
|
|
|
|
const value = this.jumpInput.value.trim( '' );
|
|
|
|
const indices = this.Reveal.location.getIndicesFromHash( value );
|
|
|
|
|
|
|
|
if( indices && value !== '' ) {
|
|
|
|
this.Reveal.slide( indices.h, indices.v, indices.f );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this.Reveal.slide( this.indicesOnShow.h, this.indicesOnShow.v, this.indicesOnShow.f );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverts back to the slide we were on when jump to slide was
|
|
|
|
* invoked.
|
|
|
|
*/
|
|
|
|
cancel() {
|
|
|
|
|
|
|
|
this.Reveal.slide( this.indicesOnShow.h, this.indicesOnShow.v, this.indicesOnShow.f );
|
|
|
|
this.hide();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
confirm() {
|
|
|
|
|
|
|
|
this.hide();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
destroy() {
|
|
|
|
|
|
|
|
this.jumpInput.removeEventListener( 'input', this.onInput );
|
|
|
|
this.jumpInput.removeEventListener( 'keydown', this.onKeyDown );
|
|
|
|
this.jumpInput.removeEventListener( 'blur', this.onBlur );
|
|
|
|
|
|
|
|
this.element.remove();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
onKeyDown( event ) {
|
|
|
|
|
|
|
|
if( event.keyCode === 13 ) {
|
|
|
|
this.confirm();
|
|
|
|
}
|
|
|
|
else if( event.keyCode === 27 ) {
|
|
|
|
this.cancel();
|
|
|
|
|
|
|
|
event.stopImmediatePropagation();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
onInput( event ) {
|
|
|
|
|
|
|
|
this.jump();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
onBlur() {
|
|
|
|
|
|
|
|
setTimeout( () => this.hide(), 1 );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|