import { SLIDES_SELECTOR } from '../utils/constants.js' import { queryAll, createStyleSheet } from '../utils/util.js' /** * The reader mode lets you read a reveal.js presentation * as a linear scrollable page. */ export default class Reader { constructor( Reveal ) { this.Reveal = Reveal; } async activate() { const slides = queryAll( this.Reveal.getRevealElement(), SLIDES_SELECTOR ); const viewportElement = this.Reveal.getViewportElement(); const slideSize = this.Reveal.getComputedSlideSize( window.innerWidth, window.innerHeight ); // Dimensions of slides within the pages const slideWidth = slideSize.width, slideHeight = slideSize.height; await new Promise( requestAnimationFrame ); viewportElement.classList.add( 'reveal-reader' ); viewportElement.addEventListener( 'scroll', this.onScroll.bind( this ) ); let presentationBackground; if( viewportElement ) { const viewportStyles = window.getComputedStyle( viewportElement ); if( viewportStyles && viewportStyles.background ) { presentationBackground = viewportStyles.background; } } // Make sure stretch elements fit on slide await new Promise( requestAnimationFrame ); this.Reveal.layoutSlideContents( slideWidth, slideHeight ); const pages = []; const pageContainer = slides[0].parentNode; // Slide and slide background layout slides.forEach( function( slide ) { // Vertical stacks are not centred since their section // children will be if( slide.classList.contains( 'stack' ) === false ) { // Wrap the slide in a page element and hide its overflow // so that no page ever flows onto another const page = document.createElement( 'div' ); pages.push( page ); page.className = 'reader-page'; page.style.width = slideWidth + 'px'; page.style.height = slideHeight + 'px'; slide.style.width = slideWidth + 'px'; // Copy the presentation-wide background to each individual // page when printing if( presentationBackground ) { page.style.background = presentationBackground; } page.appendChild( slide ); if( slide.slideBackgroundElement ) { page.insertBefore( slide.slideBackgroundElement, slide ); } } }, this ); // Remove leftover stacks queryAll( this.Reveal.getRevealElement(), '.stack' ).forEach( stack => stack.remove() ); await new Promise( requestAnimationFrame ); pages.forEach( page => pageContainer.appendChild( page ) ); // Re-run JS-based content layout after the slide is added to page DOM this.Reveal.slideContent.layout( this.Reveal.getSlidesElement() ); this.Reveal.layout(); } /** * Checks if the reader mode is/should be activated. */ isActive() { if( typeof this._isReaderMode === 'undefined' ) { this._isReaderMode = this.Reveal.getConfig().mode === 'reader'; } return this._isReaderMode; } generatePageMap() { const slideSize = this.Reveal.getComputedSlideSize( window.innerWidth, window.innerHeight ); const scale = this.Reveal.getScale(); // The height that needs to be scrolled between scroll triggers const scrollTriggerHeight = slideSize.height * scale / 2; this.pageElements = Array.from( this.Reveal.getRevealElement().querySelectorAll( '.reader-page' ) ); this.pageMap = this.pageElements.map( pageElement => { const page = { pageElement: pageElement, slideElement: pageElement.querySelector( 'section' ), top: pageElement.offsetTop * scale, pageHeight: pageElement.offsetHeight * scale, scrollTriggers: [] }; page.fragments = this.Reveal.fragments.sort( pageElement.querySelectorAll( '.fragment:not(.disabled)' ) ); // Each fragment 'group' is an array containing one or more // fragments. Multiple fragments that appear at the same time // are part of the same group. page.fragmentGroups = this.Reveal.fragments.sort( pageElement.querySelectorAll( '.fragment' ), true ); // The amount of empty scrollable space that has been append page.scrollHeight = scrollTriggerHeight * Math.max( page.fragmentGroups.length - 1, 0 ); // The total height including scrollable space page.totalHeight = page.pageHeight + page.scrollHeight; page.bottom = page.top + page.totalHeight; // Pad the page height to reserve scrollable height page.pageElement.style.marginBottom = page.scrollHeight + 'px'; // Create scroll triggers that show/hide fragments if( page.fragmentGroups.length ) { const segmentSize = 1 / ( page.fragmentGroups.length + 1 ); page.scrollTriggers.push( // Trigger for the initial state with no fragments visible { range: [ 0, segmentSize ], fragmentIndex: -1 }, // Triggers for each fragment group ...page.fragmentGroups.map( ( fragments, i ) => ({ range: [ segmentSize * ( i + 1 ), segmentSize * ( i + 2 ) ], fragmentIndex: i })) ); } return page; } ); } update() { this.generatePageMap(); this.onScroll(); } onScroll() { const viewportElement = this.Reveal.getViewportElement(); const scrollTop = viewportElement.scrollTop; const scale = this.Reveal.getScale(); this.pageMap.forEach( ( page, i ) => { const isPartiallyVisible = scrollTop >= page.top && scrollTop < page.top + page.bottom; if( isPartiallyVisible ) { // Load the slide content when it becomes visible if( !page.visible ) { page.visible = true; this.Reveal.slideContent.load( page.slideElement ); this.Reveal.slideContent.startEmbeddedContent( page.slideElement ); } if( page.totalHeight > page.pageHeight ) { const scrollProgress = Math.min( ( scrollTop - page.top ) / page.scrollHeight, 1 ); // Fix the slide to the top of the viewport while we're in its // scrollable region page.pageElement.style.transform = `translateY( ${ scrollProgress * page.scrollHeight / scale }px )`; page.scrollTriggers.forEach( trigger => { if( scrollProgress >= trigger.range[0] && scrollProgress < trigger.range[1] ) { this.Reveal.fragments.update( trigger.fragmentIndex, page.fragments ); } } ); } } else if( page.visible ) { page.visible = false; this.Reveal.slideContent.unload( page.slideElement ); this.Reveal.slideContent.stopEmbeddedContent( page.slideElement ); } } ); } }