Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add RISE-lab plugin for jupyterlab_rise #326

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
69 changes: 69 additions & 0 deletions plugins/rise-lab.js
@@ -0,0 +1,69 @@
// Plugin for jupyterlab_rise presentations, based on the generic plugin.
// Slides are advanced by key presses; the deck is over when the URL stays unchanged.

export const help =
`Exports a jupyterlab_rise presentation by advancing with space key presses and
ending when the part after the # in the URL did not change. To use it, start
"jupyter lab", and call decktape with a URL of the form:
http://server:port/rise/your_path/your_notebook.ipynb?token=your_token`;

export const create = page => new RISElab(page);

class RISElab {
constructor(page) {
this.page = page;
this.currentSlide = undefined;
}

getName() {
return 'RISE-lab';
}

isActive() {
return this.page.evaluate(_ => { return document.title == 'Rise' });
}

async configure() {
// Wait for the presentation to be fully loaded
await this.page.waitForSelector('.reveal-viewport', { timeout: 30000 });
await this.page.evaluate(_ => {
// Hide "click here to add a new cell"
const footers = document.getElementsByClassName('jp-Notebook-footer');
for (var i = 0; i < footers.length; i++) {
footers[i].style.display = 'none';
}
// Hide help button so we do not need to wait for it to fade
const help_btn = document.getElementById('help-b');
if (help_btn) {
help_btn.style.display = 'none';
}
});
this.currentSlide = await this.currentSlideIndex();
}

slideCount() {
return undefined;
}

async hasNextSlide() {
// We try to advance and check whether the URL changed
await this.page.keyboard.press('Space');
const nextSlide = await this.currentSlideIndex();
if (nextSlide != this.currentSlide) {
this.currentSlide = nextSlide;
return true;
}
return false;
}

nextSlide() {
// We already advanced in hasNextSlide(), nothing to do
}

async currentSlideIndex() {
// We use the part after the # in the URL as the slide name
const hash = await this.page.evaluate(_ => window.location.hash);
const [, fragment] = hash.match(/^#\/?([^?]*)/) || [];
return fragment;
}
}