2015-05-04 23:03:35 -04:00
|
|
|
#= require autosave
|
|
|
|
#= 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
|
2013-12-25 15:31:18 -05:00
|
|
|
@initRefresh()
|
|
|
|
@setupMainTargetNoteForm()
|
|
|
|
@cleanBinding()
|
|
|
|
@addBinding()
|
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
|
|
|
|
|
2014-09-01 08:37:53 -04:00
|
|
|
# change note in UI after update
|
2013-12-25 15:31:18 -05:00
|
|
|
$(document).on "ajax:success", "form.edit_note", @updateNote
|
|
|
|
|
|
|
|
# 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
|
|
|
|
$(document).on "click", ".js-note-target-reopen", @targetReopen
|
|
|
|
$(document).on "click", ".js-note-target-close", @targetClose
|
2014-09-08 08:07:31 -04:00
|
|
|
$(document).on "click", ".js-comment-button", @updateCloseButton
|
2014-09-01 08:37:53 -04:00
|
|
|
$(document).on "keyup", ".js-note-text", @updateTargetButtons
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
|
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"
|
|
|
|
$(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"
|
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()
|
|
|
|
, 15000
|
|
|
|
|
|
|
|
refresh: ->
|
2014-09-29 11:32:56 -04:00
|
|
|
unless document.hidden or (@noteable_url != document.URL)
|
|
|
|
@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
|
2013-12-25 15:31:18 -05:00
|
|
|
$.each notes, (i, note) =>
|
2013-12-27 07:11:19 -05:00
|
|
|
@renderNote(note)
|
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
|
|
|
|
|
2013-12-27 07:11:19 -05:00
|
|
|
# render note if it not present in loaded list
|
|
|
|
# or skip if rendered
|
2015-11-11 08:12:51 -05:00
|
|
|
if @isNewNote(note) && !note.award
|
2013-12-27 07:11:19 -05:00
|
|
|
@note_ids.push(note.id)
|
2015-09-10 15:30:06 -04:00
|
|
|
$('ul.main-notes-list').
|
|
|
|
append(note.html).
|
|
|
|
syntaxHighlight()
|
2015-04-29 16:56:50 -04:00
|
|
|
@initTaskList()
|
2013-12-27 07:11:19 -05:00
|
|
|
|
2015-11-11 08:12:51 -05:00
|
|
|
if note.award
|
2015-11-18 16:59:58 -05:00
|
|
|
awards_handler.addAwardToEmojiBar(note.note, note.emoji_path)
|
2015-12-02 03:36:11 -05:00
|
|
|
awards_handler.scrollToAwards()
|
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) ->
|
2013-12-27 07:11:19 -05:00
|
|
|
@note_ids.push(note.id)
|
2013-12-25 15:31:18 -05:00
|
|
|
form = $("form[rel='" + note.discussion_id + "']")
|
|
|
|
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?
|
|
|
|
if row.is(".js-temp-notes-holder")
|
|
|
|
# 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()
|
|
|
|
|
2014-06-24 07:57:59 -04:00
|
|
|
# Add note to 'Changes' page discussions
|
2015-12-09 09:16:24 -05:00
|
|
|
$(".notes[rel='" + note.discussion_id + "']").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
|
|
|
|
if $('body').attr('data-page').indexOf('projects:merge_request') == 0
|
2015-12-09 09:16:24 -05:00
|
|
|
discussion_html = $(note.discussion_with_diff_html)
|
|
|
|
discussion_html.syntaxHighlight()
|
|
|
|
$('ul.main-notes-list').append(discussion_html)
|
2014-06-24 07:57:59 -04:00
|
|
|
else
|
|
|
|
# append new note to all matching discussions
|
2015-12-09 09:16:24 -05:00
|
|
|
$(".notes[rel='" + note.discussion_id + "']").append note_html
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
# cleanup after successfully creating a diff/discussion note
|
|
|
|
@removeDiscussionNoteForm(form)
|
|
|
|
|
|
|
|
###
|
|
|
|
Called in response the main target form has been successfully submitted.
|
|
|
|
|
|
|
|
Removes any errors.
|
|
|
|
Resets text and preview.
|
|
|
|
Resets buttons.
|
|
|
|
###
|
|
|
|
resetMainTargetForm: ->
|
|
|
|
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()
|
|
|
|
|
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")
|
|
|
|
|
|
|
|
# insert the form after the button
|
|
|
|
form.clone().replaceAll $(".js-main-target-form")
|
|
|
|
form = form.prev("form")
|
|
|
|
|
|
|
|
# show the form
|
|
|
|
@setupNoteForm(form)
|
|
|
|
|
|
|
|
# fix classes
|
|
|
|
form.removeClass "js-new-note-form"
|
|
|
|
form.addClass "js-main-target-form"
|
|
|
|
|
|
|
|
# remove unnecessary fields and buttons
|
|
|
|
form.find("#note_line_code").remove()
|
|
|
|
form.find(".js-close-discussion-note-form").remove()
|
|
|
|
|
|
|
|
###
|
|
|
|
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
|
|
|
|
|
|
|
# setup preview buttons
|
2014-10-15 03:21:21 -04:00
|
|
|
form.find(".js-md-write-button, .js-md-preview-button").tooltip placement: "left"
|
|
|
|
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"
|
|
|
|
|
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
|
|
|
|
form.find(".js-notify-commit-author").remove() if form.find("#note_noteable_type").val() isnt "Commit"
|
|
|
|
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)
|
|
|
|
|
|
|
|
###
|
|
|
|
Called in response to the new note form being submitted
|
|
|
|
|
|
|
|
Adds new note to list.
|
|
|
|
###
|
|
|
|
addDiscussionNote: (xhr, note, status) =>
|
|
|
|
@renderDiscussionNote(note)
|
|
|
|
|
|
|
|
###
|
|
|
|
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)
|
|
|
|
$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")
|
2015-02-13 08:14:27 -05:00
|
|
|
note.find(".note-body > .note-text").hide()
|
2015-01-15 02:09:30 -05:00
|
|
|
note.find(".note-header").hide()
|
2015-11-15 15:30:05 -05:00
|
|
|
base_form = note.find(".note-edit-form")
|
|
|
|
form = base_form.clone().insertAfter(base_form)
|
2015-07-10 10:41:43 -04:00
|
|
|
form.addClass('current-note-edit-form gfm-form')
|
2015-01-15 01:42:58 -05:00
|
|
|
form.find('.div-dropzone').remove()
|
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
|
2013-12-25 15:31:18 -05:00
|
|
|
GitLab.GfmAutoComplete.setup()
|
2015-01-15 01:42:58 -05:00
|
|
|
new DropzoneInput(form)
|
|
|
|
|
2013-12-25 15:31:18 -05:00
|
|
|
form.show()
|
2014-08-04 14:29:17 -04:00
|
|
|
textarea = form.find("textarea")
|
|
|
|
textarea.focus()
|
2015-05-20 12:53:35 -04:00
|
|
|
|
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
|
|
|
|
2014-08-04 14:29:17 -04:00
|
|
|
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")
|
2015-02-13 08:14:27 -05:00
|
|
|
note.find(".note-body > .note-text").show()
|
2015-01-15 02:09:30 -05:00
|
|
|
note.find(".note-header").show()
|
|
|
|
note.find(".current-note-edit-form").remove()
|
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.
|
|
|
|
###
|
|
|
|
removeNote: ->
|
|
|
|
note = $(this).closest(".note")
|
2015-12-10 19:07:25 -05:00
|
|
|
note_id = note.attr('id')
|
2013-12-25 15:31:18 -05:00
|
|
|
|
2015-12-10 19:07:25 -05:00
|
|
|
$('.note[id="' + note_id + '"]').each ->
|
|
|
|
note = $(this)
|
|
|
|
notes = note.closest(".notes")
|
|
|
|
count = notes.closest(".notes_holder").find(".discussion-notes-count")
|
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
|
|
|
|
2015-12-10 19:07:25 -05:00
|
|
|
# for discussions
|
|
|
|
notes.closest(".discussion").remove()
|
2013-12-25 15:31:18 -05:00
|
|
|
|
2015-12-10 19:07:25 -05:00
|
|
|
# for diff lines
|
|
|
|
notes.closest("tr").remove()
|
|
|
|
else
|
|
|
|
# update notes count
|
|
|
|
count.get(0).lastChild.nodeValue = " #{notes.children().length - 1}"
|
|
|
|
|
|
|
|
note.remove()
|
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) =>
|
|
|
|
form = $(".js-new-note-form")
|
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
|
|
|
|
form.clone().insertAfter replyLink
|
|
|
|
|
|
|
|
# show the form
|
|
|
|
@setupDiscussionNoteForm(replyLink, replyLink.next("form"))
|
|
|
|
|
|
|
|
###
|
|
|
|
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
|
|
|
|
form.attr "rel", 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")
|
|
|
|
@setupNoteForm form
|
|
|
|
form.find(".js-note-text").focus()
|
|
|
|
form.addClass "js-discussion-note-form"
|
|
|
|
|
|
|
|
###
|
|
|
|
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()
|
2014-12-24 06:39:35 -05:00
|
|
|
link = e.currentTarget
|
2013-12-25 15:31:18 -05:00
|
|
|
form = $(".js-new-note-form")
|
|
|
|
row = $(link).closest("tr")
|
|
|
|
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()
|
|
|
|
lineType = $(link).data("lineType")
|
|
|
|
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
|
|
|
|
newForm = form.clone()
|
|
|
|
newForm.appendTo row.next().find(targetContent)
|
2013-12-25 15:31:18 -05:00
|
|
|
|
|
|
|
# show the form
|
2015-06-05 18:24:05 -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 = $(".js-new-note-form")
|
|
|
|
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-01 08:37:53 -04:00
|
|
|
targetReopen: (e) =>
|
|
|
|
@submitNoteForm($(e.target).parents('form'))
|
|
|
|
|
|
|
|
targetClose: (e) =>
|
|
|
|
@submitNoteForm($(e.target).parents('form'))
|
|
|
|
|
|
|
|
submitNoteForm: (form) =>
|
|
|
|
noteText = form.find(".js-note-text").val()
|
|
|
|
if noteText.trim().length > 0
|
|
|
|
form.submit()
|
|
|
|
|
2014-09-08 08:07:31 -04:00
|
|
|
updateCloseButton: (e) =>
|
|
|
|
textarea = $(e.target)
|
|
|
|
form = textarea.parents('form')
|
|
|
|
form.find('.js-note-target-close').text('Close')
|
|
|
|
|
2014-09-01 08:37:53 -04:00
|
|
|
updateTargetButtons: (e) =>
|
|
|
|
textarea = $(e.target)
|
|
|
|
form = textarea.parents('form')
|
|
|
|
|
|
|
|
if textarea.val().trim().length > 0
|
|
|
|
form.find('.js-note-target-reopen').text('Comment & reopen')
|
|
|
|
form.find('.js-note-target-close').text('Comment & close')
|
|
|
|
else
|
|
|
|
form.find('.js-note-target-reopen').text('Reopen')
|
|
|
|
form.find('.js-note-target-close').text('Close')
|
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()
|