Convert slide.js to es6
This commit is contained in:
parent
781f495f3e
commit
eb5e7ba0d1
1 changed files with 31 additions and 33 deletions
|
@ -1,67 +1,65 @@
|
||||||
require('../css/extra.css');
|
require('../css/extra.css');
|
||||||
require('../css/site.css');
|
require('../css/site.css');
|
||||||
|
|
||||||
var extraModule = require('./extra');
|
import { md, updateLastChange, finishView } from './extra';
|
||||||
var md = extraModule.md;
|
|
||||||
var updateLastChange = extraModule.updateLastChange;
|
|
||||||
var finishView = extraModule.finishView;
|
|
||||||
|
|
||||||
var preventXSS = require('./render').preventXSS;
|
import { preventXSS } from './render';
|
||||||
|
|
||||||
var body = $(".slides").text();
|
const body = $(".slides").text();
|
||||||
|
|
||||||
createtime = lastchangeui.time.attr('data-createtime');
|
createtime = lastchangeui.time.attr('data-createtime');
|
||||||
lastchangetime = lastchangeui.time.attr('data-updatetime');
|
lastchangetime = lastchangeui.time.attr('data-updatetime');
|
||||||
updateLastChange();
|
updateLastChange();
|
||||||
var url = window.location.pathname;
|
const url = window.location.pathname;
|
||||||
$('.ui-edit').attr('href', url + '/edit');
|
$('.ui-edit').attr('href', `${url}/edit`);
|
||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(() => {
|
||||||
//tooltip
|
//tooltip
|
||||||
$('[data-toggle="tooltip"]').tooltip();
|
$('[data-toggle="tooltip"]').tooltip();
|
||||||
});
|
});
|
||||||
|
|
||||||
function extend() {
|
function extend() {
|
||||||
var target = {};
|
const target = {};
|
||||||
for (var i = 0; i < arguments.length; i++) {
|
|
||||||
var source = arguments[i];
|
for (const source of arguments) {
|
||||||
for (var key in source) {
|
for (const key in source) {
|
||||||
if (source.hasOwnProperty(key)) {
|
if (source.hasOwnProperty(key)) {
|
||||||
target[key] = source[key];
|
target[key] = source[key];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return target;
|
return target;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Optional libraries used to extend on reveal.js
|
// Optional libraries used to extend on reveal.js
|
||||||
var deps = [{
|
const deps = [{
|
||||||
src: serverurl + '/build/reveal.js/lib/js/classList.js',
|
src: `${serverurl}/build/reveal.js/lib/js/classList.js`,
|
||||||
condition: function() {
|
condition() {
|
||||||
return !document.body.classList;
|
return !document.body.classList;
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
src: serverurl + '/js/reveal-markdown.js',
|
src: `${serverurl}/js/reveal-markdown.js`,
|
||||||
callback: function () {
|
callback() {
|
||||||
var slideOptions = {
|
const slideOptions = {
|
||||||
separator: '^(\r\n?|\n)---(\r\n?|\n)$',
|
separator: '^(\r\n?|\n)---(\r\n?|\n)$',
|
||||||
verticalSeparator: '^(\r\n?|\n)----(\r\n?|\n)$'
|
verticalSeparator: '^(\r\n?|\n)----(\r\n?|\n)$'
|
||||||
};
|
};
|
||||||
var slides = RevealMarkdown.slidify(body, slideOptions);
|
const slides = RevealMarkdown.slidify(body, slideOptions);
|
||||||
$(".slides").html(slides);
|
$(".slides").html(slides);
|
||||||
RevealMarkdown.initialize();
|
RevealMarkdown.initialize();
|
||||||
$(".slides").show();
|
$(".slides").show();
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
src: serverurl + '/build/reveal.js/plugin/notes/notes.js',
|
src: `${serverurl}/build/reveal.js/plugin/notes/notes.js`,
|
||||||
async: true,
|
async: true,
|
||||||
condition: function() {
|
condition() {
|
||||||
return !!document.body.classList;
|
return !!document.body.classList;
|
||||||
}
|
}
|
||||||
}];
|
}];
|
||||||
|
|
||||||
// default options to init reveal.js
|
// default options to init reveal.js
|
||||||
var defaultOptions = {
|
const defaultOptions = {
|
||||||
controls: true,
|
controls: true,
|
||||||
progress: true,
|
progress: true,
|
||||||
slideNumber: true,
|
slideNumber: true,
|
||||||
|
@ -72,10 +70,10 @@ var defaultOptions = {
|
||||||
};
|
};
|
||||||
|
|
||||||
// options from yaml meta
|
// options from yaml meta
|
||||||
var meta = JSON.parse($("#meta").text());
|
const meta = JSON.parse($("#meta").text());
|
||||||
var options = meta.slideOptions || {};
|
var options = meta.slideOptions || {};
|
||||||
|
|
||||||
var view = $('.reveal');
|
const view = $('.reveal');
|
||||||
|
|
||||||
//text language
|
//text language
|
||||||
if (meta.lang && typeof meta.lang == "string") {
|
if (meta.lang && typeof meta.lang == "string") {
|
||||||
|
@ -97,24 +95,24 @@ if (typeof meta.breaks === 'boolean' && !meta.breaks) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// options from URL query string
|
// options from URL query string
|
||||||
var queryOptions = Reveal.getQueryHash() || {};
|
const queryOptions = Reveal.getQueryHash() || {};
|
||||||
|
|
||||||
var options = extend(defaultOptions, options, queryOptions);
|
var options = extend(defaultOptions, options, queryOptions);
|
||||||
Reveal.initialize(options);
|
Reveal.initialize(options);
|
||||||
|
|
||||||
window.viewAjaxCallback = function () {
|
window.viewAjaxCallback = () => {
|
||||||
Reveal.layout();
|
Reveal.layout();
|
||||||
};
|
};
|
||||||
|
|
||||||
function renderSlide(event) {
|
function renderSlide(event) {
|
||||||
if (window.location.search.match( /print-pdf/gi )) {
|
if (window.location.search.match( /print-pdf/gi )) {
|
||||||
var slides = $('.slides');
|
const slides = $('.slides');
|
||||||
var title = document.title;
|
var title = document.title;
|
||||||
finishView(slides);
|
finishView(slides);
|
||||||
document.title = title;
|
document.title = title;
|
||||||
Reveal.layout();
|
Reveal.layout();
|
||||||
} else {
|
} else {
|
||||||
var markdown = $(event.currentSlide);
|
const markdown = $(event.currentSlide);
|
||||||
if (!markdown.attr('data-rendered')) {
|
if (!markdown.attr('data-rendered')) {
|
||||||
var title = document.title;
|
var title = document.title;
|
||||||
finishView(markdown);
|
finishView(markdown);
|
||||||
|
@ -125,16 +123,16 @@ function renderSlide(event) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Reveal.addEventListener('ready', function (event) {
|
Reveal.addEventListener('ready', event => {
|
||||||
renderSlide(event);
|
renderSlide(event);
|
||||||
var markdown = $(event.currentSlide);
|
const markdown = $(event.currentSlide);
|
||||||
// force browser redraw
|
// force browser redraw
|
||||||
setTimeout(function () {
|
setTimeout(() => {
|
||||||
markdown.hide().show(0);
|
markdown.hide().show(0);
|
||||||
}, 0);
|
}, 0);
|
||||||
});
|
});
|
||||||
Reveal.addEventListener('slidechanged', renderSlide);
|
Reveal.addEventListener('slidechanged', renderSlide);
|
||||||
|
|
||||||
var isMacLike = navigator.platform.match(/(Mac|iPhone|iPod|iPad)/i) ? true : false;
|
const isMacLike = navigator.platform.match(/(Mac|iPhone|iPod|iPad)/i) ? true : false;
|
||||||
|
|
||||||
if (!isMacLike) $('.container').addClass('hidescrollbar');
|
if (!isMacLike) $('.container').addClass('hidescrollbar');
|
||||||
|
|
Loading…
Reference in a new issue