src/js/widgets/playerWidget.js
author hamidouk
Wed, 16 Nov 2011 12:30:04 +0100
branchpopcorn-port
changeset 255 af3adcf7cb20
parent 251 116c86db7e17
child 261 7e7a44d82a81
permissions -rw-r--r--
added an elapsed time display to the player widget. Note: ldtplayer.css seems to have totally changed because I replaced tab with spaces.

IriSP.PlayerWidget = function(Popcorn, config, Serializer) {
  IriSP.Widget.call(this, Popcorn, config, Serializer);
  
  this._searchBlockOpen = false;
  this._searchLastValue = "";
};

IriSP.PlayerWidget.prototype = new IriSP.Widget();

IriSP.PlayerWidget.prototype.draw = function() {
  var self = this;
  var width = this.width;
	var height = this.height;
	var heightS = this.height-20;
	
  var searchBox = Mustache.to_html(IriSP.search_template);
  this.selector.append(searchBox);
  
	var Player_templ = Mustache.to_html(IriSP.player_template, {"share_template" : IriSP.share_template});
  this.selector.append(Player_templ);		
    
	this.selector.children(".Ldt-controler").width(width - 10);
	  		
  this.selector.children(".Ldt-controler").show();
    
  // handle clicks by the user on the video.
  this._Popcorn.listen("play", IriSP.wrap(this, this.playButtonUpdater));
  this._Popcorn.listen("pause", IriSP.wrap(this, this.playButtonUpdater));
  this._Popcorn.listen("timeupdate", IriSP.wrap(this, this.timeDisplayUpdater));
  
  
  this.selector.find(".ldt-CtrlPlay").button({
    icons: {
      primary: 'ui-icon-play'
    },
    text: false
  }).click(function() { self.playHandler.call(self); })
    .next().button({
    icons: {
      primary: 'ui-icon-seek-next'
    },
     text: false
  });
  
  this.selector.find(".ldt-CtrlSearch").button({
    icons: {
      primary: 'ui-icon-search'//,
      //secondary: 'ui-icon-volume-off'
    },
    text: false
  }).click(function() { self.searchButtonHandler.call(self); });
  
  this.selector.find('.ldt-CtrlSound').button({
    icons: {
      primary: 'ui-icon-volume-on'
    },
     text: false
  }).click(function() { self.muteHandler.call(self); } );

  this.selector.find(".ldt-CtrlPlay").attr( "style", "background-color:#CD21C24;" );
};

/* Update the elasped time div */
IriSP.PlayerWidget.prototype.timeDisplayUpdater = function() {
  
  if (this._previousSecond === undefined)
    this._previousSecond = this._Popcorn.roundTime();
  
  else {
    /* we're still in the same second, so it's not necessary to update time */
    if (this._Popcorn.roundTime() == this._previousSecond)
      return;
      
  }
  
  // we get it at each call because it may change.
  var duration = +this._serializer.currentMedia().meta["dc:duration"]; 
  var totalTime = IriSP.secondsToTime(duration);
  var elapsedTime = IriSP.secondsToTime(this._Popcorn.currentTime());
  
  var timeTemplate = "{{hours}}:{{minutes}}:{{seconds}}";
  this.selector.find(".ElapsedTime").html(Mustache.to_html(timeTemplate, elapsedTime));
  this.selector.find(".TotalTime").html(Mustache.to_html(timeTemplate, totalTime));
  
  this._previousSecond = this._Popcorn.roundTime();
};

/* update the icon of the button - separate function from playHandler
   because in some cases (for instance, when the user directly clicks on
   the jwplayer window) we have to change the icon without playing/pausing
*/
IriSP.PlayerWidget.prototype.playButtonUpdater = function() {
  var status = this._Popcorn.media.paused;
  
  if ( status == true ){        
    this.selector.find(".ui-icon-play").css( "background-position", "-16px -160px" );
    this.selector.find(".ldt-CtrlPlay").attr("title", "Play");
  } else {
    this.selector.find(".ui-icon-play").css( "background-position","0px -160px" );
    this.selector.find(".ldt-CtrlPlay").attr("title", "Pause");
  }  
};


IriSP.PlayerWidget.prototype.playHandler = function() {
  var status = this._Popcorn.media.paused;
  
  this.playButtonUpdater();
  
  if ( status == true ){        
    this._Popcorn.play();   
  } else {
    this._Popcorn.pause();
  }  
};

IriSP.PlayerWidget.prototype.muteHandler = function() {
  if (!this._Popcorn.muted()) {    
      this._Popcorn.mute(true);
      this.selector.find(" .ui-icon-volume-on ").css("background-position", "-130px -160px");    
    } else {
      this._Popcorn.mute(false);
      this.selector.find( ".ui-icon-volume-on" ).css("background-position", "-144px -160px" );
    }
};

IriSP.PlayerWidget.prototype.searchButtonHandler = function() {
    var self = this;

    /* show the search field if it is not shown */
  	if ( this._searchBlockOpen == false ) {
      this.selector.find( ".ui-icon-search" ).css( "background-position", "-144px -112px" );
      
      this.selector.find(".LdtSearch").show(100);
      
      this.selector.find(".LdtSearchInput").css('background-color','#fff');
      this.selector.find(".LdtSearchInput").focus();
      this.selector.find(".LdtSearchInput").attr('value', this._searchLastValue);      
      this._Popcorn.trigger("IriSP.search", this._searchLastValue); // trigger the search to make it more natural.
      
      this._searchBlockOpen = true;           
      this.selector.find(".LdtSearchInput").bind('keyup', null, function() { self.searchHandler.call(self); } );
      
      // tell the world the field is open
      this._Popcorn.trigger("IriSP.search.open");
      
	} else {
      this._searchLastValue = this.selector.find(".LdtSearchInput").attr('value');
      this.selector.find(".LdtSearchInput").attr('value','');
      this.selector.find(".ui-icon-search").css("background-position","-160px -112px");
      this.selector.find(".LdtSearch").hide(100);
      
      // unbind the watcher event.
      this.selector.find(".LdtSearchInput").unbind('keypress set');
      this._searchBlockOpen = false;
      
      this._Popcorn.trigger("IriSP.search.closed");
  }
};

/* this handler is called whenever the content of the search
   field changes */
IriSP.PlayerWidget.prototype.searchHandler = function() {
  this._searchLastValue = this.selector.find(".LdtSearchInput").attr('value');
  
  // do nothing if the search field is empty, instead of highlighting everything.
  if (this._searchLastValue == "") {
    this._Popcorn.trigger("IriSP.search.cleared");
  } else {
    this._Popcorn.trigger("IriSP.search", this._searchLastValue);
  }
};

/*
  handler for the IriSP.search.found message, which is sent by some views when they
  highlight a match.
*/
IriSP.PlayerWidget.prototype.searchMatch = function() {
  this.selector.find(".LdtSearchInput").css('background-color','#e1ffe1');
}

/* the same, except that no value could be found */
IriSP.PlayerWidget.prototype.searchNoMatch = function() {
  this.selector.find(".LdtSearchInput").css('background-color','#e1ffe1');
}