X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=simpleWebSlides.js;h=90634bc33df5cfc38086538620aa2571e1b54d0b;hb=e4360bf68f4a6a3ad04a7e566c3933b7ec4454ca;hp=6229a74fb7b68d420e6c0d58670f70cbe004c3f4;hpb=8c3cd44b47743bc0918e35b14e262563589c9da3;p=hacks%2FsimpleWebSlides.git diff --git a/simpleWebSlides.js b/simpleWebSlides.js index 6229a74..90634bc 100644 --- a/simpleWebSlides.js +++ b/simpleWebSlides.js @@ -105,7 +105,6 @@ SWS.Templates = new function () { self.objectActivate = function (o) { if (!(o.hasClass("sws-active-object"))){ o.removeClass("sws-inactive-object").addClass("sws-active-object"); - o.css({'visibility':'visible'}); return true; }; return false; @@ -153,8 +152,12 @@ SWS.Effects = new function () { var self = this; self.objectDeactivateFadeOut = function (o) { - o.animate({'opacity': '0.1'}, 200, - function () { SWS.Templates.objectDeactivate(o)}); + if (o.is("embed")) return; + o.animate({'opacity': '0'}, 200, + function () { + + SWS.Templates.objectDeactivate(o); + }); }; self.objectActivateFadeIn = function (o) { @@ -168,11 +171,11 @@ SWS.Effects = new function () { self.slideChangeHorizontalFlip = function (from, to){ var f = SWS.Presentation.getSlide(from); var t = SWS.Presentation.getSlide(to); - f.animate({ 'left': '50%', 'width': '0pt', 'opacity':'0.2' }, 150, + f.animate({ 'left': '50%', 'width': '0pt', 'opacity':'0' }, 150, function () { SWS.Templates.slideDeactivate(f); f.css({'left':'0%', 'width': '100%'}); - t.css({ 'left': '50%', 'width': '0pt','opacity':'0.3' }); + t.css({ 'left': '50%', 'width': '0pt','opacity':'0' }); SWS.Templates.slideActivate(t); t.animate({'left':'0%', 'width': '100%','opacity':'1'}); }); @@ -180,10 +183,10 @@ SWS.Effects = new function () { self.slideChangeFadeOutIn = function (from, to) { var f = SWS.Presentation.getSlide(from); var t = SWS.Presentation.getSlide(to); - f.animate({ 'opacity': '0.4'}, 150, + f.animate({ 'opacity': '0'}, 150, function () { SWS.Templates.slideDeactivate(f); SWS.Templates.slideActivate(t); - t.css('opacity', '0.5'); + t.css('opacity', '0'); t.animate({ 'opacity': '1'}, 150); }); }; @@ -195,14 +198,14 @@ SWS.Effects = new function () { t.css('opacity', '1'); SWS.Templates.slideActivate(t); f.animate({ 'left': '-100%' }, 250, function () { SWS.Templates.slideDeactivate(f); - f.css('opacity', '0.6'); + f.css('opacity', '0'); t.animate({ 'left': '0%' }, 250); }); } else { t.css('left', '-100%'); SWS.Templates.slideActivate(t); f.animate({ 'left': '100%' }, 250, function () { SWS.Templates.slideDeactivate(f); - f.css('opacity', '0.7'); + f.css('opacity', '0'); }); t.css('opacity', '1'); t.animate({ 'left': '0%' }, 250); @@ -291,8 +294,9 @@ SWS.Presentation = new function () { if (_initialized) return; //jQuery does not seem to work well //on a partial DOM - - var slide_num = $(".sws-slide").length - 1; + var slides = $(".sws-slide"); + var h1s = $("body").children("h1"); + var slide_num = slides.add(h1s).length - 1; SWS.Utils.push2(_slide_callbacks, slide_num,{ 'fn': f, 'frame': i }); @@ -351,8 +355,8 @@ SWS.Presentation = new function () { var cur = info.current; var custom = info.custom; var real_slide = to_slide.find(".sws-slide"); - - real_slide.find("*").andSelf().each(function (i){ + var dont_touch = real_slide.find("sws-protect").find("*").addBack(); + real_slide.find("*").addBack().not(dont_touch).each(function (i){ var frameset = $(this).data("sws-frame-set") || {}; if (frameset[cur]) SWS.Config['sws-object-activate']($(this)); @@ -360,15 +364,20 @@ SWS.Presentation = new function () { SWS.Config['sws-object-deactivate']($(this)); }); - var callbacks; - if (callbacks = info.callbacks.at_frame[self.getCurrentFrame()]){ - for (var k = 0; k < callbacks.length; k++) - callbacks[k]($(to_slide)); - }; var all = $(from_slide).add(to_slide); all.find("*").addBack().promise().done(function() { - _disable_input_events = false; + var callbacks; + //execute callbacks when all elements are finished transitioning + if (callbacks = info.callbacks.at_frame[self.getCurrentFrame()]){ + for (var k = 0; k < callbacks.length; k++) + callbacks[k]($(to_slide)); + }; + all.find("*").addBack().promise().done(function() { + //wait for all elements to finish transitionning, in case a callback animate something + //an denable _input_events again. + _disable_input_events = false; + }); }); }; @@ -398,7 +407,6 @@ SWS.Presentation = new function () { $(".sws-canvas").each(function(i) { var canvas = $($(".sws-canvas")[i]); var infos = canvas.data("sws-frame-info"); - console.log(infos); _total_steps += infos.last + 1; }); return _total_steps; @@ -469,13 +477,14 @@ SWS.Presentation = new function () { var loop; loop = function () { if (steps >= 0) { + //Crazy workaround for chromium + ($("link.sws-theme[rel='stylesheet']")[0]).disabled = false; $(".sws-canvas").find("*").addBack().promise().done(function() { var percent = ((total_steps - steps) / total_steps) * 100; $("#sws-percent-progress").text(Math.round(percent)); - console.log ("Step: " + steps); SWS.Config['sws-slide-change'] = SWS.Templates.slideChange; self.refresh(); - $($(".sws-canvas")[self.getCurrentSlide()]).css( { 'opacity': 1 }); + $($(".sws-canvas")[self.getCurrentSlide()]).css('opacity', 1 ); self.next(); steps--; loop(); @@ -483,16 +492,82 @@ SWS.Presentation = new function () { } else { $("#sws-percent-progress").text(100); progress.remove(); - window.print(); } }; loop(); } + self.buildFullTOC = function () { + + var build_sections = function (doc) { + var res = []; + var h1s = doc.find("body").first().children("h1"); + var slides = doc.find("body").first().children(".sws-slide"); + var slide_num = 1; + var collection = h1s.add(slides); + collection.each (function () { + if ($(this).is("h1")) { + res.push({ 'title' : $(this).text(), + 'slide' : slide_num }); + } else { + slide_num++; + } + }); + return res; + }; + + var toc = []; + + var append = function (a,e) { + return a.push(e); + }; + var prepend = function (a,e) { + return a.unshift(e); + }; + + var loop = function (doc, dir, add, ignoreFirst) { + if (ignoreFirst !== true) { + var this_toc = { 'title' : doc.find("title").first().text(), + 'sections' : build_sections(doc) }; + add(toc, this_toc); + }; + var url = doc.find(dir).first().attr("href"); + if (!SWS.Utils.isUndefined(url) && url != "") { + $.ajax({ 'url' : url, 'async' : false ,'success' : function (page) { + loop ($(page), dir, add, false); + }}); + }; + }; + loop ($(document), ".sws-previous", prepend, false); + return toc; + + }; + + + + var _xstart = 0; self.inputHandler = function (event) { - if (_disable_input_events || _print_mode ) return; - switch (event.which) { + if (_disable_input_events || _print_mode) return; + var code = 0; + switch (event.type) { + case 'touchstart': + _xstart = event.changedTouches[0].clientX; + return; + case 'touchend': + + var dist = event.changedTouches[0].clientX - _xstart; + if (dist > 20) code = 37 + else if (dist < -20) code = 39 + else if (!$("#sws-control-panel-canvas").is(":visible")) code = 67; + break; + case 'keydown': + code = event.which; + break; + default: + return; + }; + switch (code) { case 36:/* Home */ self.setCurrentSlide(self.firstSlide()); break; @@ -500,7 +575,6 @@ SWS.Presentation = new function () { case 35:/* End */ self.setCurrentSlide(self.lastSlide()); break; - case 32: /* space */ case 34: /* PgDown */ case 39: /* -> */ @@ -520,15 +594,16 @@ SWS.Presentation = new function () { self.previousSlide(); break; case 83: /* s */ - self.cycleStyle(); + self.cycleStyle(); return; case 67: /* c */ $("#sws-control-panel-canvas").toggle(); + default: return; }; self.refresh(); - }; +}; @@ -561,7 +636,7 @@ SWS.Presentation = new function () { } }; - var specials = null; + var specials = $([]); slide.find('*[class*="sws-onframe-"]').each(function(_){ var cls = $(this).attr('class'); @@ -574,12 +649,10 @@ SWS.Presentation = new function () { for(var f in o) if (f > last_frame) last_frame = f; $(this).find("*").andSelf().each(function(_){ - if (!SWS.Utils.isEmpty(o)) + if (!SWS.Utils.isEmpty(o)){ $(this).data("sws-frame-set", o); - if (specials) - specials.add($(this)); - else - specials = $(this); + } + specials = specials.add($(this)); }); }; }); @@ -601,11 +674,14 @@ SWS.Presentation = new function () { }; /* Forces redrawing the page without reloading */ - self.redraw = function () { - $("body").hide(); - $("body").show(); + self.redraw = function (f) { + if (SWS.Utils.isUndefined(f)) + $("body").hide().show(400, function () { + $("body").css("display","block"); + if (!SWS.Utils.isUndefined(f)) + f(); + }); }; - self.changeAspect = function() { $("html").removeClass("sws-aspect-4-3") .removeClass("sws-aspect-16-9") @@ -614,6 +690,14 @@ SWS.Presentation = new function () { self.redraw(); }; + self.getCurrentTheme = function () { + var l = $("link.sws-theme[rel='stylesheet']")[0]; + + if (l) { + return l.title; + } else + return "" + }; self.changeTheme = function (name) { var theme_name; @@ -621,26 +705,27 @@ SWS.Presentation = new function () { theme_name = $("#sws-theme-select").val() else theme_name = name; + _current_theme = theme_name; $("link.sws-theme").each (function (i) { - var e = $(this); - var title = e.attr("title"); + var e = this; + var title = e.title; if (title == theme_name) { - e[0].rel = "stylesheet"; - e[0].disabled = false; - e[0].media="all"; - + e.rel = "stylesheet"; + e.disabled = false; + e.media="all"; } else { - e[0].rel = "alternate stylesheet"; - e[0].disabled = true; - e[0].media="all"; + e.rel = "alternate stylesheet"; + e.disabled = true; + e.media="all"; }; }); self.redraw(); + }; self.openPrint = function () { - window.open("?mode=print&theme=" + _current_theme); + window.open ("?mode=print&theme=" + self.getCurrentTheme()); } var _fullscreen_icon_on = ""; var _fullscreen_icon_off = ""; @@ -674,35 +759,63 @@ SWS.Presentation = new function () { $("html").addClass("sws-display"); - $(window).resize(self.redraw); - + //$(window).resize(self.redraw); - $(window).bind('storage', function (e) { - console.log(e); - }); + var slides = $(".sws-slide"); + var h1s = $("body").children("h1"); + var slide_num = slides.add(h1s).length - 1; - _total_slides = $(".sws-slide").length; + _total_slides = $(".sws-slide").add($("body").children("h1")).length; - $(document).keydown(self.inputHandler); + var cur = self.getCurrentSlide(); + var toc = self.buildFullTOC(); + var common_html = "

Plan

"; + $(this).after(this_html); + }); + $(".sws-slide").each(function (i) { - var cur = self.getCurrentSlide(); - $(".sws-slide").each (function (i) { var par = $(this).parent(); + $(this).remove(); var canvas = $('
'); if (!($(this).hasClass("sws-option-noheader"))) { - canvas.append($('

')); + canvas.append($('
')); }; - + if (!$(this).hasClass("sws-cover")) { + var title = $($(this).find("h1")[0]); + var title_div = $('
'); + title_div.append(title); + canvas.append(title_div); + } var inner = $('
'); var content = $('
'); $(this).find('script[type="text/javascript"]').remove(); content.append($(this)); inner.append(content); - inner.append($('
')); canvas.append(inner); if (!($(this).hasClass("sws-option-nofooter"))) { @@ -724,8 +837,6 @@ SWS.Presentation = new function () { }); - - // Initialize the control panel $("body").append($(SWS.Templates.controlPanel)); // Fill the theme switcher @@ -756,22 +867,28 @@ SWS.Presentation = new function () { _update_ui(); _slide_callbacks = null; /* avoid a leak */ - var passed_theme = SWS.Utils.getParameterByName("theme"); - if (passed_theme == "") - self.changeTheme(); - else - self.changeTheme(passed_theme); - if (SWS.Utils.getParameterByName("mode") == "print") { - self.printMode(); - } - else - self.refresh(); - - _initialized = true; + //workaround weird chrome CSS loading bug + var f = + function () { + if (passed_theme == "") + self.changeTheme(); + else + self.changeTheme(passed_theme); + if (SWS.Utils.getParameterByName("mode") == "print") { + self.printMode(); + } + else + self.refresh(); + $(document).keydown(self.inputHandler); + document.body.addEventListener('touchstart',self.inputHandler, false); + document.body.addEventListener('touchend',self.inputHandler, false); + _initialized = true; + }; + setTimeout(f, 100); }; };