src/js/widgets/createAnnotationWidget.js
author hamidouk
Thu, 12 Jan 2012 15:34:44 +0100
branchpopcorn-port
changeset 620 fe981f0aab71
parent 616 ff108c38a0c9
child 623 d8f107938feb
permissions -rw-r--r--
automatically position and show the sliceWidget under the current chapter.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
543
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
     1
IriSP.createAnnotationWidget = function(Popcorn, config, Serializer) {
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
     2
  IriSP.Widget.call(this, Popcorn, config, Serializer);
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
     3
  this._hidden = true;
547
5b58a108086a adding support for keywords.
hamidouk
parents: 543
diff changeset
     4
  this.keywords = IriSP.widgetsDefaults["createAnnotationWidget"].keywords;
553
10d08f43c534 widget works now more or less like in samuel's crea.
hamidouk
parents: 549
diff changeset
     5
  this.cinecast_version = IriSP.widgetsDefaults["createAnnotationWidget"].cinecast_version;
549
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
     6
  this.ids = {}; /* a dictionnary linking buttons ids to keywords */
543
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
     7
};
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
     8
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
     9
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
    10
IriSP.createAnnotationWidget.prototype = new IriSP.Widget();
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
    11
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
    12
IriSP.createAnnotationWidget.prototype.clear = function() {
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
    13
    this.selector.find(".Ldt-SaTitle").text("");
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
    14
    this.selector.find(".Ldt-SaDescription").text("");
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
    15
    this.selector.find(".Ldt-SaKeywordText").text("");
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
    16
};
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
    17
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
    18
IriSP.createAnnotationWidget.prototype.draw = function() {
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
    19
  var _this = this;
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
    20
553
10d08f43c534 widget works now more or less like in samuel's crea.
hamidouk
parents: 549
diff changeset
    21
  if (this.cinecast_version) {    
10d08f43c534 widget works now more or less like in samuel's crea.
hamidouk
parents: 549
diff changeset
    22
    var annotationMarkup = IriSP.templToHTML(IriSP.createAnnotationWidget_festivalCinecast_template);
10d08f43c534 widget works now more or less like in samuel's crea.
hamidouk
parents: 549
diff changeset
    23
  } else {
10d08f43c534 widget works now more or less like in samuel's crea.
hamidouk
parents: 549
diff changeset
    24
    var annotationMarkup = IriSP.templToHTML(IriSP.createAnnotationWidget_template);
10d08f43c534 widget works now more or less like in samuel's crea.
hamidouk
parents: 549
diff changeset
    25
  }
10d08f43c534 widget works now more or less like in samuel's crea.
hamidouk
parents: 549
diff changeset
    26
  
543
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
    27
	this.selector.append(annotationMarkup);
548
96a188138c20 refactored the code a bit.
hamidouk
parents: 547
diff changeset
    28
  
614
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    29
  if (!this.cinecast_version)
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    30
    this.selector.hide();
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    31
  
548
96a188138c20 refactored the code a bit.
hamidouk
parents: 547
diff changeset
    32
  for (var i = 0; i < this.keywords.length; i++) {
549
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    33
    var keyword = this.keywords[i];
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    34
    var id = IriSP.guid("button_");
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    35
    var templ = IriSP.templToHTML("<button id={{id}} class='Ldt-createAnnotation-absent-keyword'>{{keyword}}</button>", 
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    36
                                  {keyword: keyword, id: id});
548
96a188138c20 refactored the code a bit.
hamidouk
parents: 547
diff changeset
    37
                                  
549
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    38
    this.ids[keyword] = id; // save it for the function that handle textarea changes.
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    39
    
548
96a188138c20 refactored the code a bit.
hamidouk
parents: 547
diff changeset
    40
    this.selector.find(".Ldt-createAnnotation-keywords").append(templ);
549
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    41
    this.selector.find("#" + id).click(function(keyword) { return function() {
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    42
      var contents = _this.selector.find(".Ldt-createAnnotation-Description").val();
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    43
      if (contents.indexOf(keyword) != -1) {
614
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    44
        var newVal = contents.replace(" " + keyword, "");
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    45
        if (newVal == contents)
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    46
          newVal = contents.replace(keyword, "");
549
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    47
      } else {
611
d931a7d12519 append a small space before keywords
hamidouk
parents: 608
diff changeset
    48
        if (contents === "")
d931a7d12519 append a small space before keywords
hamidouk
parents: 608
diff changeset
    49
          var newVal = keyword;
d931a7d12519 append a small space before keywords
hamidouk
parents: 608
diff changeset
    50
        else
d931a7d12519 append a small space before keywords
hamidouk
parents: 608
diff changeset
    51
          var newVal = contents + " " + keyword;      
549
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    52
      }
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    53
      
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    54
      _this.selector.find(".Ldt-createAnnotation-Description").val(newVal);
570
244f04a9af85 a couple changes.
hamidouk
parents: 563
diff changeset
    55
      // we use a custom event because there's no simple way to test for a js
244f04a9af85 a couple changes.
hamidouk
parents: 563
diff changeset
    56
      // change in a textfield.
244f04a9af85 a couple changes.
hamidouk
parents: 563
diff changeset
    57
      _this.selector.find(".Ldt-createAnnotation-Description").trigger("js_mod");
549
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    58
      // also call our update function.
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    59
      _this.handleTextChanges();
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    60
    }
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    61
   }(keyword));
548
96a188138c20 refactored the code a bit.
hamidouk
parents: 547
diff changeset
    62
  }
96a188138c20 refactored the code a bit.
hamidouk
parents: 547
diff changeset
    63
  
549
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    64
  this.selector.find(".Ldt-createAnnotation-Description")
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
    65
               .bind("propertychange keyup input paste", IriSP.wrap(this, this.handleTextChanges));
614
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    66
               
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    67
  /* the cinecast version of the player is supposed to pause when the user clicks on the button */
620
fe981f0aab71 automatically position and show the sliceWidget under the current chapter.
hamidouk
parents: 616
diff changeset
    68
  if (this.cinecast_version) {
614
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    69
    this.selector.find(".Ldt-createAnnotation-Description")
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    70
                 .one("propertychange keyup input paste js_mod", 
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    71
                 function() { if (!_this._Popcorn.media.paused) _this._Popcorn.pause() });
620
fe981f0aab71 automatically position and show the sliceWidget under the current chapter.
hamidouk
parents: 616
diff changeset
    72
  }
614
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    73
  /* the cinecast version expects the user to comment on a defined segment.
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    74
     As the widget is always shown, we need a way to update it's content as
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    75
     time passes. We do this like we did with the annotationsWidget : we schedule
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    76
     a .code start function which will be called at the right time.
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    77
  */
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    78
  if (this.cinecast_version) {
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    79
    var legal_ids;
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    80
    if (typeof(this._serializer.getChapitrage()) !== "undefined")
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    81
      legal_id = this._serializer.getChapitrage();
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    82
    else 
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    83
      legal_id = this._serializer.getNonTweetIds()[0];
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    84
    
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    85
    var annotations = this._serializer._data.annotations;
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    86
    var i;
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    87
  
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    88
    for (i in annotations) {     
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    89
      var annotation = annotations[i];
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    90
      if (typeof(annotation.meta) !== "undefined" && typeof(annotation.meta["id-ref"]) !== "undefined"
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    91
            && legal_id !== annotation.meta["id-ref"]) {
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    92
          continue;
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    93
      }
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    94
      
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    95
      code = {start: annotation.begin / 1000, end: annotation.end / 1000,
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    96
              onStart: function(annotation) { return function() {
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    97
                      if (typeof(annotation.content) !== "undefined")
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    98
                        _this.selector.find(".Ldt-createAnnotation-Title").html(annotation.content.title);
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
    99
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   100
                      _this._currentAnnotation = annotation;
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   101
                      var beginTime = IriSP.msToTime(annotation.begin);
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   102
                      var endTime = IriSP.msToTime(annotation.end);
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   103
                      var timeTemplate = IriSP.templToHTML("- ({{begin}} - {{ end }})", {begin: beginTime, end: endTime });
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   104
                      _this.selector.find(".Ldt-createAnnotation-TimeFrame").html(timeTemplate);
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   105
              } }(annotation)
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   106
            };
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   107
      
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   108
      this._Popcorn.code(code);
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   109
    }
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   110
  }
543
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
   111
  
553
10d08f43c534 widget works now more or less like in samuel's crea.
hamidouk
parents: 549
diff changeset
   112
  this.selector.find(".Ldt-createAnnotation-submitButton").click(IriSP.wrap(this, this.handleButtonClick));
614
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   113
  
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   114
  if (!this.cinecast_version)
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   115
    this._Popcorn.listen("IriSP.PlayerWidget.AnnotateButton.clicked", 
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   116
                          IriSP.wrap(this, this.handleAnnotateSignal));  
543
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
   117
};
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
   118
620
fe981f0aab71 automatically position and show the sliceWidget under the current chapter.
hamidouk
parents: 616
diff changeset
   119
/** handles clicks on the annotate button. Works only for the non-cinecast version */
543
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
   120
IriSP.createAnnotationWidget.prototype.handleAnnotateSignal = function() {
620
fe981f0aab71 automatically position and show the sliceWidget under the current chapter.
hamidouk
parents: 616
diff changeset
   121
  
543
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
   122
  if (this._hidden == false) {
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
   123
    this.selector.hide();
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
   124
    this._hidden = true;
570
244f04a9af85 a couple changes.
hamidouk
parents: 563
diff changeset
   125
    
244f04a9af85 a couple changes.
hamidouk
parents: 563
diff changeset
   126
    // free the arrow.
244f04a9af85 a couple changes.
hamidouk
parents: 563
diff changeset
   127
    this._Popcorn.trigger("IriSP.ArrowWidget.releaseArrow");
620
fe981f0aab71 automatically position and show the sliceWidget under the current chapter.
hamidouk
parents: 616
diff changeset
   128
    this._Popcorn.trigger("IriSP.SliceWidget.hide");
fe981f0aab71 automatically position and show the sliceWidget under the current chapter.
hamidouk
parents: 616
diff changeset
   129
    
543
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
   130
  } else {
614
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   131
    this.showStartScreen();
543
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
   132
    this.selector.show();
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
   133
    this._hidden = false;
620
fe981f0aab71 automatically position and show the sliceWidget under the current chapter.
hamidouk
parents: 616
diff changeset
   134
    var currentTime = this._Popcorn.currentTime();
563
4816e3425933 block the arrow when the user is annotating.
hamidouk
parents: 562
diff changeset
   135
    
4816e3425933 block the arrow when the user is annotating.
hamidouk
parents: 562
diff changeset
   136
    // block the arrow.
4816e3425933 block the arrow when the user is annotating.
hamidouk
parents: 562
diff changeset
   137
    this._Popcorn.trigger("IriSP.ArrowWidget.blockArrow");
620
fe981f0aab71 automatically position and show the sliceWidget under the current chapter.
hamidouk
parents: 616
diff changeset
   138
    var duration = +this._serializer.currentMedia().meta["dc:duration"];
fe981f0aab71 automatically position and show the sliceWidget under the current chapter.
hamidouk
parents: 616
diff changeset
   139
    var currentChapter = this._serializer.currentChapitre(currentTime);
fe981f0aab71 automatically position and show the sliceWidget under the current chapter.
hamidouk
parents: 616
diff changeset
   140
    console.log(currentTime);
fe981f0aab71 automatically position and show the sliceWidget under the current chapter.
hamidouk
parents: 616
diff changeset
   141
    var left = (currentChapter.begin / duration) * this.selector.width();
fe981f0aab71 automatically position and show the sliceWidget under the current chapter.
hamidouk
parents: 616
diff changeset
   142
    var width = (currentChapter.end / duration) * this.selector.width() - left;
fe981f0aab71 automatically position and show the sliceWidget under the current chapter.
hamidouk
parents: 616
diff changeset
   143
    console.log([left, width]);
fe981f0aab71 automatically position and show the sliceWidget under the current chapter.
hamidouk
parents: 616
diff changeset
   144
    this._Popcorn.trigger("IriSP.SliceWidget.position", [left, width]);
fe981f0aab71 automatically position and show the sliceWidget under the current chapter.
hamidouk
parents: 616
diff changeset
   145
    this._Popcorn.trigger("IriSP.SliceWidget.show");
543
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
   146
  }
549
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   147
};
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   148
614
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   149
549
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   150
/** watch for changes in the textfield and change the buttons accordingly */
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   151
IriSP.createAnnotationWidget.prototype.handleTextChanges = function(event) {
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   152
  var contents = this.selector.find(".Ldt-createAnnotation-Description").val();
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   153
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   154
  for(var keyword in this.ids) {
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   155
  
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   156
    var id = this.ids[keyword];
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   157
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   158
    if (contents.indexOf(keyword) != -1) {
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   159
      /* the word is present in the textarea but the button is not toggled */
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   160
      if (this.selector.find("#" + id).hasClass("Ldt-createAnnotation-absent-keyword"))
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   161
          this.selector.find("#" + id).removeClass("Ldt-createAnnotation-absent-keyword")
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   162
                                      .addClass("Ldt-createAnnotation-present-keyword");      
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   163
    } else {
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   164
      /* the word is absent from the textarea but the button is toggled */
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   165
      if (this.selector.find("#" + id).hasClass("Ldt-createAnnotation-present-keyword")) {
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   166
          this.selector.find("#" + id).removeClass("Ldt-createAnnotation-present-keyword")
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   167
                                      .addClass("Ldt-createAnnotation-absent-keyword");
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   168
      }
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   169
    }
8abffd2de54a implemented correct button behaviour.
hamidouk
parents: 548
diff changeset
   170
  }
553
10d08f43c534 widget works now more or less like in samuel's crea.
hamidouk
parents: 549
diff changeset
   171
};
10d08f43c534 widget works now more or less like in samuel's crea.
hamidouk
parents: 549
diff changeset
   172
614
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   173
IriSP.createAnnotationWidget.prototype.showStartScreen = function() {
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   174
  this.selector.find(".Ldt-createAnnotation-DoubleBorder").children().show();
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   175
  this.selector.find("Ldt-createAnnotation-Description").val("");
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   176
  this.selector.find(".Ldt-createAnnotation-endScreen").hide();    
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   177
};
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   178
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   179
IriSP.createAnnotationWidget.prototype.showEndScreen = function() {
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   180
  this.selector.find(".Ldt-createAnnotation-DoubleBorder").children().hide();
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   181
  
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   182
  if (this.cinecast_version) {
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   183
    this.selector.find(".Ldt-createAnnotation-Title").parent().show();      
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   184
  }
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   185
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   186
  var twStatus = IriSP.mkTweetUrl(document.location.href);
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   187
  var gpStatus = IriSP.mkGplusUrl(document.location.href);
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   188
  var fbStatus = IriSP.mkFbUrl(document.location.href);
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   189
  
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   190
  this.selector.find(".Ldt-createAnnotation-endScreen-TweetLink").attr("href", twStatus);
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   191
  this.selector.find(".Ldt-createAnnotation-endScreen-FbLink").attr("href", fbStatus);
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   192
  this.selector.find(".Ldt-createAnnotation-endScreen-GplusLink").attr("href", gpStatus);
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   193
          
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   194
  this.selector.find(".Ldt-createAnnotation-endScreen").show();
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   195
};
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   196
553
10d08f43c534 widget works now more or less like in samuel's crea.
hamidouk
parents: 549
diff changeset
   197
/** handle clicks on "send annotation" button */
10d08f43c534 widget works now more or less like in samuel's crea.
hamidouk
parents: 549
diff changeset
   198
IriSP.createAnnotationWidget.prototype.handleButtonClick = function(event) {
597
93feb85bb07f correctly add an annotation.
hamidouk
parents: 594
diff changeset
   199
  var _this = this;
561
a10e7b6fdb08 display an error message when the user forget to enter text.
hamidouk
parents: 553
diff changeset
   200
  var textfield = this.selector.find(".Ldt-createAnnotation-Description");
a10e7b6fdb08 display an error message when the user forget to enter text.
hamidouk
parents: 553
diff changeset
   201
  var contents = textfield.val();
a10e7b6fdb08 display an error message when the user forget to enter text.
hamidouk
parents: 553
diff changeset
   202
614
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   203
  if (contents === "") {  
570
244f04a9af85 a couple changes.
hamidouk
parents: 563
diff changeset
   204
    if (this.selector.find(".Ldt-createAnnotation-errorMessage").length === 0) {
244f04a9af85 a couple changes.
hamidouk
parents: 563
diff changeset
   205
      this.selector.find(".Ldt-createAnnotation-Container")
244f04a9af85 a couple changes.
hamidouk
parents: 563
diff changeset
   206
                   .after(IriSP.templToHTML(IriSP.createAnnotation_errorMessage_template));
571
a471ef7efc0e fixes to the fixes.
hamidouk
parents: 570
diff changeset
   207
      textfield.css("background-color", "#d93c71");      
a471ef7efc0e fixes to the fixes.
hamidouk
parents: 570
diff changeset
   208
    } else {
a471ef7efc0e fixes to the fixes.
hamidouk
parents: 570
diff changeset
   209
      this.selector.find(".Ldt-createAnnotation-errorMessage").show();
a471ef7efc0e fixes to the fixes.
hamidouk
parents: 570
diff changeset
   210
    }
614
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   211
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   212
      textfield.one("js_mod propertychange keyup input paste", IriSP.wrap(this, function() {
570
244f04a9af85 a couple changes.
hamidouk
parents: 563
diff changeset
   213
                      var contents = textfield.val();
611
d931a7d12519 append a small space before keywords
hamidouk
parents: 608
diff changeset
   214
                      
570
244f04a9af85 a couple changes.
hamidouk
parents: 563
diff changeset
   215
                      if (contents !== "") {
244f04a9af85 a couple changes.
hamidouk
parents: 563
diff changeset
   216
                        this.selector.find(".Ldt-createAnnotation-errorMessage").hide();
244f04a9af85 a couple changes.
hamidouk
parents: 563
diff changeset
   217
                        textfield.css("background-color", "");
244f04a9af85 a couple changes.
hamidouk
parents: 563
diff changeset
   218
                      }
244f04a9af85 a couple changes.
hamidouk
parents: 563
diff changeset
   219
                   }));
561
a10e7b6fdb08 display an error message when the user forget to enter text.
hamidouk
parents: 553
diff changeset
   220
  } else {
614
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   221
    this.showEndScreen();
594
96af41097260 WIP - adapting the widget to the new segments conventions.
hamidouk
parents: 575
diff changeset
   222
        
96af41097260 WIP - adapting the widget to the new segments conventions.
hamidouk
parents: 575
diff changeset
   223
    if (typeof(this._currentAnnotation) === "undefined") {      
96af41097260 WIP - adapting the widget to the new segments conventions.
hamidouk
parents: 575
diff changeset
   224
      console.log("this._currentAnnotation undefined");
96af41097260 WIP - adapting the widget to the new segments conventions.
hamidouk
parents: 575
diff changeset
   225
      return;
96af41097260 WIP - adapting the widget to the new segments conventions.
hamidouk
parents: 575
diff changeset
   226
    }
96af41097260 WIP - adapting the widget to the new segments conventions.
hamidouk
parents: 575
diff changeset
   227
    
614
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   228
    this.sendLdtData(contents, function() {
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   229
                    if (_this.cinecast_version) {
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   230
                        if (_this._Popcorn.media.paused)
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   231
                          _this._Popcorn.play();
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   232
                        
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   233
                        window.setTimeout(IriSP.wrap(_this, function() { this.showStartScreen(); }), 5000);
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   234
                    }
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   235
                    });
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   236
  }
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   237
};
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   238
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   239
IriSP.createAnnotationWidget.prototype.sendLdtData = function(contents, callback) {
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   240
  var _this = this;
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   241
  var apiJson = {annotations : [{}], meta: {}};
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   242
  var annotation = apiJson["annotations"][0];
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   243
  
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   244
  annotation["media"] = this._serializer.currentMedia()["id"];
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   245
  annotation["begin"] = this._currentAnnotation.begin;
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   246
  annotation["end"] = this._currentAnnotation.end;
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   247
  annotation["type"] = this._serializer.getContributions();
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   248
  if (typeof(annotation["type"]) === "undefined")
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   249
    annotation["type"] = "";
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   250
  
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   251
  annotation["type_title"] = "Contributions";
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   252
  annotation.content = {};
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   253
  annotation.content["data"] = contents;
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   254
  
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   255
  var meta = apiJson["meta"];
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   256
  meta.creator = "An User";    
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   257
  meta.created = Date().toString();
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   258
  
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   259
  annotation["tags"] = [];
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   260
  
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   261
  for (var i = 0; i < this.keywords.length; i++) {
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   262
    var keyword = this.keywords[i];
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   263
    if (contents.indexOf(keyword) != -1)
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   264
      annotation["tags"].push(keyword);
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   265
  }
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   266
  
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   267
  var jsonString = JSON.stringify(apiJson);
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   268
  var project_id = this._serializer._data.meta.id;
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   269
  
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   270
  var url = Mustache.to_html("{{platf_url}}/ldtplatform/api/ldt/projects/{{id}}.json",
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   271
                              {platf_url: IriSP.platform_url, id: project_id});
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   272
                              
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   273
  IriSP.jQuery.ajax({
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   274
      url: url,
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   275
      type: 'PUT',
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   276
      contentType: 'application/json',
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   277
      data: jsonString,               
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   278
      dataType: 'json',
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   279
      success: function(json, textStatus, XMLHttpRequest) {
597
93feb85bb07f correctly add an annotation.
hamidouk
parents: 594
diff changeset
   280
                    /* add the annotation to the annotations and tell the world */
93feb85bb07f correctly add an annotation.
hamidouk
parents: 594
diff changeset
   281
                    delete annotation.tags;
93feb85bb07f correctly add an annotation.
hamidouk
parents: 594
diff changeset
   282
                    annotation.content.description = annotation.content.data;
93feb85bb07f correctly add an annotation.
hamidouk
parents: 594
diff changeset
   283
                    delete annotation.content.data;
93feb85bb07f correctly add an annotation.
hamidouk
parents: 594
diff changeset
   284
                    annotation.id = json.annotations[0].id;
93feb85bb07f correctly add an annotation.
hamidouk
parents: 594
diff changeset
   285
                    annotation.title = _this._currentAnnotation.content.title;
606
13675511a01a fixed creation bug.
hamidouk
parents: 597
diff changeset
   286
                    annotation.meta = meta;
13675511a01a fixed creation bug.
hamidouk
parents: 597
diff changeset
   287
                    annotation.meta["id-ref"] = annotation["type"];
597
93feb85bb07f correctly add an annotation.
hamidouk
parents: 594
diff changeset
   288
                    // everything is shared so there's no need to propagate the change
93feb85bb07f correctly add an annotation.
hamidouk
parents: 594
diff changeset
   289
                    _this._serializer._data.annotations.push(annotation);
93feb85bb07f correctly add an annotation.
hamidouk
parents: 594
diff changeset
   290
                    _this._Popcorn.trigger("IriSP.createAnnotationWidget.addedAnnotation");
614
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   291
                    callback();
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   292
      }, 
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   293
      error: 
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   294
              function() { 
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   295
                            console.log("an error occured while contacting " 
116de1c38a7d lots of refactoring for this widget, as well as changes to support the cinecast
hamidouk
parents: 611
diff changeset
   296
                            + url + " and sending " + jsonString); } });
543
5856fab9596c WIP - adding widget to create annotations.
hamidouk
parents:
diff changeset
   297
};