aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2018-06-12 20:44:49 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2018-06-12 20:44:49 +0200
commit078a7520cd6a0c1c403c8270a9a58d77c09cd9de (patch)
treef0d6018244b0ed60a931ce2cde885a58693a56a6 /js
parent3680f1ad10d1cbb4a48eb98673fa7018d1ab36e5 (diff)
downloadperl-software-in-gnu-guix-078a7520cd6a0c1c403c8270a9a58d77c09cd9de.tar
perl-software-in-gnu-guix-078a7520cd6a0c1c403c8270a9a58d77c09cd9de.tar.gz
refactor fragment pdf exporting to support multiple fragments with same index #1955
Diffstat (limited to 'js')
-rw-r--r--js/reveal.js52
1 files changed, 33 insertions, 19 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 921b633..93ed446 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -794,31 +794,43 @@
// Copy page and show fragments one after another
if( config.pdfSeparateFragments ) {
- var numberOfFragments = toArray( page.querySelectorAll( '.fragment' ) ).length;
+ // 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.
+ var fragmentGroups = sortFragments( page.querySelectorAll( '.fragment' ), true );
- for( var currentFragment = 0; currentFragment < numberOfFragments; currentFragment++ ) {
+ var previousFragmentStep;
+ var previousPage;
- var clonedPage = page.cloneNode( true );
- page.parentNode.insertBefore( clonedPage, page.nextSibling );
-
- toArray( sortFragments( clonedPage.querySelectorAll( '.fragment' ) ) ).forEach( function( fragment, fragmentIndex ) {
+ fragmentGroups.forEach( function( fragments ) {
- if( fragmentIndex < currentFragment ) {
- fragment.classList.add( 'visible' );
+ // Remove 'current-fragment' from the previous group
+ if( previousFragmentStep ) {
+ previousFragmentStep.forEach( function( fragment ) {
fragment.classList.remove( 'current-fragment' );
- }
- else if( fragmentIndex === currentFragment ) {
- fragment.classList.add( 'visible', 'current-fragment' );
- }
- else {
- fragment.classList.remove( 'visible', 'current-fragment' );
- }
+ } );
+ }
+ // Show the fragments for the current index
+ fragments.forEach( function( fragment ) {
+ fragment.classList.add( 'visible', 'current-fragment' );
} );
- page = clonedPage;
+ // Create a separate page for the current fragment state
+ var clonedPage = page.cloneNode( true );
+ page.parentNode.insertBefore( clonedPage, ( previousPage || page ).nextSibling );
- }
+ previousFragmentStep = fragments;
+ previousPage = clonedPage;
+
+ } );
+
+ // Reset the first/original page so that all fragments are hidden
+ fragmentGroups.forEach( function( fragments ) {
+ fragments.forEach( function( fragment ) {
+ fragment.classList.remove( 'visible', 'current-fragment' );
+ } );
+ } );
}
// Show all fragments
@@ -4223,9 +4235,11 @@
* the fragment within the fragments list.
*
* @param {object[]|*} fragments
+ * @param {boolean} grouped If true the returned array will contain
+ * nested arrays for all fragments with the same index
* @return {object[]} sorted Sorted array of fragments
*/
- function sortFragments( fragments ) {
+ function sortFragments( fragments, grouped ) {
fragments = toArray( fragments );
@@ -4268,7 +4282,7 @@
index ++;
} );
- return sorted;
+ return grouped === true ? ordered : sorted;
}