src/cm/media/js/client/c_dlg_intercept.js
author Simon Descarpentries <sid@sopinspace.com>
Mon, 21 Oct 2013 16:37:07 +0200
changeset 553 bf26fb47a14c
parent 341 053551f213fb
permissions -rw-r--r--
To allow scrolling in Safari mobile, we set the content of text_view_comments frame in a jQuery UI layout. So the automated scrolling operations in c_sync.js must be adjustable to the right part to scroll. Also, if a comment have to be shown outside of the current viewport, we scroll the correct part to that viewport and then set the comment top Y offset to juste what it needs to avoid the "Add comment" button after scrolling operation. If not in Safari mobile, we add an offset here to avoid comment to display under the "Add comment" button.


// dialog related
_afterDlg = function(args) {
  var yesFunction = args[0] ;
  var yesFunctionContext = args[1] ;
  var yesFunctionArgs = args[2] ;
  yesFunction.call(yesFunctionContext, yesFunctionArgs) ;
}
_abortNewCommentConfirmed = function(args) {
  if (isICommentFormVisible()) {
    if (gLayout.isInFrame()) {
      gSync.hideICommentForm({fn:function(){_afterDlg(args) ;}}) ;
      gSync.resume() ;
    }
  }
}
_abortNewReplyConfirmed = function(args) {
  if (gNewReplyHost != null) {
    if (gLayout.isInFrame()) {
      cancelNewReplyForm() ;
      _afterDlg(args) ;
    }
  }
}
_abortNewEditConfirmed = function(args) {
  if (gEditICommentHost != null) {
    if (gLayout.isInFrame()) {
      cancelEditForm() ;
      _afterDlg(args) ;
    }
  }
}

//if topIComment != null will check if edit or new reply is hosted by a child of topIComment
//if topIComment == null will check if edit or a new reply is hosted somewhere
checkForOpenedDialog = function(topIComment, yesFunction, yesFunctionContext, yesFunctionArgs) {
  var childrenIds = [] ;
  if (topIComment != null) {
    childrenIds = CY.Array.map(gDb.getThreads([gDb.getComment(topIComment.commentId)]), function(comment) { return comment.id ;}) ;
  }
  
  if (isICommentFormVisible()
    ||
    (gNewReplyHost != null && (topIComment == null || CY.Array.indexOf(childrenIds, gNewReplyHost.commentId) != -1))
    ||
    (gEditICommentHost != null && (topIComment == null || CY.Array.indexOf(childrenIds, gEditICommentHost.commentId) != -1))) {
    if (gLayout.isInFrame()) {
      if (isICommentFormVisible()) 
        parent.f_yesNoDialog(gettext("New comment will be canceled, continue?"), gettext("Warning"), null, null, null, _abortNewCommentConfirmed, this, [yesFunction, yesFunctionContext, yesFunctionArgs]) ;
      else if (gNewReplyHost != null)
        parent.f_yesNoDialog(gettext("Started reply will be canceled, continue?"), gettext("Warning"), null, null, null, _abortNewReplyConfirmed, this, [yesFunction, yesFunctionContext, yesFunctionArgs]) ;
      else if (gEditICommentHost != null)
        parent.f_yesNoDialog(gettext("Started comment edition will be canceled, continue?"), gettext("Warning"), null, null, null, _abortNewEditConfirmed, this, [yesFunction, yesFunctionContext, yesFunctionArgs]) ;
    }
  }
  else {
    yesFunction.call(yesFunctionContext, []) ;
  }
}