decktape/plugins/flowtime.js
Nico Jansen 056002fcdc feat(esm): migrate this package to a pure ESM
BREAKING CHANGE: Please run node 12.20 or higher
BREAKING CHANGE: This package is now a pure esm, please [read this](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c)
2022-12-09 17:00:21 +01:00

41 lines
764 B
JavaScript

export const create = page => new Flowtime(page);
class Flowtime {
constructor(page) {
this.page = page;
}
getName() {
return 'Flowtime JS';
}
isActive() {
return this.page.evaluate(_ => typeof Flowtime === 'object');
}
configure() {
return this.page.evaluate(_ => {
Flowtime.showProgress(false);
Flowtime.loop(false);
});
}
slideCount() {
return undefined;
}
hasNextSlide() {
return this.page.evaluate(_ => Flowtime.getNextPage() || Flowtime.getNextSection());
}
nextSlide() {
return this.page.evaluate(_ => Flowtime.next());
}
currentSlideIndex() {
return this.page.evaluate(_ =>
`/section-${Flowtime.getSectionIndex() + 1}/page-${Flowtime.getPageIndex() + 1}`);
}
}