src/js/widgets/slideShareWidget.js
changeset 944 8a6c9e3d0158
parent 907 27b248a13355
parent 943 a882cc0c936f
child 945 7d9f6fd6f904
--- a/src/js/widgets/slideShareWidget.js	Thu May 24 15:05:47 2012 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,199 +0,0 @@
-
-/** A widget to display slide show from embed slide share */
-IriSP.SlideShareWidget = function(Popcorn, config, Serializer) {
-  IriSP.Widget.call(this, Popcorn, config, Serializer);
-  // Default flash embed size
-  this.embed_width = 425;
-  this.embed_height = 355;
-  if(this._config.embed_width){
-	  this.embed_width = this._config.embed_width;
-  }
-  if(this._config.embed_height){
-	  this.embed_height = this._config.embed_height;
-  }
-};
-
-IriSP.SlideShareWidget.prototype = new IriSP.Widget();
-
-IriSP.SlideShareWidget.prototype.draw = function() {
-  var self = this;
-  
-  // If the div supposed to host the slides does not exist, we cancel
-  if(this.selector.length==0){
-	  if(console){ if(console.log){ console.log("No div for slideshare widget, this widget is canceled. id = " + this._id); } }
-	  return;
-  }
-  var templ = Mustache.to_html(IriSP.slideShareWidget_template);
-  this.selector.append(templ);
-  
-  // global variables used to keep the position and width of the zone.  
-  this.zoneLeft = 0;
-  this.zoneWidth = 0;
-  // global variable to save the last slide url
-  this.lastSSFullUrl = "";
-  this.lastSSUrl = "";
-  this.lastSSId = "";
-  this.containerDiv = this.selector.find('.SlideShareContainer');
-  
-  // Synchro management
-  this._disableUpdate = false;
-  this.buttonsDiv = this.selector.find('.SlideShareButtons');
-  this.buttonsDiv.width(this.embed_width - 2); // -2 because of css borders 328 -> 235px
-  this.buttonsDiv.find('.left_icon').css("margin-left",(this.embed_width-96)+"px");
-  this.buttonsDiv.find('.ss_sync_on').click(function(event) { self.unSyncHandler.call(self, event); });
-  this.buttonsDiv.find('.ss_sync_off').click(function(event) { self.syncHandler.call(self, event); });
-  this.buttonsDiv.find('.ss_sync_off').hide();
-  this.buttonsDiv.hide();
-  
-  // Update the slide from timeupdate event
-  this._Popcorn.listen("timeupdate", IriSP.wrap(this, this.slideShareUpdater));
-  
-  this._Popcorn.listen("IriSP.SlideShareWidget.show", IriSP.wrap(this, this.show));
-  this._Popcorn.listen("IriSP.SlideShareWidget.hide", IriSP.wrap(this, this.hide));
-  
-  // Get data from "slideshare" cutting/annotation-type
-  var annotations = this._serializer._data.annotations;
-  var view_type = this._serializer.getSlideShareType();
-  if(typeof(view_type) === "undefined") {
-	  if(console){ if(console.log){ console.log("No annotation-type for slideshare widget, this widget is canceled and the container is visible hidden."); } }
-	  this.selector.hide();
-	  return;
-  }
-  var i = 0;
-  this.segments_slides = [];
-  var nb_annot = annotations.length;
-  for (i = 0; i < nb_annot; i++) {
-    var annotation = annotations[i];
-    /* filter the annotations whose type is not the one we want */
-    if (view_type != "" && typeof(annotation.meta) !== "undefined" && typeof(annotation.meta["id-ref"]) !== "undefined"
-          && annotation.meta["id-ref"] != view_type) {
-        continue;
-    }
-    this.segments_slides.push(annotation);
-  }
-};
-
-/* update the slider and the position marker as time passes */
-IriSP.SlideShareWidget.prototype.slideShareUpdater = function() {
-  // If it is asked not to synchronize, we do nothing
-  if(this._disableUpdate)
-    return;
-  
-  var self = this;
-  
-  // We search if a segments_slides is in the current timecode
-  var time = this._Popcorn.currentTime() * 1000;
-  var nb_slides = this.segments_slides.length;
-  var forceEmpty = false;
-  for (i = 0; i < nb_slides; i++) {
-    var segment_slide = this.segments_slides[i];
-    if(segment_slide.begin<time && time<segment_slide.end){
-    	if(segment_slide.content.description!=this.lastSSFullUrl){
-			// The url is like http://stuf.com#X and X is the slide number. So we split and save it.
-    		this.lastSSFullUrl = segment_slide.content.description;
-    		if(this.lastSSFullUrl==""){
-    			// We force unload
-    			forceEmpty = true;
-    		}
-    		else{
-    			this.buttonsDiv.show();
-	    		var description_ar = this.lastSSFullUrl.split("#id=");
-	    		var slideNb = 1;
-	    		if(description_ar[1]){
-	    			slideNb = description_ar[1];
-	    		}
-	    		if(description_ar[0]!=this.lastSSUrl && description_ar[0].substring(0,7)=="http://"){
-	    			this.lastSSUrl = description_ar[0];
-		    		// We have the slideshare oembed url (version 1 because we want the flash embed).
-		    		var url = "http://www.slideshare.net/api/oembed/1?format=jsonp&url=" + this.lastSSUrl;
-		    		
-		    		IriSP.jQuery.ajax({
-						url: url,
-						dataType: "jsonp",
-						success: function(data) {
-							self.lastSSId = data["slideshow_id"];
-							embed_code = data["html"];
-							// If slideNb exist, we hack the embed code to add ?startSlide=X
-							if(slideNb){
-								embed_code = embed_code.replace(new RegExp("ssplayer2.swf\\?","g"), "ssplayer2.swf?startSlide=" + slideNb + "&");
-							}
-							// The embed always send the default width and height, so we can easily change them.
-							embed_code = embed_code.replace(new RegExp("425","g"), self.embed_width);
-							embed_code = embed_code.replace(new RegExp("355","g"), self.embed_height);
-							// We hide the title upon the slides.
-							embed_code = embed_code.replace(new RegExp("block"), "none");
-							self.containerDiv.html(embed_code);
-						},
-						error: function(jqXHR, textStatus, errorThrown){
-							self.containerDiv.html("Error while downloading the slideshow. jqXHR = " + jqXHR + ", textStatus = " + textStatus + ", errorThrown = " + errorThrown);
-						}
-		    		});
-	    		}
-	    		else if(description_ar[0]!=this.lastSSUrl){
-	    			this.lastSSUrl = description_ar[0];
-	    			this.lastSSId = "";
-		    		// In this case, we only have an id that is meant to build the flash embed
-					embed_code = '<div style="width:425px"><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=' + this.lastSSUrl + '&startSlide=' + slideNb + '" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" wmode="transparent" width="'+this.embed_width+'" height="'+this.embed_height+'"></embed></div>';
-					this.containerDiv.html(embed_code);
-	    		}
-	    		else{
-	    			// If the presentation was already loaded, we only use the ss js api to load the wanted slide number
-	    			var embed = null;
-	    			if(this.lastSSId!=""){
-	    				// If the presentation was loaded from a public url, we get the div from its id.
-						embed = document.getElementsByName("__sse" + this.lastSSId)[0];
-	    			}
-	    			else if(this.lastSSUrl.substring(0,7)!="http://"){
-	    				// If the presentation was loaded from a private id, we get the div from dom tree.
-	    				embed = this.containerDiv.children()[0].children[0];
-	    			}
-					if(embed){
-						embed.jumpTo(parseInt(slideNb));
-					}
-	    		}
-	    		return;
-    		}
-    	}
-    }
-  }
-  if(forceEmpty==true){
-	this.lastSSFullUrl = "";
-	this.lastSSUrl = "";
-	this.lastSSId = "";
-  	this.containerDiv.html("");
-  	this.buttonsDiv.hide();
-  }
-
-};
-
-// Functions to stop or trigger sync between timeupdate event and slides        
-IriSP.SlideShareWidget.prototype.unSyncHandler = function() {
-	//console.log("slideShare NO SYNC !");
-	this._disableUpdate = true;
-	this.buttonsDiv.find('.ss_sync_on').hide();
-	this.buttonsDiv.find('.ss_sync_off').show();
-};
-IriSP.SlideShareWidget.prototype.syncHandler = function() {
-	//console.log("slideShare SYNC PLEASE !");
-	this._disableUpdate = false;
-	this.buttonsDiv.find('.ss_sync_on').show();
-	this.buttonsDiv.find('.ss_sync_off').hide();
-};
-
-
-/** responds to an "IriSP.SlideShareWidget.position" message
-    @param params an array with the first element being the left distance in
-           percents and the second element the width of the slice in pixels
-*/        
-IriSP.SlideShareWidget.prototype.positionSlideShareHandler = function(params) {
-  //console.log("positionSlideShareHandler");
-};
-
-
-IriSP.SlideShareWidget.prototype.show = function() {
-  this.selector.show();
-};
-
-IriSP.SlideShareWidget.prototype.hide = function() {
-  this.selector.hide();
-};