2015-05-04 23:03:35 -04:00
|
|
|
#= require autosave
|
2016-03-30 05:00:43 -04:00
|
|
|
#= require autosize
|
2015-05-04 23:03:35 -04:00
|
|
|
#= require dropzone
|
|
|
|
#= require dropzone_input
|
|
|
|
#= require gfm_auto_complete
|
|
|
|
#= require jquery.atwho
|
|
|
|
#= require task_list
|
|
|
|
|
2014-10-20 16:48:07 -04:00
|
|
|
class @Notes
|
2013-12-27 07:11:19 -05:00
|
|
|
@interval: null
|
|
|
|
|
2015-06-05 18:24:05 -04:00
|
|
|
constructor: (notes_url, note_ids, last_fetched_at, view) ->
|
2013-12-25 15:31:18 -05:00
|
|
|
@notes_url = notes_url
|
|
|
|
@note_ids = note_ids
|
2014-04-28 06:21:49 -04:00
|
|
|
@last_fetched_at = last_fetched_at
|
2015-06-05 18:24:05 -04:00
|
|
|
@view = view
|
2014-09-29 11:32:56 -04:00
|
|
|
@noteable_url = document.URL
|
2016-01-19 12:17:56 -05:00
|
|
|
@notesCountBadge ||= $(".issuable-details").find(".notes-tab .badge")
|
2016-03-03 15:00:15 -05:00
|
|
|
@basePollingInterval = 15000
|
|
|
|
@maxPollingSteps = 4
|
2016-01-19 12:17:56 -05:00
|
|
|
|
2013-12-25 15:31:18 -05:00
|
|
|
@cleanBinding()
|
|
|
|
@addBinding()
|
2016-02-15 14:09:55 -05:00
|
|
|
@setPollingInterval()
|
2016-03-03 11:51:58 -05:00
|
|
|
@setupMainTargetNoteForm()
|
2015-04-29 16:56:50 -04:00
|
|
|
@initTaskList()
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
addBinding: ->
|
|
|
|
# add note to UI after creation
|
|
|
|
$(document).on "ajax:success", ".js-main-target-form", @addNote
|
|
|
|
$(document).on "ajax:success", ".js-discussion-note-form", @addDiscussionNote
|
|
|
|
|
2016-02-25 13:51:17 -05:00
|
|
|
# catch note ajax errors
|
|
|
|
$(document).on "ajax:error", ".js-main-target-form", @addNoteError
|
|
|
|
|
2014-09-01 08:37:53 -04:00
|
|
|
# change note in UI after update
|
2016-03-10 06:02:22 -05:00
|
|
|
$(document).on "ajax:success", "form.edit-note", @updateNote
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
# Edit note link
|
2015-11-15 15:30:05 -05:00
|
|
|
$(document).on "click", ".js-note-edit", @showEditForm
|
2013-12-25 15:31:18 -05:00
|
|
|
$(document).on "click", ".note-edit-cancel", @cancelEdit
|
|
|
|
|
2014-09-01 08:37:53 -04:00
|
|
|
# Reopen and close actions for Issue/MR combined with note form submit
|
2014-09-08 08:07:31 -04:00
|
|
|
$(document).on "click", ".js-comment-button", @updateCloseButton
|
2016-03-03 11:51:58 -05:00
|
|
|
$(document).on "keyup input", ".js-note-text", @updateTargetButtons
|
2014-09-01 08:37:53 -04:00
|
|
|
|
2013-12-25 15:31:18 -05:00
|
|
|
# remove a note (in general)
|
|
|
|
$(document).on "click", ".js-note-delete", @removeNote
|
|
|
|
|
|
|
|
# delete note attachment
|
|
|
|
$(document).on "click", ".js-note-attachment-delete", @removeAttachment
|
|
|
|
|
|
|
|
# reset main target form after submit
|
2015-03-27 07:30:21 -04:00
|
|
|
$(document).on "ajax:complete", ".js-main-target-form", @reenableTargetFormSubmitButton
|
|
|
|
$(document).on "ajax:success", ".js-main-target-form", @resetMainTargetForm
|
2013-12-25 15:31:18 -05:00
|
|
|
|
2016-03-04 03:42:22 -05:00
|
|
|
# reset main target form when clicking discard
|
|
|
|
$(document).on "click", ".js-note-discard", @resetMainTargetForm
|
|
|
|
|
2014-01-12 11:47:58 -05:00
|
|
|
# update the file name when an attachment is selected
|
|
|
|
$(document).on "change", ".js-note-attachment-input", @updateFormAttachment
|
|
|
|
|
2013-12-25 15:31:18 -05:00
|
|
|
# reply to diff/discussion notes
|
|
|
|
$(document).on "click", ".js-discussion-reply-button", @replyToDiscussionNote
|
|
|
|
|
|
|
|
# add diff note
|
|
|
|
$(document).on "click", ".js-add-diff-note-button", @addDiffNote
|
|
|
|
|
2013-12-25 16:21:26 -05:00
|
|
|
# hide diff note form
|
|
|
|
$(document).on "click", ".js-close-discussion-note-form", @cancelDiscussionForm
|
|
|
|
|
2014-04-29 11:06:56 -04:00
|
|
|
# fetch notes when tab becomes visible
|
|
|
|
$(document).on "visibilitychange", @visibilityChange
|
|
|
|
|
2016-01-26 00:28:27 -05:00
|
|
|
# when issue status changes, we need to refresh data
|
2016-01-26 00:25:41 -05:00
|
|
|
$(document).on "issuable:change", @refresh
|
|
|
|
|
2013-12-25 15:31:18 -05:00
|
|
|
cleanBinding: ->
|
|
|
|
$(document).off "ajax:success", ".js-main-target-form"
|
|
|
|
$(document).off "ajax:success", ".js-discussion-note-form"
|
2016-03-10 06:02:22 -05:00
|
|
|
$(document).off "ajax:success", "form.edit-note"
|
2015-11-15 15:30:05 -05:00
|
|
|
$(document).off "click", ".js-note-edit"
|
2013-12-25 15:31:18 -05:00
|
|
|
$(document).off "click", ".note-edit-cancel"
|
|
|
|
$(document).off "click", ".js-note-delete"
|
|
|
|
$(document).off "click", ".js-note-attachment-delete"
|
|
|
|
$(document).off "ajax:complete", ".js-main-target-form"
|
2015-03-27 07:30:21 -04:00
|
|
|
$(document).off "ajax:success", ".js-main-target-form"
|
2013-12-25 15:31:18 -05:00
|
|
|
$(document).off "click", ".js-discussion-reply-button"
|
|
|
|
$(document).off "click", ".js-add-diff-note-button"
|
2014-04-29 11:06:56 -04:00
|
|
|
$(document).off "visibilitychange"
|
2014-09-01 08:37:53 -04:00
|
|
|
$(document).off "keyup", ".js-note-text"
|
|
|
|
$(document).off "click", ".js-note-target-reopen"
|
|
|
|
$(document).off "click", ".js-note-target-close"
|
2016-03-04 03:42:22 -05:00
|
|
|
$(document).off "click", ".js-note-discard"
|
2013-12-25 15:31:18 -05:00
|
|
|
|
2015-04-29 16:56:50 -04:00
|
|
|
$('.note .js-task-list-container').taskList('disable')
|
|
|
|
$(document).off 'tasklist:changed', '.note .js-task-list-container'
|
|
|
|
|
2013-12-25 15:31:18 -05:00
|
|
|
initRefresh: ->
|
2013-12-27 07:11:19 -05:00
|
|
|
clearInterval(Notes.interval)
|
|
|
|
Notes.interval = setInterval =>
|
2013-12-25 15:31:18 -05:00
|
|
|
@refresh()
|
2016-03-03 15:00:15 -05:00
|
|
|
, @pollingInterval
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
refresh: ->
|
2016-03-02 17:37:38 -05:00
|
|
|
return if @refreshing is true
|
|
|
|
refreshing = true
|
2016-01-19 12:17:56 -05:00
|
|
|
if not document.hidden and document.URL.indexOf(@noteable_url) is 0
|
2014-09-29 11:32:56 -04:00
|
|
|
@getContent()
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
getContent: ->
|
|
|
|
$.ajax
|
|
|
|
url: @notes_url
|
2014-04-28 06:21:49 -04:00
|
|
|
data: "last_fetched_at=" + @last_fetched_at
|
2013-12-25 15:31:18 -05:00
|
|
|
dataType: "json"
|
|
|
|
success: (data) =>
|
|
|
|
notes = data.notes
|
2014-04-28 06:21:49 -04:00
|
|
|
@last_fetched_at = data.last_fetched_at
|
2016-02-15 14:09:55 -05:00
|
|
|
@setPollingInterval(data.notes.length)
|
2013-12-25 15:31:18 -05:00
|
|
|
$.each notes, (i, note) =>
|
2016-01-19 12:17:56 -05:00
|
|
|
if note.discussion_with_diff_html?
|
|
|
|
@renderDiscussionNote(note)
|
|
|
|
else
|
|
|
|
@renderNote(note)
|
2016-03-02 17:37:38 -05:00
|
|
|
always: =>
|
|
|
|
@refreshing = false
|
2013-12-25 15:31:18 -05:00
|
|
|
|
2016-02-15 14:09:55 -05:00
|
|
|
###
|
2016-03-03 15:00:15 -05:00
|
|
|
Increase @pollingInterval up to 120 seconds on every function call,
|
2016-02-15 14:09:55 -05:00
|
|
|
if `shouldReset` has a truthy value, 'null' or 'undefined' the variable
|
2016-03-03 15:00:15 -05:00
|
|
|
will reset to @basePollingInterval.
|
2016-02-15 14:09:55 -05:00
|
|
|
|
|
|
|
Note: this function is used to gradually increase the polling interval
|
|
|
|
if there aren't new notes coming from the server
|
|
|
|
###
|
|
|
|
setPollingInterval: (shouldReset = true) ->
|
2016-03-03 15:00:15 -05:00
|
|
|
nthInterval = @basePollingInterval * Math.pow(2, @maxPollingSteps - 1)
|
2016-02-15 14:09:55 -05:00
|
|
|
if shouldReset
|
2016-03-03 15:00:15 -05:00
|
|
|
@pollingInterval = @basePollingInterval
|
|
|
|
else if @pollingInterval < nthInterval
|
|
|
|
@pollingInterval *= 2
|
2016-02-15 14:09:55 -05:00
|
|
|
|
|
|
|
@initRefresh()
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
###
|
|
|
|
Render note in main comments area.
|
|
|
|
|
|
|
|
Note: for rendering inline notes use renderDiscussionNote
|
|
|
|
###
|
|
|
|
renderNote: (note) ->
|
2015-12-02 04:51:46 -05:00
|
|
|
unless note.valid
|
2015-12-02 12:39:12 -05:00
|
|
|
if note.award
|
2015-12-05 16:18:13 -05:00
|
|
|
flash = new Flash('You have already used this award emoji!', 'alert')
|
2015-12-11 07:03:09 -05:00
|
|
|
flash.pinTo('.header-content')
|
2015-12-02 04:51:46 -05:00
|
|
|
return
|
|
|
|
|
2016-01-19 12:17:56 -05:00
|
|
|
if note.award
|
|
|
|
awards_handler.addAwardToEmojiBar(note.note)
|
|
|
|
awards_handler.scrollToAwards()
|
|
|
|
|
2013-12-27 07:11:19 -05:00
|
|
|
# render note if it not present in loaded list
|
|
|
|
# or skip if rendered
|
2016-01-19 12:17:56 -05:00
|
|
|
else if @isNewNote(note)
|
2013-12-27 07:11:19 -05:00
|
|
|
@note_ids.push(note.id)
|
2016-01-19 12:17:56 -05:00
|
|
|
|
2016-01-20 16:39:32 -05:00
|
|
|
$('ul.main-notes-list')
|
2016-01-20 17:24:13 -05:00
|
|
|
.append(note.html)
|
|
|
|
.syntaxHighlight()
|
2015-04-29 16:56:50 -04:00
|
|
|
@initTaskList()
|
2016-01-20 16:39:32 -05:00
|
|
|
@updateNotesCount(1)
|
2013-12-27 07:11:19 -05:00
|
|
|
|
2015-11-11 08:12:51 -05:00
|
|
|
|
2013-12-27 07:11:19 -05:00
|
|
|
###
|
|
|
|
Check if note does not exists on page
|
|
|
|
###
|
|
|
|
isNewNote: (note) ->
|
|
|
|
$.inArray(note.id, @note_ids) == -1
|
|
|
|
|
2015-06-05 18:24:05 -04:00
|
|
|
isParallelView: ->
|
|
|
|
@view == 'parallel'
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
###
|
|
|
|
Render note in discussion area.
|
|
|
|
|
|
|
|
Note: for rendering inline notes use renderDiscussionNote
|
|
|
|
###
|
|
|
|
renderDiscussionNote: (note) ->
|
2016-01-19 12:17:56 -05:00
|
|
|
return unless @isNewNote(note)
|
|
|
|
|
2013-12-27 07:11:19 -05:00
|
|
|
@note_ids.push(note.id)
|
2016-01-20 16:39:32 -05:00
|
|
|
form = $("#new-discussion-note-form-#{note.discussion_id}")
|
2013-12-25 15:31:18 -05:00
|
|
|
row = form.closest("tr")
|
2015-12-09 09:16:24 -05:00
|
|
|
note_html = $(note.html)
|
|
|
|
note_html.syntaxHighlight()
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
# is this the first note of discussion?
|
2016-01-20 16:39:32 -05:00
|
|
|
discussionContainer = $(".notes[data-discussion-id='" + note.discussion_id + "']")
|
2016-01-19 12:17:56 -05:00
|
|
|
if discussionContainer.length is 0
|
2013-12-25 15:31:18 -05:00
|
|
|
# insert the note and the reply button after the temp row
|
|
|
|
row.after note.discussion_html
|
|
|
|
|
|
|
|
# remove the note (will be added again below)
|
|
|
|
row.next().find(".note").remove()
|
|
|
|
|
2016-01-19 12:17:56 -05:00
|
|
|
# Before that, the container didn't exist
|
2016-01-20 16:39:32 -05:00
|
|
|
discussionContainer = $(".notes[data-discussion-id='" + note.discussion_id + "']")
|
2016-01-19 12:17:56 -05:00
|
|
|
|
2014-06-24 07:57:59 -04:00
|
|
|
# Add note to 'Changes' page discussions
|
2016-01-19 12:17:56 -05:00
|
|
|
discussionContainer.append note_html
|
2014-06-24 07:57:59 -04:00
|
|
|
|
2014-06-24 13:22:33 -04:00
|
|
|
# Init discussion on 'Discussion' page if it is merge request page
|
2016-01-19 12:17:56 -05:00
|
|
|
if $('body').attr('data-page').indexOf('projects:merge_request') is 0
|
2016-01-20 16:39:32 -05:00
|
|
|
$('ul.main-notes-list')
|
2016-01-20 17:24:13 -05:00
|
|
|
.append(note.discussion_with_diff_html)
|
|
|
|
.syntaxHighlight()
|
2014-06-24 07:57:59 -04:00
|
|
|
else
|
|
|
|
# append new note to all matching discussions
|
2016-01-19 12:17:56 -05:00
|
|
|
discussionContainer.append note_html
|
2013-12-25 15:31:18 -05:00
|
|
|
|
2016-01-20 16:39:32 -05:00
|
|
|
@updateNotesCount(1)
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
###
|
|
|
|
Called in response the main target form has been successfully submitted.
|
|
|
|
|
|
|
|
Removes any errors.
|
|
|
|
Resets text and preview.
|
|
|
|
Resets buttons.
|
|
|
|
###
|
2016-03-04 03:42:22 -05:00
|
|
|
resetMainTargetForm: (e) =>
|
2013-12-25 15:31:18 -05:00
|
|
|
form = $(".js-main-target-form")
|
|
|
|
|
|
|
|
# remove validation errors
|
|
|
|
form.find(".js-errors").remove()
|
|
|
|
|
|
|
|
# reset text and preview
|
2014-10-15 03:21:21 -04:00
|
|
|
form.find(".js-md-write-button").click()
|
2013-12-25 15:31:18 -05:00
|
|
|
form.find(".js-note-text").val("").trigger "input"
|
|
|
|
|
2015-02-06 10:21:26 -05:00
|
|
|
form.find(".js-note-text").data("autosave").reset()
|
|
|
|
|
2016-03-04 03:42:22 -05:00
|
|
|
@updateTargetButtons(e)
|
|
|
|
|
2015-03-27 07:30:21 -04:00
|
|
|
reenableTargetFormSubmitButton: ->
|
|
|
|
form = $(".js-main-target-form")
|
|
|
|
|
|
|
|
form.find(".js-note-text").trigger "input"
|
|
|
|
|
2013-12-25 15:31:18 -05:00
|
|
|
###
|
|
|
|
Shows the main form and does some setup on it.
|
|
|
|
|
|
|
|
Sets some hidden fields in the form.
|
|
|
|
###
|
|
|
|
setupMainTargetNoteForm: ->
|
|
|
|
# find the form
|
|
|
|
form = $(".js-new-note-form")
|
|
|
|
|
2016-03-30 08:39:41 -04:00
|
|
|
# Set a global clone of the form for later cloning
|
|
|
|
@formClone = form.clone()
|
|
|
|
|
2013-12-25 15:31:18 -05:00
|
|
|
# show the form
|
|
|
|
@setupNoteForm(form)
|
|
|
|
|
|
|
|
# fix classes
|
|
|
|
form.removeClass "js-new-note-form"
|
|
|
|
form.addClass "js-main-target-form"
|
|
|
|
|
2016-03-30 15:11:41 -04:00
|
|
|
form.find("#note_line_code").remove()
|
|
|
|
|
2013-12-25 15:31:18 -05:00
|
|
|
###
|
|
|
|
General note form setup.
|
|
|
|
|
|
|
|
deactivates the submit button when text is empty
|
|
|
|
hides the preview button when text is empty
|
|
|
|
setup GFM auto complete
|
|
|
|
show the form
|
|
|
|
###
|
|
|
|
setupNoteForm: (form) ->
|
|
|
|
disableButtonIfEmptyField form.find(".js-note-text"), form.find(".js-comment-button")
|
|
|
|
form.removeClass "js-new-note-form"
|
2015-01-15 00:43:31 -05:00
|
|
|
form.find('.div-dropzone').remove()
|
2013-12-25 15:31:18 -05:00
|
|
|
|
2016-03-04 03:42:22 -05:00
|
|
|
# hide discard button
|
|
|
|
form.find('.js-note-discard').hide()
|
|
|
|
|
2013-12-25 15:31:18 -05:00
|
|
|
# setup preview buttons
|
2014-10-15 03:21:21 -04:00
|
|
|
previewButton = form.find(".js-md-preview-button")
|
2015-02-06 10:21:26 -05:00
|
|
|
|
|
|
|
textarea = form.find(".js-note-text")
|
|
|
|
|
|
|
|
textarea.on "input", ->
|
2013-12-25 15:31:18 -05:00
|
|
|
if $(this).val().trim() isnt ""
|
|
|
|
previewButton.removeClass("turn-off").addClass "turn-on"
|
|
|
|
else
|
|
|
|
previewButton.removeClass("turn-on").addClass "turn-off"
|
|
|
|
|
2016-03-30 05:19:58 -04:00
|
|
|
textarea.on 'focus', ->
|
|
|
|
$(this).closest('.md-area').addClass 'is-focused'
|
|
|
|
|
|
|
|
textarea.on 'blur', ->
|
|
|
|
$(this).closest('.md-area').removeClass 'is-focused'
|
|
|
|
|
2016-03-30 05:00:43 -04:00
|
|
|
autosize(textarea)
|
|
|
|
|
2015-02-06 10:21:26 -05:00
|
|
|
new Autosave textarea, [
|
|
|
|
"Note"
|
|
|
|
form.find("#note_commit_id").val()
|
|
|
|
form.find("#note_line_code").val()
|
|
|
|
form.find("#note_noteable_type").val()
|
|
|
|
form.find("#note_noteable_id").val()
|
|
|
|
]
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
# remove notify commit author checkbox for non-commit notes
|
|
|
|
GitLab.GfmAutoComplete.setup()
|
2015-01-15 00:43:31 -05:00
|
|
|
new DropzoneInput(form)
|
2013-12-25 15:31:18 -05:00
|
|
|
form.show()
|
|
|
|
|
|
|
|
###
|
|
|
|
Called in response to the new note form being submitted
|
|
|
|
|
|
|
|
Adds new note to list.
|
|
|
|
###
|
|
|
|
addNote: (xhr, note, status) =>
|
|
|
|
@renderNote(note)
|
|
|
|
|
2016-02-25 13:51:17 -05:00
|
|
|
addNoteError: (xhr, note, status) =>
|
|
|
|
flash = new Flash('Your comment could not be submitted! Please check your network connection and try again.', 'alert')
|
|
|
|
flash.pinTo('.md-area')
|
|
|
|
|
2013-12-25 15:31:18 -05:00
|
|
|
###
|
|
|
|
Called in response to the new note form being submitted
|
|
|
|
|
|
|
|
Adds new note to list.
|
|
|
|
###
|
|
|
|
addDiscussionNote: (xhr, note, status) =>
|
|
|
|
@renderDiscussionNote(note)
|
|
|
|
|
2016-01-19 12:17:56 -05:00
|
|
|
# cleanup after successfully creating a diff/discussion note
|
2016-01-20 16:39:32 -05:00
|
|
|
@removeDiscussionNoteForm($("#new-discussion-note-form-#{note.discussion_id}"))
|
2016-01-19 12:17:56 -05:00
|
|
|
|
2013-12-25 15:31:18 -05:00
|
|
|
###
|
|
|
|
Called in response to the edit note form being submitted
|
|
|
|
|
|
|
|
Updates the current note field.
|
|
|
|
###
|
2015-09-25 16:27:58 -04:00
|
|
|
updateNote: (_xhr, note, _status) =>
|
|
|
|
# Convert returned HTML to a jQuery object so we can modify it further
|
|
|
|
$html = $(note.html)
|
2016-03-02 06:33:55 -05:00
|
|
|
$('.js-timeago', $html).timeago()
|
2015-09-25 16:27:58 -04:00
|
|
|
$html.syntaxHighlight()
|
|
|
|
$html.find('.js-task-list-container').taskList('enable')
|
|
|
|
|
|
|
|
# Find the note's `li` element by ID and replace it with the updated HTML
|
2015-12-09 08:30:21 -05:00
|
|
|
$note_li = $('.note-row-' + note.id)
|
2015-09-25 16:27:58 -04:00
|
|
|
$note_li.replaceWith($html)
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
###
|
|
|
|
Called in response to clicking the edit note link
|
|
|
|
|
|
|
|
Replaces the note text with the note edit form
|
|
|
|
Adds a hidden div with the original content of the note to fill the edit note form with
|
|
|
|
if the user cancels
|
|
|
|
###
|
2015-11-15 15:30:05 -05:00
|
|
|
showEditForm: (e) ->
|
|
|
|
e.preventDefault()
|
|
|
|
note = $(this).closest(".note")
|
2016-03-18 13:23:54 -04:00
|
|
|
note.addClass "is-editting"
|
2016-03-10 06:02:22 -05:00
|
|
|
form = note.find(".note-edit-form")
|
|
|
|
isNewForm = form.is(':not(.gfm-form)')
|
|
|
|
if isNewForm
|
|
|
|
form.addClass('gfm-form')
|
|
|
|
form.addClass('current-note-edit-form')
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
# Show the attachment delete link
|
|
|
|
note.find(".js-note-attachment-delete").show()
|
2015-01-15 01:42:58 -05:00
|
|
|
|
|
|
|
# Setup markdown form
|
2016-03-10 06:02:22 -05:00
|
|
|
if isNewForm
|
|
|
|
GitLab.GfmAutoComplete.setup()
|
|
|
|
new DropzoneInput(form)
|
2015-01-15 01:42:58 -05:00
|
|
|
|
2014-08-04 14:29:17 -04:00
|
|
|
textarea = form.find("textarea")
|
|
|
|
textarea.focus()
|
2016-03-10 06:02:22 -05:00
|
|
|
|
2016-03-30 05:00:43 -04:00
|
|
|
if isNewForm
|
|
|
|
autosize(textarea)
|
|
|
|
|
2015-05-21 05:22:21 -04:00
|
|
|
# HACK (rspeicher/DouweM): Work around a Chrome 43 bug(?).
|
2015-05-20 12:53:35 -04:00
|
|
|
# The textarea has the correct value, Chrome just won't show it unless we
|
2015-05-21 05:22:21 -04:00
|
|
|
# modify it, so let's clear it and re-set it!
|
|
|
|
value = textarea.val()
|
|
|
|
textarea.val ""
|
|
|
|
textarea.val value
|
2015-05-20 12:53:35 -04:00
|
|
|
|
2016-03-10 06:02:22 -05:00
|
|
|
if isNewForm
|
|
|
|
disableButtonIfEmptyField textarea, form.find(".js-comment-button")
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
###
|
|
|
|
Called in response to clicking the edit note link
|
|
|
|
|
|
|
|
Hides edit form
|
|
|
|
###
|
|
|
|
cancelEdit: (e) ->
|
|
|
|
e.preventDefault()
|
|
|
|
note = $(this).closest(".note")
|
2016-03-18 13:23:54 -04:00
|
|
|
note.removeClass "is-editting"
|
2016-03-10 06:02:22 -05:00
|
|
|
note.find(".current-note-edit-form")
|
|
|
|
.removeClass("current-note-edit-form")
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
###
|
|
|
|
Called in response to deleting a note of any kind.
|
|
|
|
|
|
|
|
Removes the actual note from view.
|
|
|
|
Removes the whole discussion if the last note is being removed.
|
|
|
|
###
|
2016-01-19 12:17:56 -05:00
|
|
|
removeNote: (e) =>
|
2016-01-20 16:39:32 -05:00
|
|
|
noteId = $(e.currentTarget)
|
2016-01-20 17:24:13 -05:00
|
|
|
.closest(".note")
|
|
|
|
.attr("id")
|
2016-01-20 16:39:32 -05:00
|
|
|
|
|
|
|
# A same note appears in the "Discussion" and in the "Changes" tab, we have
|
|
|
|
# to remove all. Using $(".note[id='noteId']") ensure we get all the notes,
|
|
|
|
# where $("#noteId") would return only one.
|
|
|
|
$(".note[id='#{noteId}']").each (i, el) =>
|
|
|
|
note = $(el)
|
2015-12-10 19:07:25 -05:00
|
|
|
notes = note.closest(".notes")
|
2013-12-25 15:31:18 -05:00
|
|
|
|
2015-12-10 19:07:25 -05:00
|
|
|
# check if this is the last note for this line
|
|
|
|
if notes.find(".note").length is 1
|
2013-12-25 15:31:18 -05:00
|
|
|
|
2016-01-20 16:39:32 -05:00
|
|
|
# "Discussions" tab
|
|
|
|
notes.closest(".timeline-entry").remove()
|
2013-12-25 15:31:18 -05:00
|
|
|
|
2016-01-20 16:39:32 -05:00
|
|
|
# "Changes" tab / commit view
|
2015-12-10 19:07:25 -05:00
|
|
|
notes.closest("tr").remove()
|
2016-01-14 17:21:05 -05:00
|
|
|
|
2015-12-10 19:07:25 -05:00
|
|
|
note.remove()
|
2013-12-25 15:31:18 -05:00
|
|
|
|
2016-01-20 16:39:32 -05:00
|
|
|
# Decrement the "Discussions" counter only once
|
|
|
|
@updateNotesCount(-1)
|
2016-01-19 12:17:56 -05:00
|
|
|
|
2013-12-25 15:31:18 -05:00
|
|
|
###
|
|
|
|
Called in response to clicking the delete attachment link
|
|
|
|
|
|
|
|
Removes the attachment wrapper view, including image tag if it exists
|
|
|
|
Resets the note editing form
|
|
|
|
###
|
|
|
|
removeAttachment: ->
|
|
|
|
note = $(this).closest(".note")
|
|
|
|
note.find(".note-attachment").remove()
|
2015-02-13 08:14:27 -05:00
|
|
|
note.find(".note-body > .note-text").show()
|
2015-12-07 17:08:22 -05:00
|
|
|
note.find(".note-header").show()
|
|
|
|
note.find(".current-note-edit-form").remove()
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
###
|
|
|
|
Called when clicking on the "reply" button for a diff line.
|
|
|
|
|
|
|
|
Shows the note form below the notes.
|
|
|
|
###
|
|
|
|
replyToDiscussionNote: (e) =>
|
2016-03-30 08:39:41 -04:00
|
|
|
form = @formClone.clone()
|
2014-07-09 14:45:13 -04:00
|
|
|
replyLink = $(e.target).closest(".js-discussion-reply-button")
|
2013-12-25 15:31:18 -05:00
|
|
|
replyLink.hide()
|
|
|
|
|
|
|
|
# insert the form after the button
|
2016-03-30 08:39:41 -04:00
|
|
|
replyLink.after form
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
# show the form
|
2016-03-30 08:39:41 -04:00
|
|
|
@setupDiscussionNoteForm(replyLink, form)
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
###
|
|
|
|
Shows the diff or discussion form and does some setup on it.
|
|
|
|
|
|
|
|
Sets some hidden fields in the form.
|
|
|
|
|
|
|
|
Note: dataHolder must have the "discussionId", "lineCode", "noteableType"
|
|
|
|
and "noteableId" data attributes set.
|
|
|
|
###
|
|
|
|
setupDiscussionNoteForm: (dataHolder, form) =>
|
|
|
|
# setup note target
|
2016-01-20 16:39:32 -05:00
|
|
|
form.attr 'id', "new-discussion-note-form-#{dataHolder.data("discussionId")}"
|
2015-06-05 18:24:05 -04:00
|
|
|
form.find("#line_type").val dataHolder.data("lineType")
|
2013-12-25 15:31:18 -05:00
|
|
|
form.find("#note_commit_id").val dataHolder.data("commitId")
|
|
|
|
form.find("#note_line_code").val dataHolder.data("lineCode")
|
|
|
|
form.find("#note_noteable_type").val dataHolder.data("noteableType")
|
|
|
|
form.find("#note_noteable_id").val dataHolder.data("noteableId")
|
2016-03-04 05:44:04 -05:00
|
|
|
form.find('.js-note-discard')
|
|
|
|
.show()
|
|
|
|
.removeClass('js-note-discard')
|
|
|
|
.addClass('js-close-discussion-note-form')
|
|
|
|
.text(form.find('.js-close-discussion-note-form').data('cancel-text'))
|
2013-12-25 15:31:18 -05:00
|
|
|
@setupNoteForm form
|
|
|
|
form.find(".js-note-text").focus()
|
2016-03-30 08:39:41 -04:00
|
|
|
form
|
|
|
|
.removeClass('js-main-target-form')
|
|
|
|
.addClass("discussion-form js-discussion-note-form")
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
###
|
|
|
|
Called when clicking on the "add a comment" button on the side of a diff line.
|
|
|
|
|
|
|
|
Inserts a temporary row for the form below the line.
|
|
|
|
Sets up the form and shows it.
|
|
|
|
###
|
|
|
|
addDiffNote: (e) =>
|
|
|
|
e.preventDefault()
|
2016-03-30 15:11:41 -04:00
|
|
|
$link = $(e.currentTarget)
|
|
|
|
row = $link.closest("tr")
|
2013-12-25 15:31:18 -05:00
|
|
|
nextRow = row.next()
|
2015-06-05 18:24:05 -04:00
|
|
|
hasNotes = nextRow.is(".notes_holder")
|
|
|
|
addForm = false
|
|
|
|
targetContent = ".notes_content"
|
|
|
|
rowCssToAdd = "<tr class=\"notes_holder js-temp-notes-holder\"><td class=\"notes_line\" colspan=\"2\"></td><td class=\"notes_content\"></td></tr>"
|
|
|
|
|
|
|
|
# In parallel view, look inside the correct left/right pane
|
|
|
|
if @isParallelView()
|
2016-03-30 15:11:41 -04:00
|
|
|
lineType = $link.data("lineType")
|
2015-06-05 18:24:05 -04:00
|
|
|
targetContent += "." + lineType
|
|
|
|
rowCssToAdd = "<tr class=\"notes_holder js-temp-notes-holder\"><td class=\"notes_line\"></td><td class=\"notes_content parallel old\"></td><td class=\"notes_line\"></td><td class=\"notes_content parallel new\"></td></tr>"
|
|
|
|
|
|
|
|
if hasNotes
|
|
|
|
notesContent = nextRow.find(targetContent)
|
|
|
|
if notesContent.length
|
|
|
|
replyButton = notesContent.find(".js-discussion-reply-button:visible")
|
|
|
|
if replyButton.length
|
|
|
|
e.target = replyButton[0]
|
|
|
|
$.proxy(@replyToDiscussionNote, replyButton[0], e).call()
|
|
|
|
else
|
|
|
|
# In parallel view, the form may not be present in one of the panes
|
|
|
|
noteForm = notesContent.find(".js-discussion-note-form")
|
|
|
|
if noteForm.length == 0
|
|
|
|
addForm = true
|
2013-12-25 15:31:18 -05:00
|
|
|
else
|
|
|
|
# add a notes row and insert the form
|
2015-06-05 18:24:05 -04:00
|
|
|
row.after rowCssToAdd
|
|
|
|
addForm = true
|
|
|
|
|
|
|
|
if addForm
|
2016-03-30 08:54:35 -04:00
|
|
|
newForm = @formClone.clone()
|
2015-06-05 18:24:05 -04:00
|
|
|
newForm.appendTo row.next().find(targetContent)
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
# show the form
|
2016-03-30 15:11:41 -04:00
|
|
|
@setupDiscussionNoteForm $link, newForm
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
###
|
|
|
|
Called in response to "cancel" on a diff note form.
|
|
|
|
|
|
|
|
Shows the reply button again.
|
|
|
|
Removes the form and if necessary it's temporary row.
|
|
|
|
###
|
|
|
|
removeDiscussionNoteForm: (form)->
|
|
|
|
row = form.closest("tr")
|
|
|
|
|
2015-02-06 10:21:26 -05:00
|
|
|
form.find(".js-note-text").data("autosave").reset()
|
|
|
|
|
2013-12-25 15:31:18 -05:00
|
|
|
# show the reply button (will only work for replies)
|
|
|
|
form.prev(".js-discussion-reply-button").show()
|
|
|
|
if row.is(".js-temp-notes-holder")
|
|
|
|
# remove temporary row for diff lines
|
|
|
|
row.remove()
|
|
|
|
else
|
|
|
|
# only remove the form
|
|
|
|
form.remove()
|
|
|
|
|
2013-12-25 16:21:26 -05:00
|
|
|
|
|
|
|
cancelDiscussionForm: (e) =>
|
|
|
|
e.preventDefault()
|
|
|
|
form = $(e.target).closest(".js-discussion-note-form")
|
|
|
|
@removeDiscussionNoteForm(form)
|
|
|
|
|
2014-01-12 11:47:58 -05:00
|
|
|
###
|
|
|
|
Called after an attachment file has been selected.
|
|
|
|
|
|
|
|
Updates the file name for the selected attachment.
|
|
|
|
###
|
|
|
|
updateFormAttachment: ->
|
|
|
|
form = $(this).closest("form")
|
|
|
|
|
|
|
|
# get only the basename
|
|
|
|
filename = $(this).val().replace(/^.*[\\\/]/, "")
|
|
|
|
form.find(".js-attachment-filename").text filename
|
|
|
|
|
2014-04-29 11:06:56 -04:00
|
|
|
###
|
|
|
|
Called when the tab visibility changes
|
|
|
|
###
|
|
|
|
visibilityChange: =>
|
|
|
|
@refresh()
|
|
|
|
|
2014-09-08 08:07:31 -04:00
|
|
|
updateCloseButton: (e) =>
|
|
|
|
textarea = $(e.target)
|
|
|
|
form = textarea.parents('form')
|
2016-03-04 03:42:22 -05:00
|
|
|
closebtn = form.find('.js-note-target-close')
|
|
|
|
closebtn.text(closebtn.data('original-text'))
|
2014-09-08 08:07:31 -04:00
|
|
|
|
2014-09-01 08:37:53 -04:00
|
|
|
updateTargetButtons: (e) =>
|
|
|
|
textarea = $(e.target)
|
|
|
|
form = textarea.parents('form')
|
2016-03-04 03:42:22 -05:00
|
|
|
reopenbtn = form.find('.js-note-target-reopen')
|
|
|
|
closebtn = form.find('.js-note-target-close')
|
|
|
|
discardbtn = form.find('.js-note-discard')
|
|
|
|
|
2014-09-01 08:37:53 -04:00
|
|
|
if textarea.val().trim().length > 0
|
2016-03-04 03:42:22 -05:00
|
|
|
reopentext = reopenbtn.data('alternative-text')
|
|
|
|
closetext = closebtn.data('alternative-text')
|
|
|
|
|
|
|
|
if reopenbtn.text() isnt reopentext
|
|
|
|
reopenbtn.text(reopentext)
|
|
|
|
|
|
|
|
if closebtn.text() isnt closetext
|
|
|
|
closebtn.text(closetext)
|
|
|
|
|
|
|
|
if reopenbtn.is(':not(.btn-comment-and-reopen)')
|
|
|
|
reopenbtn.addClass('btn-comment-and-reopen')
|
|
|
|
|
|
|
|
if closebtn.is(':not(.btn-comment-and-close)')
|
|
|
|
closebtn.addClass('btn-comment-and-close')
|
|
|
|
|
|
|
|
if discardbtn.is(':hidden')
|
|
|
|
discardbtn.show()
|
2014-09-01 08:37:53 -04:00
|
|
|
else
|
2016-03-04 03:42:22 -05:00
|
|
|
reopentext = reopenbtn.data('original-text')
|
|
|
|
closetext = closebtn.data('original-text')
|
|
|
|
|
|
|
|
if reopenbtn.text() isnt reopentext
|
|
|
|
reopenbtn.text(reopentext)
|
|
|
|
|
|
|
|
if closebtn.text() isnt closetext
|
2016-03-11 05:03:35 -05:00
|
|
|
closebtn.text(closetext)
|
2016-03-04 03:42:22 -05:00
|
|
|
|
2016-03-18 07:36:48 -04:00
|
|
|
if reopenbtn.is('.btn-comment-and-reopen')
|
2016-03-04 03:42:22 -05:00
|
|
|
reopenbtn.removeClass('btn-comment-and-reopen')
|
|
|
|
|
2016-03-18 07:36:48 -04:00
|
|
|
if closebtn.is('.btn-comment-and-close')
|
2016-03-04 03:42:22 -05:00
|
|
|
closebtn.removeClass('btn-comment-and-close')
|
|
|
|
|
|
|
|
if discardbtn.is(':visible')
|
|
|
|
discardbtn.hide()
|
2015-04-29 16:56:50 -04:00
|
|
|
|
|
|
|
initTaskList: ->
|
|
|
|
@enableTaskList()
|
|
|
|
$(document).on 'tasklist:changed', '.note .js-task-list-container', @updateTaskList
|
|
|
|
|
2015-05-04 23:03:35 -04:00
|
|
|
enableTaskList: ->
|
|
|
|
$('.note .js-task-list-container').taskList('enable')
|
|
|
|
|
2015-04-29 16:56:50 -04:00
|
|
|
updateTaskList: ->
|
|
|
|
$('form', this).submit()
|
2016-01-19 12:17:56 -05:00
|
|
|
|
2016-01-20 17:24:13 -05:00
|
|
|
updateNotesCount: (updateCount) ->
|
|
|
|
@notesCountBadge.text(parseInt(@notesCountBadge.text()) + updateCount)
|