refactor hash parsing, fixes issue with autoplaying media not starting from internal links on mobile devices
This commit is contained in:
parent
35b67a9f5b
commit
a6c0f3efac
2
dist/reveal.esm.js
vendored
2
dist/reveal.esm.js
vendored
File diff suppressed because one or more lines are too long
2
dist/reveal.js
vendored
2
dist/reveal.js
vendored
File diff suppressed because one or more lines are too long
@ -289,13 +289,13 @@ gulp.task('serve', () => {
|
|||||||
connect.server({
|
connect.server({
|
||||||
root: root,
|
root: root,
|
||||||
port: port,
|
port: port,
|
||||||
host: 'localhost',
|
host: '0.0.0.0',
|
||||||
livereload: true
|
livereload: true
|
||||||
})
|
})
|
||||||
|
|
||||||
gulp.watch(['*.html', '*.md'], gulp.series('reload'))
|
gulp.watch(['*.html', '*.md'], gulp.series('reload'))
|
||||||
|
|
||||||
gulp.watch(['js/**'], gulp.series('js', 'reload', 'test'))
|
gulp.watch(['js/**'], gulp.series('js', 'reload'))
|
||||||
|
|
||||||
gulp.watch(['plugin/**/plugin.js'], gulp.series('plugins', 'reload'))
|
gulp.watch(['plugin/**/plugin.js'], gulp.series('plugins', 'reload'))
|
||||||
|
|
||||||
|
@ -27,19 +27,18 @@ export default class Location {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reads the current URL (hash) and navigates accordingly.
|
* Returns the slide indices for the given hash link.
|
||||||
|
*
|
||||||
|
* @param {string} [hash] the hash string that we want to
|
||||||
|
* find the indices for
|
||||||
|
*
|
||||||
|
* @returns slide indices or null
|
||||||
*/
|
*/
|
||||||
readURL() {
|
getIndicesFromHash( hash=window.location.hash ) {
|
||||||
|
|
||||||
let config = this.Reveal.getConfig();
|
|
||||||
let indices = this.Reveal.getIndices();
|
|
||||||
let currentSlide = this.Reveal.getCurrentSlide();
|
|
||||||
|
|
||||||
let hash = window.location.hash;
|
|
||||||
|
|
||||||
// Attempt to parse the hash as either an index or name
|
// Attempt to parse the hash as either an index or name
|
||||||
let bits = hash.slice( 2 ).split( '/' ),
|
let name = hash.replace( /^#\/?/, '' );
|
||||||
name = hash.replace( /#\/?/gi, '' );
|
let bits = name.split( '/' );
|
||||||
|
|
||||||
// If the first bit is not fully numeric and there is a name we
|
// If the first bit is not fully numeric and there is a name we
|
||||||
// can assume that this is a named link
|
// can assume that this is a named link
|
||||||
@ -61,23 +60,12 @@ export default class Location {
|
|||||||
}
|
}
|
||||||
catch ( error ) { }
|
catch ( error ) { }
|
||||||
|
|
||||||
// Ensure that we're not already on a slide with the same name
|
|
||||||
let isSameNameAsCurrentSlide = currentSlide ? currentSlide.getAttribute( 'id' ) === name : false;
|
|
||||||
|
|
||||||
if( element ) {
|
if( element ) {
|
||||||
// If the slide exists and is not the current slide...
|
return { ...this.Reveal.getIndices( element ), f };
|
||||||
if ( !isSameNameAsCurrentSlide || typeof f !== 'undefined' ) {
|
|
||||||
// ...find the position of the named slide and navigate to it
|
|
||||||
let slideIndices = this.Reveal.getIndices( element );
|
|
||||||
this.Reveal.slide( slideIndices.h, slideIndices.v, f );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// If the slide doesn't exist, navigate to the current slide
|
|
||||||
else {
|
|
||||||
this.Reveal.slide( indices.h || 0, indices.v || 0 );
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
const config = this.Reveal.getConfig();
|
||||||
let hashIndexBase = config.hashOneBasedIndex ? 1 : 0;
|
let hashIndexBase = config.hashOneBasedIndex ? 1 : 0;
|
||||||
|
|
||||||
// Read the index components of the hash
|
// Read the index components of the hash
|
||||||
@ -92,9 +80,27 @@ export default class Location {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if( h !== indices.h || v !== indices.v || f !== undefined ) {
|
return { h, v, f };
|
||||||
this.Reveal.slide( h, v, f );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// The hash couldn't be parsed or no matching named link was found
|
||||||
|
return null
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reads the current URL (hash) and navigates accordingly.
|
||||||
|
*/
|
||||||
|
readURL() {
|
||||||
|
|
||||||
|
const currentIndices = this.Reveal.getIndices();
|
||||||
|
const newIndices = this.getIndicesFromHash();
|
||||||
|
|
||||||
|
if( newIndices && ( newIndices.h !== currentIndices.h || newIndices.v !== currentIndices.v || newIndices.f !== undefined ) ) {
|
||||||
|
this.Reveal.slide( newIndices.h, newIndices.v, newIndices.f );
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.Reveal.slide( currentIndices.h || 0, currentIndices.v || 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
28
js/reveal.js
28
js/reveal.js
@ -529,6 +529,7 @@ export default function( revealElement, options ) {
|
|||||||
controls.bind();
|
controls.bind();
|
||||||
focus.bind();
|
focus.bind();
|
||||||
|
|
||||||
|
dom.slides.addEventListener( 'click', onSlidesClicked, false );
|
||||||
dom.slides.addEventListener( 'transitionend', onTransitionEnd, false );
|
dom.slides.addEventListener( 'transitionend', onTransitionEnd, false );
|
||||||
dom.pauseOverlay.addEventListener( 'click', resume, false );
|
dom.pauseOverlay.addEventListener( 'click', resume, false );
|
||||||
|
|
||||||
@ -554,6 +555,7 @@ export default function( revealElement, options ) {
|
|||||||
|
|
||||||
window.removeEventListener( 'resize', onWindowResize, false );
|
window.removeEventListener( 'resize', onWindowResize, false );
|
||||||
|
|
||||||
|
dom.slides.removeEventListener( 'click', onSlidesClicked, false );
|
||||||
dom.slides.removeEventListener( 'transitionend', onTransitionEnd, false );
|
dom.slides.removeEventListener( 'transitionend', onTransitionEnd, false );
|
||||||
dom.pauseOverlay.removeEventListener( 'click', resume, false );
|
dom.pauseOverlay.removeEventListener( 'click', resume, false );
|
||||||
|
|
||||||
@ -2374,6 +2376,32 @@ export default function( revealElement, options ) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A global listener for all click events inside of the
|
||||||
|
* .slides container.
|
||||||
|
*
|
||||||
|
* @param {object} [event]
|
||||||
|
*/
|
||||||
|
function onSlidesClicked( event ) {
|
||||||
|
|
||||||
|
// If a hash link is clicked, we find the target slide
|
||||||
|
// and navigate to it. We previously relied on 'hashchange'
|
||||||
|
// for links like these but that prevented media with
|
||||||
|
// audio tracks from playing in mobile browsers since it
|
||||||
|
// wasn't considered a direct interaction with the document.
|
||||||
|
if( event.target.nodeName === 'A' ) {
|
||||||
|
const hash = event.target.getAttribute( 'href' );
|
||||||
|
if( /^#/.test( hash ) ) {
|
||||||
|
const indices = location.getIndicesFromHash( hash );
|
||||||
|
if( indices ) {
|
||||||
|
Reveal.slide( indices.h, indices.v, indices.f );
|
||||||
|
event.preventDefault();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handler for the window level 'resize' event.
|
* Handler for the window level 'resize' event.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user