2020-02-03 04:08:42 -05:00
/ * e s l i n t - d i s a b l e n o - r e s t r i c t e d - p r o p e r t i e s , b a b e l / c a m e l c a s e ,
2019-12-16 16:08:00 -05:00
no - unused - expressions , default - case ,
2020-04-29 20:09:37 -04:00
consistent - return , no - alert , no - param - reassign ,
2019-12-16 16:08:00 -05:00
no - shadow , no - useless - escape ,
2019-11-13 16:06:45 -05:00
class - methods - use - this * /
2017-10-12 12:31:29 -04:00
2016-12-14 00:26:26 -05:00
/* global ResolveService */
2016-07-24 16:45:11 -04:00
2019-06-05 17:28:40 -04:00
/ *
2021-08-19 08:08:53 -04:00
deprecated _notes _spec . js is the spec for the legacy , jQuery notes application . It has nothing to do with the new , fancy Vue notes app .
2019-06-05 17:28:40 -04:00
* /
2021-02-15 16:08:59 -05:00
import { GlDeprecatedSkeletonLoading as GlSkeletonLoading } from '@gitlab/ui' ;
import Autosize from 'autosize' ;
2017-05-03 13:41:16 -04:00
import $ from 'jquery' ;
2021-02-14 13:09:20 -05:00
import { escape , uniqueId } from 'lodash' ;
2018-03-13 08:01:36 -04:00
import Vue from 'vue' ;
2021-02-15 16:08:59 -05:00
import '~/lib/utils/jquery_at_who' ;
2019-12-11 07:08:10 -05:00
import AjaxCache from '~/lib/utils/ajax_cache' ;
import syntaxHighlight from '~/syntax_highlight' ;
2021-10-05 14:13:27 -04:00
import CommentTypeDropdown from '~/notes/components/comment_type_dropdown.vue' ;
import * as constants from '~/notes/constants' ;
2021-02-14 13:09:20 -05:00
import Autosave from './autosave' ;
import loadAwardsHandler from './awards_handler' ;
2021-03-22 11:09:31 -04:00
import createFlash from './flash' ;
2018-06-21 07:52:43 -04:00
import { defaultAutocompleteConfig } from './gfm_auto_complete' ;
2017-10-10 04:09:01 -04:00
import GLForm from './gl_form' ;
2021-02-14 13:09:20 -05:00
import axios from './lib/utils/axios_utils' ;
2018-03-16 16:16:21 -04:00
import {
2022-02-01 16:12:02 -05:00
getCookie ,
2018-03-16 16:16:21 -04:00
isInViewport ,
getPagePath ,
scrollToElement ,
isMetaKey ,
2018-06-21 08:22:40 -04:00
isInMRPage ,
2018-03-16 16:16:21 -04:00
} from './lib/utils/common_utils' ;
2017-12-07 06:09:17 -05:00
import { localTimeAgo } from './lib/utils/datetime_utility' ;
2021-02-14 13:09:20 -05:00
import { getLocationHash } from './lib/utils/url_utility' ;
2019-05-15 09:35:09 -04:00
import { sprintf , s _ _ , _ _ } from './locale' ;
2021-02-14 13:09:20 -05:00
import TaskList from './task_list' ;
2017-03-11 01:45:34 -05:00
2017-10-31 05:18:30 -04:00
window . autosize = Autosize ;
2016-07-24 16:45:11 -04:00
2017-06-18 03:09:45 -04:00
function normalizeNewlines ( str ) {
2017-05-03 13:41:16 -04:00
return str . replace ( /\r\n/g , '\n' ) ;
2017-06-18 03:09:45 -04:00
}
const MAX _VISIBLE _COMMIT _LIST _COUNT = 3 ;
const REGEX _QUICK _ACTIONS = /^\/\w+.*$/gm ;
export default class Notes {
2018-06-21 07:52:43 -04:00
static initialize ( notes _url , note _ids , last _fetched _at , view , enableGFM ) {
2017-12-15 05:21:49 -05:00
if ( ! this . instance ) {
2018-06-21 08:22:40 -04:00
this . instance = new Notes ( notes _url , note _ids , last _fetched _at , view , enableGFM ) ;
2017-12-15 05:21:49 -05:00
}
}
2018-02-27 19:10:43 -05:00
static getInstance ( ) {
return this . instance ;
}
2018-06-21 07:52:43 -04:00
constructor ( notes _url , note _ids , last _fetched _at , view , enableGFM = defaultAutocompleteConfig ) {
2017-06-18 03:09:45 -04:00
this . updateTargetButtons = this . updateTargetButtons . bind ( this ) ;
this . updateComment = this . updateComment . bind ( this ) ;
this . visibilityChange = this . visibilityChange . bind ( this ) ;
this . cancelDiscussionForm = this . cancelDiscussionForm . bind ( this ) ;
this . onAddDiffNote = this . onAddDiffNote . bind ( this ) ;
2017-10-07 00:25:17 -04:00
this . onAddImageDiffNote = this . onAddImageDiffNote . bind ( this ) ;
2017-06-18 03:09:45 -04:00
this . setupDiscussionNoteForm = this . setupDiscussionNoteForm . bind ( this ) ;
this . onReplyToDiscussionNote = this . onReplyToDiscussionNote . bind ( this ) ;
this . removeNote = this . removeNote . bind ( this ) ;
this . cancelEdit = this . cancelEdit . bind ( this ) ;
this . updateNote = this . updateNote . bind ( this ) ;
this . addDiscussionNote = this . addDiscussionNote . bind ( this ) ;
this . addNoteError = this . addNoteError . bind ( this ) ;
this . addNote = this . addNote . bind ( this ) ;
this . resetMainTargetForm = this . resetMainTargetForm . bind ( this ) ;
this . refresh = this . refresh . bind ( this ) ;
this . keydownNoteText = this . keydownNoteText . bind ( this ) ;
this . toggleCommitList = this . toggleCommitList . bind ( this ) ;
this . postComment = this . postComment . bind ( this ) ;
this . clearFlashWrapper = this . clearFlash . bind ( this ) ;
this . onHashChange = this . onHashChange . bind ( this ) ;
this . notes _url = notes _url ;
this . note _ids = note _ids ;
this . enableGFM = enableGFM ;
// Used to keep track of updated notes while people are editing things
this . updatedNotesTrackingMap = { } ;
this . last _fetched _at = last _fetched _at ;
this . noteable _url = document . URL ;
2018-03-16 16:16:21 -04:00
this . notesCountBadge ||
( this . notesCountBadge = $ ( '.issuable-details' ) . find ( '.notes-tab .badge' ) ) ;
2017-06-18 03:09:45 -04:00
this . basePollingInterval = 15000 ;
this . maxPollingSteps = 4 ;
2018-06-21 08:22:40 -04:00
this . $wrapperEl = isInMRPage ( ) ? $ ( document ) . find ( '.diffs' ) : $ ( document ) ;
2017-06-18 03:09:45 -04:00
this . cleanBinding ( ) ;
this . addBinding ( ) ;
this . setPollingInterval ( ) ;
2018-06-21 07:52:43 -04:00
this . setupMainTargetNoteForm ( enableGFM ) ;
2017-07-06 14:05:58 -04:00
this . taskList = new TaskList ( {
2017-06-18 03:09:45 -04:00
dataType : 'note' ,
fieldName : 'note' ,
2018-03-16 16:16:21 -04:00
selector : '.notes' ,
2017-06-18 03:09:45 -04:00
} ) ;
this . collapseLongCommitList ( ) ;
this . setViewType ( view ) ;
2021-04-08 11:09:06 -04:00
// We are in the merge requests page so we need another edit form for Changes tab
2017-09-06 04:01:01 -04:00
if ( getPagePath ( 1 ) === 'merge_requests' ) {
2020-12-23 07:10:26 -05:00
$ ( '.note-edit-form' ) . clone ( ) . addClass ( 'mr-note-edit-form' ) . insertAfter ( '.note-edit-form' ) ;
2017-06-18 03:09:45 -04:00
}
2018-03-13 08:01:36 -04:00
const hash = getLocationHash ( ) ;
const $anchor = hash && document . getElementById ( hash ) ;
if ( $anchor ) {
this . loadLazyDiff ( { currentTarget : $anchor } ) ;
}
2017-06-18 03:09:45 -04:00
}
setViewType ( view ) {
2022-02-01 16:12:02 -05:00
this . view = getCookie ( 'diff_view' ) || view ;
2017-06-18 03:09:45 -04:00
}
addBinding ( ) {
// Edit note link
2018-02-27 19:10:43 -05:00
this . $wrapperEl . on ( 'click' , '.js-note-edit' , this . showEditForm . bind ( this ) ) ;
this . $wrapperEl . on ( 'click' , '.note-edit-cancel' , this . cancelEdit ) ;
2017-06-18 03:09:45 -04:00
// Reopen and close actions for Issue/MR combined with note form submit
2021-10-05 14:13:27 -04:00
this . $wrapperEl . on (
'click' ,
// this oddly written selector needs to match the old style (input with class) as
// well as the new DOM styling from the Vue-based note form
'input.js-comment-submit-button, .js-comment-submit-button > button:first-child' ,
this . postComment ,
) ;
2018-02-27 19:10:43 -05:00
this . $wrapperEl . on ( 'click' , '.js-comment-save-button' , this . updateComment ) ;
2018-06-21 08:22:40 -04:00
this . $wrapperEl . on ( 'keyup input' , '.js-note-text' , this . updateTargetButtons ) ;
2017-06-18 03:09:45 -04:00
// resolve a discussion
2018-02-27 19:10:43 -05:00
this . $wrapperEl . on ( 'click' , '.js-comment-resolve-button' , this . postComment ) ;
2017-06-18 03:09:45 -04:00
// remove a note (in general)
2018-02-27 19:10:43 -05:00
this . $wrapperEl . on ( 'click' , '.js-note-delete' , this . removeNote ) ;
2017-06-18 03:09:45 -04:00
// delete note attachment
2018-06-21 08:22:40 -04:00
this . $wrapperEl . on ( 'click' , '.js-note-attachment-delete' , this . removeAttachment ) ;
2017-06-18 03:09:45 -04:00
// update the file name when an attachment is selected
2018-06-21 08:22:40 -04:00
this . $wrapperEl . on ( 'change' , '.js-note-attachment-input' , this . updateFormAttachment ) ;
2017-06-18 03:09:45 -04:00
// reply to diff/discussion notes
2018-06-21 08:22:40 -04:00
this . $wrapperEl . on ( 'click' , '.js-discussion-reply-button' , this . onReplyToDiscussionNote ) ;
2017-06-18 03:09:45 -04:00
// add diff note
2018-02-27 19:10:43 -05:00
this . $wrapperEl . on ( 'click' , '.js-add-diff-note-button' , this . onAddDiffNote ) ;
2017-10-07 00:25:17 -04:00
// add diff note for images
2018-06-21 08:22:40 -04:00
this . $wrapperEl . on ( 'click' , '.js-add-image-diff-note-button' , this . onAddImageDiffNote ) ;
2017-06-18 03:09:45 -04:00
// hide diff note form
2018-06-21 08:22:40 -04:00
this . $wrapperEl . on ( 'click' , '.js-close-discussion-note-form' , this . cancelDiscussionForm ) ;
2017-06-18 03:09:45 -04:00
// toggle commit list
2018-06-21 08:22:40 -04:00
this . $wrapperEl . on ( 'click' , '.system-note-commit-list-toggler' , this . toggleCommitList ) ;
2018-03-13 08:01:36 -04:00
this . $wrapperEl . on ( 'click' , '.js-toggle-lazy-diff' , this . loadLazyDiff ) ;
2018-09-05 07:23:42 -04:00
this . $wrapperEl . on (
'click' ,
'.js-toggle-lazy-diff-retry-button' ,
this . onClickRetryLazyLoad . bind ( this ) ,
) ;
2018-04-16 07:30:46 -04:00
2017-06-18 03:09:45 -04:00
// fetch notes when tab becomes visible
2018-02-27 19:10:43 -05:00
this . $wrapperEl . on ( 'visibilitychange' , this . visibilityChange ) ;
2017-06-18 03:09:45 -04:00
// when issue status changes, we need to refresh data
2018-02-27 19:10:43 -05:00
this . $wrapperEl . on ( 'issuable:change' , this . refresh ) ;
2017-06-18 03:09:45 -04:00
// ajax:events that happen on Form when actions like Reopen, Close are performed on Issues and MRs.
2018-02-27 19:10:43 -05:00
this . $wrapperEl . on ( 'ajax:success' , '.js-main-target-form' , this . addNote ) ;
2018-06-21 08:22:40 -04:00
this . $wrapperEl . on ( 'ajax:success' , '.js-discussion-note-form' , this . addDiscussionNote ) ;
this . $wrapperEl . on ( 'ajax:success' , '.js-main-target-form' , this . resetMainTargetForm ) ;
2018-03-16 16:16:21 -04:00
this . $wrapperEl . on (
'ajax:complete' ,
'.js-main-target-form' ,
this . reenableTargetFormSubmitButton ,
) ;
2017-06-18 03:09:45 -04:00
// when a key is clicked on the notes
2018-02-27 19:10:43 -05:00
this . $wrapperEl . on ( 'keydown' , '.js-note-text' , this . keydownNoteText ) ;
2017-06-18 03:09:45 -04:00
// When the URL fragment/hash has changed, `#note_xxx`
2018-02-27 19:10:43 -05:00
$ ( window ) . on ( 'hashchange' , this . onHashChange ) ;
2017-06-18 03:09:45 -04:00
}
cleanBinding ( ) {
2018-02-27 19:10:43 -05:00
this . $wrapperEl . off ( 'click' , '.js-note-edit' ) ;
this . $wrapperEl . off ( 'click' , '.note-edit-cancel' ) ;
this . $wrapperEl . off ( 'click' , '.js-note-delete' ) ;
this . $wrapperEl . off ( 'click' , '.js-note-attachment-delete' ) ;
this . $wrapperEl . off ( 'click' , '.js-discussion-reply-button' ) ;
this . $wrapperEl . off ( 'click' , '.js-add-diff-note-button' ) ;
this . $wrapperEl . off ( 'click' , '.js-add-image-diff-note-button' ) ;
2020-12-08 16:10:06 -05:00
// eslint-disable-next-line @gitlab/no-global-event-off
2018-02-27 19:10:43 -05:00
this . $wrapperEl . off ( 'visibilitychange' ) ;
this . $wrapperEl . off ( 'keyup input' , '.js-note-text' ) ;
this . $wrapperEl . off ( 'click' , '.js-note-target-reopen' ) ;
this . $wrapperEl . off ( 'click' , '.js-note-target-close' ) ;
this . $wrapperEl . off ( 'keydown' , '.js-note-text' ) ;
this . $wrapperEl . off ( 'click' , '.js-comment-resolve-button' ) ;
this . $wrapperEl . off ( 'click' , '.system-note-commit-list-toggler' ) ;
2018-03-13 08:01:36 -04:00
this . $wrapperEl . off ( 'click' , '.js-toggle-lazy-diff' ) ;
2018-04-16 07:30:46 -04:00
this . $wrapperEl . off ( 'click' , '.js-toggle-lazy-diff-retry-button' ) ;
2018-02-27 19:10:43 -05:00
this . $wrapperEl . off ( 'ajax:success' , '.js-main-target-form' ) ;
this . $wrapperEl . off ( 'ajax:success' , '.js-discussion-note-form' ) ;
this . $wrapperEl . off ( 'ajax:complete' , '.js-main-target-form' ) ;
2017-06-18 03:09:45 -04:00
$ ( window ) . off ( 'hashchange' , this . onHashChange ) ;
}
static initCommentTypeToggle ( form ) {
2021-10-05 14:13:27 -04:00
const el = form . querySelector ( '.js-comment-type-dropdown' ) ;
const { noteableName } = el . dataset ;
2017-06-18 03:09:45 -04:00
const noteTypeInput = form . querySelector ( '#note_type' ) ;
2021-10-05 14:13:27 -04:00
const formHasContent = form . querySelector ( '.js-note-text' ) . value . trim ( ) . length > 0 ;
2017-06-18 03:09:45 -04:00
2021-10-05 14:13:27 -04:00
form . commentTypeComponent = new Vue ( {
el ,
data ( ) {
return {
noteType : constants . COMMENT ,
disabled : ! formHasContent ,
} ;
} ,
render ( createElement ) {
return createElement ( CommentTypeDropdown , {
props : {
noteType : this . noteType ,
noteableDisplayName : noteableName ,
disabled : this . disabled ,
} ,
on : {
change : ( arg ) => {
this . noteType = arg ;
if ( this . noteType === constants . DISCUSSION ) {
noteTypeInput . value = constants . DISCUSSION _NOTE ;
} else {
noteTypeInput . value = '' ;
}
} ,
} ,
} ) ;
} ,
} ) ;
2017-06-18 03:09:45 -04:00
}
keydownNoteText ( e ) {
2019-12-16 16:08:00 -05:00
let discussionNoteForm ;
let editNote ;
let myLastNote ;
let myLastNoteEditBtn ;
let newText ;
let originalText ;
2017-09-06 12:14:34 -04:00
if ( isMetaKey ( e ) ) {
2017-06-18 03:09:45 -04:00
return ;
2016-07-24 16:45:11 -04:00
}
2019-12-16 16:08:00 -05:00
const $textarea = $ ( e . target ) ;
2017-06-18 03:09:45 -04:00
// Edit previous note when UP arrow is hit
switch ( e . which ) {
case 38 :
if ( $textarea . val ( ) !== '' ) {
return ;
}
2018-03-16 16:16:21 -04:00
myLastNote = $ (
2018-06-21 08:22:40 -04:00
` li.note[data-author-id=' ${ gon . current _user _id } '][data-editable]:last ` ,
2018-03-16 16:16:21 -04:00
$textarea . closest ( '.note, .notes_holder, #notes' ) ,
) ;
2017-06-18 03:09:45 -04:00
if ( myLastNote . length ) {
myLastNoteEditBtn = myLastNote . find ( '.js-note-edit' ) ;
return myLastNoteEditBtn . trigger ( 'click' , [ true , myLastNote ] ) ;
}
break ;
// Cancel creating diff note or editing any note when ESCAPE is hit
case 27 :
discussionNoteForm = $textarea . closest ( '.js-discussion-note-form' ) ;
if ( discussionNoteForm . length ) {
2016-07-24 16:45:11 -04:00
if ( $textarea . val ( ) !== '' ) {
2020-04-24 05:09:44 -04:00
if ( ! window . confirm ( _ _ ( 'Your comment will be discarded.' ) ) ) {
2017-06-18 03:09:45 -04:00
return ;
2016-07-24 16:45:11 -04:00
}
}
2017-06-18 03:09:45 -04:00
this . removeDiscussionNoteForm ( discussionNoteForm ) ;
return ;
}
editNote = $textarea . closest ( '.note' ) ;
if ( editNote . length ) {
2018-02-20 17:20:48 -05:00
originalText = $textarea . closest ( 'form' ) . data ( 'originalNote' ) ;
2017-06-18 03:09:45 -04:00
newText = $textarea . val ( ) ;
if ( originalText !== newText ) {
2020-04-24 05:09:44 -04:00
if ( ! window . confirm ( _ _ ( 'Are you sure you want to discard this comment?' ) ) ) {
2017-06-18 03:09:45 -04:00
return ;
2016-07-24 16:45:11 -04:00
}
}
2017-06-18 03:09:45 -04:00
return this . removeNoteEditForm ( editNote ) ;
}
}
}
2016-07-24 16:45:11 -04:00
2017-06-18 03:09:45 -04:00
initRefresh ( ) {
if ( Notes . interval ) {
2016-07-24 16:45:11 -04:00
clearInterval ( Notes . interval ) ;
2017-06-18 03:09:45 -04:00
}
2019-11-13 16:06:45 -05:00
Notes . interval = setInterval ( ( ) => this . refresh ( ) , this . pollingInterval ) ;
2017-06-18 03:09:45 -04:00
}
2016-07-24 16:45:11 -04:00
2017-06-18 03:09:45 -04:00
refresh ( ) {
if ( ! document . hidden ) {
return this . getContent ( ) ;
}
}
2016-07-24 16:45:11 -04:00
2017-06-18 03:09:45 -04:00
getContent ( ) {
if ( this . refreshing ) {
return ;
}
2018-02-27 19:10:43 -05:00
2017-06-18 03:09:45 -04:00
this . refreshing = true ;
2018-02-27 19:10:43 -05:00
2018-03-16 16:16:21 -04:00
axios
. get ( ` ${ this . notes _url } ?html=true ` , {
headers : {
'X-Last-Fetched-At' : this . last _fetched _at ,
} ,
} )
. then ( ( { data } ) => {
2018-06-16 17:50:13 -04:00
const { notes } = data ;
2018-03-16 16:16:21 -04:00
this . last _fetched _at = data . last _fetched _at ;
this . setPollingInterval ( data . notes . length ) ;
$ . each ( notes , ( i , note ) => this . renderNote ( note ) ) ;
this . refreshing = false ;
} )
. catch ( ( ) => {
this . refreshing = false ;
} ) ;
2017-06-18 03:09:45 -04:00
}
/ * *
* Increase @ pollingInterval up to 120 seconds on every function call ,
* if ` shouldReset ` has a truthy value , 'null' or 'undefined' the variable
* will reset to @ basePollingInterval .
*
* Note : this function is used to gradually increase the polling interval
* if there aren ' t new notes coming from the server
* /
setPollingInterval ( shouldReset ) {
if ( shouldReset == null ) {
shouldReset = true ;
}
2019-12-16 16:08:00 -05:00
const nthInterval = this . basePollingInterval * Math . pow ( 2 , this . maxPollingSteps - 1 ) ;
2017-06-18 03:09:45 -04:00
if ( shouldReset ) {
this . pollingInterval = this . basePollingInterval ;
} else if ( this . pollingInterval < nthInterval ) {
this . pollingInterval *= 2 ;
}
return this . initRefresh ( ) ;
}
handleQuickActions ( noteEntity ) {
2019-12-16 16:08:00 -05:00
let votesBlock ;
2017-06-18 03:09:45 -04:00
if ( noteEntity . commands _changes ) {
if ( 'merge' in noteEntity . commands _changes ) {
Notes . checkMergeRequestStatus ( ) ;
2016-07-24 16:45:11 -04:00
}
2017-02-28 15:38:19 -05:00
2017-06-18 03:09:45 -04:00
if ( 'emoji_award' in noteEntity . commands _changes ) {
votesBlock = $ ( '.js-awards-block' ) . eq ( 0 ) ;
2017-06-26 23:43:32 -04:00
2018-03-16 16:16:21 -04:00
loadAwardsHandler ( )
2020-12-23 16:10:24 -05:00
. then ( ( awardsHandler ) => {
2018-06-21 08:22:40 -04:00
awardsHandler . addAwardToEmojiBar ( votesBlock , noteEntity . commands _changes . emoji _award ) ;
2018-03-16 16:16:21 -04:00
awardsHandler . scrollToAwards ( ) ;
} )
. catch ( ( ) => {
// ignore
} ) ;
2016-12-21 05:32:37 -05:00
}
2017-06-18 03:09:45 -04:00
}
}
2016-08-12 21:20:51 -04:00
2017-06-18 03:09:45 -04:00
setupNewNote ( $note ) {
// Update datetime format on the recent note
2021-07-14 02:09:45 -04:00
localTimeAgo ( $note . find ( '.js-timeago' ) . get ( ) , false ) ;
2016-07-24 16:45:11 -04:00
2017-06-18 03:09:45 -04:00
this . collapseLongCommitList ( ) ;
this . taskList . init ( ) ;
2017-03-09 20:29:11 -05:00
2017-06-18 03:09:45 -04:00
// This stops the note highlight, #note_xxx`, from being removed after real time update
// The `:target` selector does not re-evaluate after we replace element in the DOM
Notes . updateNoteTargetSelector ( $note ) ;
this . $noteToCleanHighlight = $note ;
}
2017-02-28 15:38:19 -05:00
2017-06-18 03:09:45 -04:00
onHashChange ( ) {
if ( this . $noteToCleanHighlight ) {
Notes . updateNoteTargetSelector ( this . $noteToCleanHighlight ) ;
}
2017-04-19 15:48:48 -04:00
2017-06-18 03:09:45 -04:00
this . $noteToCleanHighlight = null ;
}
static updateNoteTargetSelector ( $note ) {
2017-12-11 07:28:11 -05:00
const hash = getLocationHash ( ) ;
2017-06-18 03:09:45 -04:00
// Needs to be an explicit true/false for the jQuery `toggleClass(force)`
const addTargetClass = Boolean ( hash && $note . filter ( ` # ${ hash } ` ) . length > 0 ) ;
$note . toggleClass ( 'target' , addTargetClass ) ;
}
/ * *
* Render note in main comments area .
*
* Note : for rendering inline notes use renderDiscussionNote
* /
renderNote ( noteEntity , $form , $notesList = $ ( '.main-notes-list' ) ) {
if ( noteEntity . discussion _html ) {
return this . renderDiscussionNote ( noteEntity , $form ) ;
}
2017-04-19 15:48:48 -04:00
2017-06-18 03:09:45 -04:00
if ( ! noteEntity . valid ) {
2018-02-27 19:10:43 -05:00
if ( noteEntity . errors && noteEntity . errors . commands _only ) {
2018-06-21 08:22:40 -04:00
if ( noteEntity . commands _changes && Object . keys ( noteEntity . commands _changes ) . length > 0 ) {
2017-06-30 10:10:09 -04:00
$notesList . find ( '.system-note.being-posted' ) . remove ( ) ;
}
2021-03-22 11:09:31 -04:00
this . addFlash ( {
message : noteEntity . errors . commands _only ,
type : 'notice' ,
parent : this . parentTimeline . get ( 0 ) ,
} ) ;
2016-08-12 21:20:51 -04:00
this . refresh ( ) ;
2016-07-24 16:45:11 -04:00
}
2017-06-18 03:09:45 -04:00
return ;
}
2016-07-24 16:45:11 -04:00
2017-06-18 03:09:45 -04:00
const $note = $notesList . find ( ` #note_ ${ noteEntity . id } ` ) ;
if ( Notes . isNewNote ( noteEntity , this . note _ids ) ) {
2018-06-21 08:22:40 -04:00
if ( isInMRPage ( ) ) {
2018-02-27 19:10:43 -05:00
return ;
}
2017-05-03 13:41:16 -04:00
this . note _ids . push ( noteEntity . id ) ;
2016-07-26 06:10:27 -04:00
2017-06-18 03:09:45 -04:00
if ( $notesList . length ) {
$notesList . find ( '.system-note.being-posted' ) . remove ( ) ;
2016-07-26 06:10:27 -04:00
}
2017-06-18 03:09:45 -04:00
const $newNote = Notes . animateAppendNote ( noteEntity . html , $notesList ) ;
2016-07-26 06:10:27 -04:00
2017-06-18 03:09:45 -04:00
this . setupNewNote ( $newNote ) ;
this . refresh ( ) ;
2016-07-24 16:45:11 -04:00
return this . updateNotesCount ( 1 ) ;
2018-03-16 16:16:21 -04:00
} else if ( Notes . isUpdatedNote ( noteEntity , $note ) ) {
// The server can send the same update multiple times so we need to make sure to only update once per actual update.
2017-06-18 03:09:45 -04:00
const isEditing = $note . hasClass ( 'is-editing' ) ;
2020-12-23 07:10:26 -05:00
const initialContent = normalizeNewlines ( $note . find ( '.original-note-content' ) . text ( ) . trim ( ) ) ;
2017-06-18 03:09:45 -04:00
const $textarea = $note . find ( '.js-note-text' ) ;
const currentContent = $textarea . val ( ) ;
// There can be CRLF vs LF mismatches if we don't sanitize and compare the same way
const sanitizedNoteNote = normalizeNewlines ( noteEntity . note ) ;
2018-03-16 16:16:21 -04:00
const isTextareaUntouched =
2018-06-21 08:22:40 -04:00
currentContent === initialContent || currentContent === sanitizedNoteNote ;
2017-03-08 11:07:26 -05:00
2017-06-18 03:09:45 -04:00
if ( isEditing && isTextareaUntouched ) {
$textarea . val ( noteEntity . note ) ;
this . updatedNotesTrackingMap [ noteEntity . id ] = noteEntity ;
2018-03-16 16:16:21 -04:00
} else if ( isEditing && ! isTextareaUntouched ) {
2017-06-18 03:09:45 -04:00
this . putConflictEditWarningInPlace ( noteEntity , $note ) ;
this . updatedNotesTrackingMap [ noteEntity . id ] = noteEntity ;
2018-03-16 16:16:21 -04:00
} else {
2017-06-18 03:09:45 -04:00
const $updatedNote = Notes . animateUpdateNote ( noteEntity . html , $note ) ;
this . setupNewNote ( $updatedNote ) ;
2017-05-05 06:57:29 -04:00
}
2017-06-18 03:09:45 -04:00
}
}
isParallelView ( ) {
2022-02-01 16:12:02 -05:00
return getCookie ( 'diff_view' ) === 'parallel' ;
2017-06-18 03:09:45 -04:00
}
/ * *
2018-02-27 19:10:43 -05:00
* Render note in discussion area . To render inline notes use renderDiscussionNote .
2017-06-18 03:09:45 -04:00
* /
renderDiscussionNote ( noteEntity , $form ) {
2019-12-16 16:08:00 -05:00
let discussionContainer ;
let row ;
2018-02-27 19:10:43 -05:00
2017-06-18 03:09:45 -04:00
if ( ! Notes . isNewNote ( noteEntity , this . note _ids ) ) {
return ;
}
this . note _ids . push ( noteEntity . id ) ;
2017-10-21 11:19:04 -04:00
2019-12-16 16:08:00 -05:00
const form =
$form || $ ( ` .js-discussion-note-form[data-discussion-id=" ${ noteEntity . discussion _id } "] ` ) ;
2018-03-16 16:16:21 -04:00
row =
form . length || ! noteEntity . discussion _line _code
? form . closest ( 'tr' )
: $ ( ` # ${ noteEntity . discussion _line _code } ` ) ;
2017-10-07 00:25:17 -04:00
if ( noteEntity . on _image ) {
row = form ;
}
2017-06-18 03:09:45 -04:00
// is this the first note of discussion?
2018-06-21 08:22:40 -04:00
discussionContainer = $ ( ` .notes[data-discussion-id=" ${ noteEntity . discussion _id } "] ` ) ;
2017-06-18 03:09:45 -04:00
if ( ! discussionContainer . length ) {
discussionContainer = form . closest ( '.discussion' ) . find ( '.notes' ) ;
}
if ( discussionContainer . length === 0 ) {
if ( noteEntity . diff _discussion _html ) {
2019-12-16 16:08:00 -05:00
const $discussion = $ ( noteEntity . diff _discussion _html ) . renderGFM ( ) ;
2016-07-26 06:10:27 -04:00
2018-06-21 08:22:40 -04:00
if ( ! this . isParallelView ( ) || row . hasClass ( 'js-temp-notes-holder' ) || noteEntity . on _image ) {
2017-06-18 03:09:45 -04:00
// insert the note and the reply button after the temp row
row . after ( $discussion ) ;
} else {
// Merge new discussion HTML in
2019-12-16 16:08:00 -05:00
const $notes = $discussion . find (
` .notes[data-discussion-id=" ${ noteEntity . discussion _id } "] ` ,
) ;
const contentContainerClass = $notes
2019-09-24 08:06:20 -04:00
. closest ( '.notes-content' )
. attr ( 'class' )
. split ( ' ' )
. join ( '.' ) ;
2018-03-16 16:16:21 -04:00
row
2019-09-24 08:06:20 -04:00
. find ( ` . ${ contentContainerClass } .content ` )
2018-03-16 16:16:21 -04:00
. append ( $notes . closest ( '.content' ) . children ( ) ) ;
2016-07-26 06:10:27 -04:00
}
2018-06-21 08:22:40 -04:00
} else {
Notes . animateAppendNote ( noteEntity . discussion _html , $ ( '.main-notes-list' ) ) ;
2017-05-05 06:57:29 -04:00
}
2017-06-18 03:09:45 -04:00
} else {
// append new note to all matching discussions
Notes . animateAppendNote ( noteEntity . html , discussionContainer ) ;
}
2016-07-24 16:45:11 -04:00
2021-07-14 02:09:45 -04:00
localTimeAgo ( document . querySelectorAll ( '.js-timeago' ) , false ) ;
2017-06-18 03:09:45 -04:00
Notes . checkMergeRequestStatus ( ) ;
return this . updateNotesCount ( 1 ) ;
}
2016-07-24 16:45:11 -04:00
2017-06-18 03:09:45 -04:00
getLineHolder ( changesDiscussionContainer ) {
2018-03-16 16:16:21 -04:00
return $ ( changesDiscussionContainer )
. closest ( '.notes_holder' )
2017-06-18 03:09:45 -04:00
. prevAll ( '.line_holder' )
. first ( )
. get ( 0 ) ;
}
2016-07-26 11:16:42 -04:00
2017-06-18 03:09:45 -04:00
/ * *
* Called in response the main target form has been successfully submitted .
*
* Removes any errors .
* Resets text and preview .
* Resets buttons .
* /
resetMainTargetForm ( e ) {
2019-12-16 16:08:00 -05:00
const form = $ ( '.js-main-target-form' ) ;
2017-06-18 03:09:45 -04:00
// remove validation errors
form . find ( '.js-errors' ) . remove ( ) ;
// reset text and preview
form . find ( '.js-md-write-button' ) . click ( ) ;
2020-12-23 07:10:26 -05:00
form . find ( '.js-note-text' ) . val ( '' ) . trigger ( 'input' ) ;
form . find ( '.js-note-text' ) . data ( 'autosave' ) . reset ( ) ;
2017-06-18 03:09:45 -04:00
2019-12-16 16:08:00 -05:00
const event = document . createEvent ( 'Event' ) ;
2017-06-18 03:09:45 -04:00
event . initEvent ( 'autosize:update' , true , false ) ;
form . find ( '.js-autosize' ) [ 0 ] . dispatchEvent ( event ) ;
this . updateTargetButtons ( e ) ;
}
reenableTargetFormSubmitButton ( ) {
2019-12-16 16:08:00 -05:00
const form = $ ( '.js-main-target-form' ) ;
2017-06-18 03:09:45 -04:00
return form . find ( '.js-note-text' ) . trigger ( 'input' ) ;
}
/ * *
* Shows the main form and does some setup on it .
*
* Sets some hidden fields in the form .
* /
2018-06-21 07:52:43 -04:00
setupMainTargetNoteForm ( enableGFM ) {
2017-06-18 03:09:45 -04:00
// find the form
2019-12-16 16:08:00 -05:00
const form = $ ( '.js-new-note-form' ) ;
2017-06-18 03:09:45 -04:00
// Set a global clone of the form for later cloning
this . formClone = form . clone ( ) ;
// show the form
2018-06-21 07:52:43 -04:00
this . setupNoteForm ( form , enableGFM ) ;
2017-06-18 03:09:45 -04:00
// fix classes
form . removeClass ( 'js-new-note-form' ) ;
form . addClass ( 'js-main-target-form' ) ;
form . find ( '#note_line_code' ) . remove ( ) ;
form . find ( '#note_position' ) . remove ( ) ;
form . find ( '#note_type' ) . val ( '' ) ;
2017-07-27 10:36:39 -04:00
form . find ( '#note_project_id' ) . remove ( ) ;
2017-06-18 03:09:45 -04:00
form . find ( '#in_reply_to_discussion_id' ) . remove ( ) ;
this . parentTimeline = form . parents ( '.timeline' ) ;
if ( form . length ) {
Notes . initCommentTypeToggle ( form . get ( 0 ) ) ;
}
}
/ * *
* General note form setup .
*
* deactivates the submit button when text is empty
* hides the preview button when text is empty
2018-09-17 05:17:33 -04:00
* set up GFM auto complete
2017-06-18 03:09:45 -04:00
* show the form
* /
2018-06-21 07:52:43 -04:00
setupNoteForm ( form , enableGFM = defaultAutocompleteConfig ) {
this . glForm = new GLForm ( form , enableGFM ) ;
2019-12-16 16:08:00 -05:00
const textarea = form . find ( '.js-note-text' ) ;
const key = [
2019-05-06 10:19:34 -04:00
s _ _ ( 'NoteForm|Note' ) ,
2017-06-18 03:09:45 -04:00
form . find ( '#note_noteable_type' ) . val ( ) ,
form . find ( '#note_noteable_id' ) . val ( ) ,
form . find ( '#note_commit_id' ) . val ( ) ,
form . find ( '#note_type' ) . val ( ) ,
2017-07-27 10:36:39 -04:00
form . find ( '#note_project_id' ) . val ( ) ,
2017-06-18 03:09:45 -04:00
form . find ( '#in_reply_to_discussion_id' ) . val ( ) ,
2016-10-13 17:11:43 -04:00
2017-06-18 03:09:45 -04:00
// LegacyDiffNote
form . find ( '#note_line_code' ) . val ( ) ,
2016-10-13 17:11:43 -04:00
2017-06-18 03:09:45 -04:00
// DiffNote
2017-10-07 00:25:17 -04:00
form . find ( '#note_position' ) . val ( ) ,
2017-06-18 03:09:45 -04:00
] ;
return new Autosave ( textarea , key ) ;
}
/ * *
* Called in response to the new note form being submitted
*
* Adds new note to list .
* /
addNote ( $form , note ) {
return this . renderNote ( note ) ;
}
addNoteError ( $form ) {
let formParentTimeline ;
if ( $form . hasClass ( 'js-main-target-form' ) ) {
formParentTimeline = $form . parents ( '.timeline' ) ;
} else if ( $form . hasClass ( 'js-discussion-note-form' ) ) {
formParentTimeline = $form . closest ( '.discussion-notes' ) . find ( '.notes' ) ;
}
2021-03-22 11:09:31 -04:00
return this . addFlash ( {
message : _ _ (
2019-05-06 10:19:34 -04:00
'Your comment could not be submitted! Please check your network connection and try again.' ,
) ,
2021-03-22 11:09:31 -04:00
parent : formParentTimeline . get ( 0 ) ,
} ) ;
2017-06-18 03:09:45 -04:00
}
2019-09-16 08:06:26 -04:00
updateNoteError ( ) {
2021-03-22 11:09:31 -04:00
createFlash ( {
message : _ _ (
'Your comment could not be updated! Please check your network connection and try again.' ,
) ,
} ) ;
2017-06-18 03:09:45 -04:00
}
/ * *
* Called in response to the new note form being submitted
*
* Adds new note to list .
* /
addDiscussionNote ( $form , note , isNewDiffComment ) {
if ( $form . attr ( 'data-resolve-all' ) != null ) {
2019-12-16 16:08:00 -05:00
const discussionId = $form . data ( 'discussionId' ) ;
const mergeRequestId = $form . data ( 'noteableIid' ) ;
2017-06-18 03:09:45 -04:00
if ( ResolveService != null ) {
ResolveService . toggleResolveForDiscussion ( mergeRequestId , discussionId ) ;
}
}
2016-08-12 21:20:51 -04:00
2017-06-18 03:09:45 -04:00
this . renderNote ( note , $form ) ;
// cleanup after successfully creating a diff/discussion note
if ( isNewDiffComment ) {
this . removeDiscussionNoteForm ( $form ) ;
}
}
/ * *
* Called in response to the edit note form being submitted
*
* Updates the current note field .
* /
updateNote ( noteEntity , $targetNote ) {
// Convert returned HTML to a jQuery object so we can modify it further
2019-12-16 16:08:00 -05:00
const $noteEntityEl = $ ( noteEntity . html ) ;
2021-09-02 11:11:35 -04:00
const $noteAvatar = $noteEntityEl . find ( '.image-diff-avatar-link' ) ;
2022-02-03 07:18:57 -05:00
const $targetNoteBadge = $targetNote . find ( '.design-note-pin' ) ;
2021-09-02 11:11:35 -04:00
$noteAvatar . append ( $targetNoteBadge ) ;
2017-06-18 03:09:45 -04:00
this . revertNoteEditForm ( $targetNote ) ;
$noteEntityEl . renderGFM ( ) ;
// Find the note's `li` element by ID and replace it with the updated HTML
2019-12-16 16:08:00 -05:00
const $note _li = $ ( ` .note-row- ${ noteEntity . id } ` ) ;
2017-06-18 03:09:45 -04:00
$note _li . replaceWith ( $noteEntityEl ) ;
this . setupNewNote ( $noteEntityEl ) ;
}
2016-10-13 17:11:43 -04:00
2017-06-18 03:09:45 -04:00
checkContentToAllowEditing ( $el ) {
2020-12-23 07:10:26 -05:00
const initialContent = $el . find ( '.original-note-content' ) . text ( ) . trim ( ) ;
2019-12-16 16:08:00 -05:00
const currentContent = $el . find ( '.js-note-text' ) . val ( ) ;
let isAllowed = true ;
2016-11-15 16:32:55 -05:00
2017-06-18 03:09:45 -04:00
if ( currentContent === initialContent ) {
this . removeNoteEditForm ( $el ) ;
2018-03-16 16:16:21 -04:00
} else {
2019-12-16 16:08:00 -05:00
const isWidgetVisible = isInViewport ( $el . get ( 0 ) ) ;
2016-10-13 17:11:43 -04:00
2017-06-18 03:09:45 -04:00
if ( ! isWidgetVisible ) {
2017-09-06 04:01:01 -04:00
scrollToElement ( $el ) ;
2016-10-13 17:11:43 -04:00
}
2017-06-18 03:09:45 -04:00
$el . find ( '.js-finish-edit-warning' ) . show ( ) ;
isAllowed = false ;
}
2016-07-24 16:45:11 -04:00
2017-06-18 03:09:45 -04:00
return isAllowed ;
}
2016-08-12 21:20:51 -04:00
2017-06-18 03:09:45 -04:00
/ * *
* Called in response to clicking the edit note link
*
* Replaces the note text with the note edit form
* Adds a data attribute to the form with the original content of the note for cancellations
* /
2019-09-16 08:06:26 -04:00
showEditForm ( e ) {
2017-06-18 03:09:45 -04:00
e . preventDefault ( ) ;
2016-07-24 16:45:11 -04:00
2019-12-16 16:08:00 -05:00
const $target = $ ( e . target ) ;
const $editForm = $ ( this . getEditFormSelector ( $target ) ) ;
const $note = $target . closest ( '.note' ) ;
const $currentlyEditing = $ ( '.note.is-editing:visible' ) ;
2017-05-03 13:41:16 -04:00
2017-06-18 03:09:45 -04:00
if ( $currentlyEditing . length ) {
2019-12-16 16:08:00 -05:00
const isEditAllowed = this . checkContentToAllowEditing ( $currentlyEditing ) ;
2017-05-03 13:41:16 -04:00
2017-06-18 03:09:45 -04:00
if ( ! isEditAllowed ) {
return ;
2017-05-03 13:41:16 -04:00
}
2017-06-18 03:09:45 -04:00
}
2016-11-14 15:12:51 -05:00
2017-06-18 03:09:45 -04:00
$note . find ( '.js-note-attachment-delete' ) . show ( ) ;
$editForm . addClass ( 'current-note-edit-form' ) ;
$note . addClass ( 'is-editing' ) ;
this . putEditFormInPlace ( $target ) ;
}
/ * *
* Called in response to clicking the edit note link
*
* Hides edit form and restores the original note text to the editor textarea .
* /
cancelEdit ( e ) {
e . preventDefault ( ) ;
const $target = $ ( e . target ) ;
const $note = $target . closest ( '.note' ) ;
const noteId = $note . attr ( 'data-note-id' ) ;
this . revertNoteEditForm ( $target ) ;
if ( this . updatedNotesTrackingMap [ noteId ] ) {
const $newNote = $ ( this . updatedNotesTrackingMap [ noteId ] . html ) ;
$note . replaceWith ( $newNote ) ;
this . setupNewNote ( $newNote ) ;
// Now that we have taken care of the update, clear it out
delete this . updatedNotesTrackingMap [ noteId ] ;
2018-03-16 16:16:21 -04:00
} else {
2017-06-18 03:09:45 -04:00
$note . find ( '.js-finish-edit-warning' ) . hide ( ) ;
this . removeNoteEditForm ( $note ) ;
}
}
2016-11-14 15:12:51 -05:00
2017-06-18 03:09:45 -04:00
revertNoteEditForm ( $target ) {
$target = $target || $ ( '.note.is-editing:visible' ) ;
2019-12-16 16:08:00 -05:00
const selector = this . getEditFormSelector ( $target ) ;
const $editForm = $ ( selector ) ;
2016-12-06 17:11:09 -05:00
2018-02-27 19:10:43 -05:00
$editForm . insertBefore ( '.diffs' ) ;
2017-06-18 03:09:45 -04:00
$editForm . find ( '.js-comment-save-button' ) . enable ( ) ;
$editForm . find ( '.js-finish-edit-warning' ) . hide ( ) ;
}
2016-12-06 17:11:09 -05:00
2017-06-18 03:09:45 -04:00
getEditFormSelector ( $el ) {
2019-12-16 16:08:00 -05:00
let selector = '.note-edit-form:not(.mr-note-edit-form)' ;
2016-10-13 17:11:43 -04:00
2017-06-18 03:09:45 -04:00
if ( $el . parents ( '#diffs' ) . length ) {
selector = '.note-edit-form.mr-note-edit-form' ;
}
2016-07-24 16:45:11 -04:00
2017-06-18 03:09:45 -04:00
return selector ;
}
removeNoteEditForm ( $note ) {
2019-12-16 16:08:00 -05:00
const form = $note . find ( '.diffs .current-note-edit-form' ) ;
2018-02-27 19:10:43 -05:00
2017-06-18 03:09:45 -04:00
$note . removeClass ( 'is-editing' ) ;
form . removeClass ( 'current-note-edit-form' ) ;
form . find ( '.js-finish-edit-warning' ) . hide ( ) ;
// Replace markdown textarea text with original note text.
2018-06-21 08:22:40 -04:00
return form . find ( '.js-note-text' ) . val ( form . find ( 'form.edit-note' ) . data ( 'originalNote' ) ) ;
2017-06-18 03:09:45 -04: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 ( e ) {
2019-12-16 16:08:00 -05:00
const $note = $ ( e . currentTarget ) . closest ( '.note' ) ;
const noteElId = $note . attr ( 'id' ) ;
2019-11-13 16:06:45 -05:00
$ ( ` .note[id=" ${ noteElId } "] ` ) . each ( ( i , el ) => {
// 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.
const $note = $ ( el ) ;
const $notes = $note . closest ( '.discussion-notes' ) ;
const discussionId = $ ( '.notes' , $notes ) . data ( 'discussionId' ) ;
$note . remove ( ) ;
2018-03-16 16:16:21 -04:00
2019-11-13 16:06:45 -05:00
// check if this is the last note for this line
if ( $notes . find ( '.note' ) . length === 0 ) {
const notesTr = $notes . closest ( 'tr' ) ;
2018-03-16 16:16:21 -04:00
2019-11-13 16:06:45 -05:00
// "Discussions" tab
$notes . closest ( '.timeline-entry' ) . remove ( ) ;
2018-03-16 16:16:21 -04:00
2019-11-13 16:06:45 -05:00
$ ( ` .js-diff-avatars- ${ discussionId } ` ) . trigger ( 'remove.vue' ) ;
2018-03-16 16:16:21 -04:00
2019-11-13 16:06:45 -05:00
// The notes tr can contain multiple lists of notes, like on the parallel diff
// notesTr does not exist for image diffs
if ( notesTr . find ( '.discussion-notes' ) . length > 1 || notesTr . length === 0 ) {
const $diffFile = $notes . closest ( '.diff-file' ) ;
if ( $diffFile . length > 0 ) {
const removeBadgeEvent = new CustomEvent ( 'removeBadge.imageDiff' , {
detail : {
// badgeNumber's start with 1 and index starts with 0
badgeNumber : $notes . index ( ) + 1 ,
} ,
} ) ;
2018-03-16 16:16:21 -04:00
2019-11-13 16:06:45 -05:00
$diffFile [ 0 ] . dispatchEvent ( removeBadgeEvent ) ;
2016-07-24 16:45:11 -04:00
}
2019-11-13 16:06:45 -05:00
$notes . remove ( ) ;
} else if ( notesTr . length > 0 ) {
notesTr . remove ( ) ;
}
}
} ) ;
2017-06-18 03:09:45 -04:00
Notes . checkMergeRequestStatus ( ) ;
return this . updateNotesCount ( - 1 ) ;
}
/ * *
* 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 ( ) {
const $note = $ ( this ) . closest ( '.note' ) ;
$note . find ( '.note-attachment' ) . remove ( ) ;
$note . find ( '.note-body > .note-text' ) . show ( ) ;
$note . find ( '.note-header' ) . show ( ) ;
2018-06-21 08:22:40 -04:00
return $note . find ( '.diffs .current-note-edit-form' ) . remove ( ) ;
2017-06-18 03:09:45 -04:00
}
/ * *
* Called when clicking on the "reply" button for a diff line .
*
* Shows the note form below the notes .
* /
onReplyToDiscussionNote ( e ) {
this . replyToDiscussionNote ( e . target ) ;
}
replyToDiscussionNote ( target ) {
2019-12-16 16:08:00 -05:00
const form = this . cleanForm ( this . formClone . clone ( ) ) ;
const replyLink = $ ( target ) . closest ( '.js-discussion-reply-button' ) ;
2017-06-18 03:09:45 -04:00
// insert the form after the button
2020-12-23 07:10:26 -05:00
replyLink . closest ( '.discussion-reply-holder' ) . hide ( ) . after ( form ) ;
2017-06-18 03:09:45 -04:00
// show the form
return this . setupDiscussionNoteForm ( replyLink , 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" and "lineCode" data attributes set .
* /
setupDiscussionNoteForm ( dataHolder , form ) {
2018-09-17 05:17:33 -04:00
// set up note target
2017-10-07 00:25:17 -04:00
let diffFileData = dataHolder . closest ( '.text-file' ) ;
if ( diffFileData . length === 0 ) {
diffFileData = dataHolder . closest ( '.image' ) ;
}
2017-06-12 14:43:21 -04:00
2019-12-16 16:08:00 -05:00
const discussionID = dataHolder . data ( 'discussionId' ) ;
2017-06-18 03:09:45 -04:00
if ( discussionID ) {
form . attr ( 'data-discussion-id' , discussionID ) ;
form . find ( '#in_reply_to_discussion_id' ) . val ( discussionID ) ;
}
2016-07-24 16:45:11 -04:00
2017-07-27 10:36:39 -04:00
form . find ( '#note_project_id' ) . val ( dataHolder . data ( 'discussionProjectId' ) ) ;
2017-06-18 03:09:45 -04:00
form . attr ( 'data-line-code' , dataHolder . data ( 'lineCode' ) ) ;
form . find ( '#line_type' ) . val ( dataHolder . data ( 'lineType' ) ) ;
2016-07-24 16:45:11 -04:00
2017-06-12 14:43:21 -04:00
form . find ( '#note_noteable_type' ) . val ( diffFileData . data ( 'noteableType' ) ) ;
form . find ( '#note_noteable_id' ) . val ( diffFileData . data ( 'noteableId' ) ) ;
form . find ( '#note_commit_id' ) . val ( diffFileData . data ( 'commitId' ) ) ;
2017-06-18 03:09:45 -04:00
form . find ( '#note_type' ) . val ( dataHolder . data ( 'noteType' ) ) ;
2016-08-12 21:20:51 -04:00
2017-06-18 03:09:45 -04:00
// LegacyDiffNote
form . find ( '#note_line_code' ) . val ( dataHolder . data ( 'lineCode' ) ) ;
2016-07-24 16:45:11 -04:00
2017-06-18 03:09:45 -04:00
// DiffNote
form . find ( '#note_position' ) . val ( dataHolder . attr ( 'data-position' ) ) ;
2017-05-12 06:19:32 -04:00
2021-01-28 10:09:06 -05:00
form . append ( '</div>' ) . find ( '.js-close-discussion-note-form' ) . show ( ) . removeClass ( 'hide' ) ;
2017-06-18 03:09:45 -04:00
form . find ( '.js-note-target-close' ) . remove ( ) ;
form . find ( '.js-note-new-discussion' ) . remove ( ) ;
this . setupNoteForm ( form ) ;
2016-07-24 16:45:11 -04:00
2018-06-21 08:22:40 -04:00
form . removeClass ( 'js-main-target-form' ) . addClass ( 'discussion-form js-discussion-note-form' ) ;
2016-08-12 21:20:51 -04:00
2017-06-18 03:09:45 -04:00
form . find ( '.js-note-text' ) . focus ( ) ;
2018-06-21 08:22:40 -04:00
form . find ( '.js-comment-resolve-button' ) . attr ( 'data-discussion-id' , discussionID ) ;
2017-06-18 03:09:45 -04: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 .
* /
onAddDiffNote ( e ) {
e . preventDefault ( ) ;
const link = e . currentTarget || e . target ;
const $link = $ ( link ) ;
const showReplyInput = ! $link . hasClass ( 'js-diff-comment-avatar' ) ;
this . toggleDiffNote ( {
target : $link ,
lineType : link . dataset . lineType ,
2018-03-16 16:16:21 -04:00
showReplyInput ,
2019-06-06 11:51:04 -04:00
currentUsername : gon . current _username ,
currentUserAvatar : gon . current _user _avatar _url ,
currentUserFullname : gon . current _user _fullname ,
2017-06-18 03:09:45 -04:00
} ) ;
}
2017-10-07 00:25:17 -04:00
onAddImageDiffNote ( e ) {
const $link = $ ( e . currentTarget || e . target ) ;
const $diffFile = $link . closest ( '.diff-file' ) ;
const clickEvent = new CustomEvent ( 'click.imageDiff' , {
detail : e ,
} ) ;
$diffFile [ 0 ] . dispatchEvent ( clickEvent ) ;
2018-09-17 05:17:33 -04:00
// Set up comment form
2017-10-07 00:25:17 -04:00
let newForm ;
2018-06-21 08:22:40 -04:00
const $noteContainer = $link . closest ( '.diff-viewer' ) . find ( '.note-container' ) ;
2017-10-07 00:25:17 -04:00
const $form = $noteContainer . find ( '> .discussion-form' ) ;
if ( $form . length === 0 ) {
newForm = this . cleanForm ( this . formClone . clone ( ) ) ;
newForm . appendTo ( $noteContainer ) ;
} else {
newForm = $form ;
}
this . setupDiscussionNoteForm ( $link , newForm ) ;
}
2019-09-16 08:06:26 -04:00
toggleDiffNote ( { target , lineType , forceShow , showReplyInput = false } ) {
2019-12-16 16:08:00 -05:00
let addForm ;
let newForm ;
let noteForm ;
let replyButton ;
let rowCssToAdd ;
const $link = $ ( target ) ;
const row = $link . closest ( 'tr' ) ;
2017-06-18 03:09:45 -04:00
const nextRow = row . next ( ) ;
let targetRow = row ;
if ( nextRow . is ( '.notes_holder' ) ) {
targetRow = nextRow ;
}
2017-03-09 20:29:11 -05:00
2019-12-16 16:08:00 -05:00
const hasNotes = nextRow . is ( '.notes_holder' ) ;
2017-06-18 03:09:45 -04:00
addForm = false ;
let lineTypeSelector = '' ;
2018-03-16 16:16:21 -04:00
rowCssToAdd =
2019-04-02 13:10:49 -04:00
'<tr class="notes_holder js-temp-notes-holder"><td class="notes-content" colspan="3"><div class="content"></div></td></tr>' ;
2017-06-18 03:09:45 -04:00
// In parallel view, look inside the correct left/right pane
if ( this . isParallelView ( ) ) {
lineTypeSelector = ` . ${ lineType } ` ;
2018-03-16 16:16:21 -04:00
rowCssToAdd =
2019-04-02 13:10:49 -04:00
'<tr class="notes_holder js-temp-notes-holder"><td class="notes_line old"></td><td class="notes-content parallel old"><div class="content"></div></td><td class="notes_line new"></td><td class="notes-content parallel new"><div class="content"></div></td></tr>' ;
2017-06-18 03:09:45 -04:00
}
2019-04-02 13:10:49 -04:00
const notesContentSelector = ` .notes-content ${ lineTypeSelector } .content ` ;
2017-06-18 03:09:45 -04:00
let notesContent = targetRow . find ( notesContentSelector ) ;
if ( hasNotes && showReplyInput ) {
targetRow . show ( ) ;
notesContent = targetRow . find ( notesContentSelector ) ;
if ( notesContent . length ) {
notesContent . show ( ) ;
replyButton = notesContent . find ( '.js-discussion-reply-button:visible' ) ;
if ( replyButton . length ) {
this . replyToDiscussionNote ( replyButton [ 0 ] ) ;
} 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 ;
}
}
2017-03-30 21:33:45 -04:00
}
2017-06-18 03:09:45 -04:00
} else if ( showReplyInput ) {
// add a notes row and insert the form
row . after ( rowCssToAdd ) ;
targetRow = row . next ( ) ;
notesContent = targetRow . find ( notesContentSelector ) ;
addForm = true ;
} else {
2018-06-21 08:22:40 -04:00
const isCurrentlyShown = targetRow . find ( '.content:not(:empty)' ) . is ( ':visible' ) ;
2017-06-18 03:09:45 -04:00
const isForced = forceShow === true || forceShow === false ;
const showNow = forceShow === true || ( ! isCurrentlyShown && ! isForced ) ;
2018-04-20 11:33:55 -04:00
targetRow . toggleClass ( 'hide' , ! showNow ) ;
notesContent . toggleClass ( 'hide' , ! showNow ) ;
2017-06-18 03:09:45 -04:00
}
2017-03-09 20:29:11 -05:00
2017-06-18 03:09:45 -04:00
if ( addForm ) {
newForm = this . cleanForm ( this . formClone . clone ( ) ) ;
newForm . appendTo ( notesContent ) ;
// show the form
return this . setupDiscussionNoteForm ( $link , newForm ) ;
}
}
/ * *
* 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 ) {
2019-12-16 16:08:00 -05:00
const row = form . closest ( 'tr' ) ;
const glForm = form . data ( 'glForm' ) ;
2017-06-18 03:09:45 -04:00
glForm . destroy ( ) ;
2020-12-23 07:10:26 -05:00
form . find ( '.js-note-text' ) . data ( 'autosave' ) . reset ( ) ;
2018-03-16 16:16:21 -04:00
// show the reply button (will only work for replies)
form . prev ( '.discussion-reply-holder' ) . show ( ) ;
2017-06-18 03:09:45 -04:00
if ( row . is ( '.js-temp-notes-holder' ) ) {
// remove temporary row for diff lines
return row . remove ( ) ;
}
2020-04-29 20:09:37 -04:00
// only remove the form
return form . remove ( ) ;
2017-06-18 03:09:45 -04:00
}
cancelDiscussionForm ( e ) {
e . preventDefault ( ) ;
2017-10-07 00:25:17 -04:00
const $form = $ ( e . target ) . closest ( '.js-discussion-note-form' ) ;
const $discussionNote = $ ( e . target ) . closest ( '.discussion-notes' ) ;
if ( $discussionNote . length === 0 ) {
// Only send blur event when the discussion form
// is not part of a discussion note
const $diffFile = $form . closest ( '.diff-file' ) ;
if ( $diffFile . length > 0 ) {
const blurEvent = new CustomEvent ( 'blur.imageDiff' , {
detail : e ,
} ) ;
$diffFile [ 0 ] . dispatchEvent ( blurEvent ) ;
}
}
return this . removeDiscussionNoteForm ( $form ) ;
2017-06-18 03:09:45 -04:00
}
/ * *
* Called after an attachment file has been selected .
*
* Updates the file name for the selected attachment .
* /
updateFormAttachment ( ) {
2019-12-16 16:08:00 -05:00
const form = $ ( this ) . closest ( 'form' ) ;
2017-06-18 03:09:45 -04:00
// get only the basename
2019-12-16 16:08:00 -05:00
const filename = $ ( this )
2018-03-16 16:16:21 -04:00
. val ( )
. replace ( /^.*[\\\/]/ , '' ) ;
2017-06-18 03:09:45 -04:00
return form . find ( '.js-attachment-filename' ) . text ( filename ) ;
}
/ * *
* Called when the tab visibility changes
* /
visibilityChange ( ) {
return this . refresh ( ) ;
}
updateTargetButtons ( e ) {
2019-12-16 16:08:00 -05:00
let closetext ;
let reopentext ;
const textarea = $ ( e . target ) ;
const form = textarea . parents ( 'form' ) ;
const reopenbtn = form . find ( '.js-note-target-reopen' ) ;
const closebtn = form . find ( '.js-note-target-close' ) ;
2021-10-05 14:13:27 -04:00
const commentTypeComponent = form . get ( 0 ) ? . commentTypeComponent ;
2017-06-18 03:09:45 -04:00
if ( textarea . val ( ) . trim ( ) . length > 0 ) {
reopentext = reopenbtn . attr ( 'data-alternative-text' ) ;
closetext = closebtn . attr ( 'data-alternative-text' ) ;
if ( reopenbtn . text ( ) !== reopentext ) {
reopenbtn . text ( reopentext ) ;
2016-07-26 12:45:48 -04:00
}
2017-06-18 03:09:45 -04:00
if ( closebtn . text ( ) !== closetext ) {
closebtn . text ( closetext ) ;
2017-05-12 06:19:32 -04:00
}
2017-06-18 03:09:45 -04:00
if ( reopenbtn . is ( ':not(.btn-comment-and-reopen)' ) ) {
reopenbtn . addClass ( 'btn-comment-and-reopen' ) ;
2016-07-24 16:45:11 -04:00
}
2017-06-18 03:09:45 -04:00
if ( closebtn . is ( ':not(.btn-comment-and-close)' ) ) {
closebtn . addClass ( 'btn-comment-and-close' ) ;
2016-07-24 16:45:11 -04:00
}
2021-10-05 14:13:27 -04:00
if ( commentTypeComponent ) {
commentTypeComponent . disabled = false ;
}
2017-06-18 03:09:45 -04:00
} else {
2018-02-20 17:20:48 -05:00
reopentext = reopenbtn . data ( 'originalText' ) ;
closetext = closebtn . data ( 'originalText' ) ;
2017-06-18 03:09:45 -04:00
if ( reopenbtn . text ( ) !== reopentext ) {
reopenbtn . text ( reopentext ) ;
2016-07-24 16:45:11 -04:00
}
2017-06-18 03:09:45 -04:00
if ( closebtn . text ( ) !== closetext ) {
closebtn . text ( closetext ) ;
2016-07-24 16:45:11 -04:00
}
2017-06-18 03:09:45 -04:00
if ( reopenbtn . is ( '.btn-comment-and-reopen' ) ) {
reopenbtn . removeClass ( 'btn-comment-and-reopen' ) ;
2017-05-03 13:41:16 -04:00
}
2017-06-18 03:09:45 -04:00
if ( closebtn . is ( '.btn-comment-and-close' ) ) {
closebtn . removeClass ( 'btn-comment-and-close' ) ;
2017-06-05 05:12:15 -04:00
}
2021-10-05 14:13:27 -04:00
if ( commentTypeComponent ) {
commentTypeComponent . disabled = true ;
}
2017-06-18 03:09:45 -04:00
}
}
putEditFormInPlace ( $el ) {
2019-12-16 16:08:00 -05:00
const $editForm = $ ( this . getEditFormSelector ( $el ) ) ;
const $note = $el . closest ( '.note' ) ;
2017-06-18 03:09:45 -04:00
$editForm . insertAfter ( $note . find ( '.note-text' ) ) ;
2019-12-16 16:08:00 -05:00
const $originalContentEl = $note . find ( '.original-note-content' ) ;
const originalContent = $originalContentEl . text ( ) . trim ( ) ;
const postUrl = $originalContentEl . data ( 'postUrl' ) ;
const targetId = $originalContentEl . data ( 'targetId' ) ;
const targetType = $originalContentEl . data ( 'targetType' ) ;
2017-06-18 03:09:45 -04:00
2017-10-10 05:47:29 -04:00
this . glForm = new GLForm ( $editForm . find ( 'form' ) , this . enableGFM ) ;
2017-06-18 03:09:45 -04:00
2020-12-23 07:10:26 -05:00
$editForm . find ( 'form' ) . attr ( 'action' , ` ${ postUrl } ?html=true ` ) . attr ( 'data-remote' , 'true' ) ;
2017-06-18 03:09:45 -04:00
$editForm . find ( '.js-form-target-id' ) . val ( targetId ) ;
$editForm . find ( '.js-form-target-type' ) . val ( targetType ) ;
2020-12-23 07:10:26 -05:00
$editForm . find ( '.js-note-text' ) . focus ( ) . val ( originalContent ) ;
2017-06-18 03:09:45 -04:00
$editForm . find ( '.js-md-write-button' ) . trigger ( 'click' ) ;
$editForm . find ( '.referenced-users' ) . hide ( ) ;
}
putConflictEditWarningInPlace ( noteEntity , $note ) {
if ( $note . find ( '.js-conflict-edit-warning' ) . length === 0 ) {
2019-06-21 13:07:35 -04:00
const open _link = ` <a href="#note_ ${ noteEntity . id } " target="_blank" rel="noopener noreferrer"> ` ;
2017-06-18 03:09:45 -04:00
const $alert = $ ( ` <div class="js-conflict-edit-warning alert alert-danger">
2019-05-15 09:35:09 -04:00
$ { sprintf (
s _ _ (
'Notes|This comment has changed since you started editing, please review the %{open_link}updated comment%{close_link} to ensure information is not lost' ,
) ,
{
open _link ,
close _link : '</a>' ,
} ,
) }
2017-06-18 03:09:45 -04:00
< / d i v > ` ) ;
$alert . insertAfter ( $note . find ( '.note-text' ) ) ;
}
}
2017-05-09 00:15:34 -04:00
2017-06-18 03:09:45 -04:00
updateNotesCount ( updateCount ) {
2018-06-21 08:22:40 -04:00
return this . notesCountBadge . text ( parseInt ( this . notesCountBadge . text ( ) , 10 ) + updateCount ) ;
2017-06-18 03:09:45 -04:00
}
2017-04-19 15:48:48 -04:00
2018-03-13 08:01:36 -04:00
static renderPlaceholderComponent ( $container ) {
const el = $container . find ( '.js-code-placeholder' ) . get ( 0 ) ;
2018-06-16 09:20:30 -04:00
// eslint-disable-next-line no-new
2018-03-16 16:16:21 -04:00
new Vue ( {
2018-03-13 08:01:36 -04:00
el ,
components : {
2018-10-29 19:16:10 -04:00
GlSkeletonLoading ,
2018-03-13 08:01:36 -04:00
} ,
render ( createElement ) {
2018-10-29 19:16:10 -04:00
return createElement ( 'gl-skeleton-loading' ) ;
2018-03-13 08:01:36 -04:00
} ,
} ) ;
}
static renderDiffContent ( $container , data ) {
const { discussion _html } = data ;
const lines = $ ( discussion _html ) . find ( '.line_holder' ) ;
lines . addClass ( 'fade-in' ) ;
2018-04-20 03:47:08 -04:00
$container . find ( '.diff-content > table > tbody' ) . prepend ( lines ) ;
2018-03-13 08:01:36 -04:00
const fileHolder = $container . find ( '.file-holder' ) ;
$container . find ( '.line-holder-placeholder' ) . remove ( ) ;
syntaxHighlight ( fileHolder ) ;
}
2018-04-16 11:36:24 -04:00
onClickRetryLazyLoad ( e ) {
const $retryButton = $ ( e . currentTarget ) ;
$retryButton . prop ( 'disabled' , true ) ;
2018-09-05 07:23:42 -04:00
return this . loadLazyDiff ( e ) . then ( ( ) => {
2018-04-16 11:36:24 -04:00
$retryButton . prop ( 'disabled' , false ) ;
} ) ;
2018-03-13 08:01:36 -04:00
}
loadLazyDiff ( e ) {
const $container = $ ( e . currentTarget ) . closest ( '.js-toggle-container' ) ;
Notes . renderPlaceholderComponent ( $container ) ;
$container . find ( '.js-toggle-lazy-diff' ) . removeClass ( 'js-toggle-lazy-diff' ) ;
2018-04-13 04:16:06 -04:00
const $tableEl = $container . find ( 'tbody' ) ;
if ( $tableEl . length === 0 ) return ;
2018-03-13 08:01:36 -04:00
const fileHolder = $container . find ( '.file-holder' ) ;
const url = fileHolder . data ( 'linesPath' ) ;
2018-04-13 04:16:06 -04:00
const $errorContainer = $container . find ( '.js-error-lazy-load-diff' ) ;
const $successContainer = $container . find ( '.js-success-lazy-load' ) ;
2018-04-12 12:29:54 -04:00
/ * *
* We only fetch resolved discussions .
* Unresolved discussions don ' t have an endpoint being provided .
* /
if ( url ) {
2018-04-16 11:36:24 -04:00
return axios
2018-09-05 07:23:42 -04:00
. get ( url )
. then ( ( { data } ) => {
// Reset state in case last request returned error
$successContainer . removeClass ( 'hidden' ) ;
$errorContainer . addClass ( 'hidden' ) ;
Notes . renderDiffContent ( $container , data ) ;
} )
. catch ( ( ) => {
$successContainer . addClass ( 'hidden' ) ;
$errorContainer . removeClass ( 'hidden' ) ;
} ) ;
2018-04-12 12:29:54 -04:00
}
2018-04-16 11:36:24 -04:00
return Promise . resolve ( ) ;
2018-03-13 08:01:36 -04:00
}
2017-06-18 03:09:45 -04:00
toggleCommitList ( e ) {
const $element = $ ( e . currentTarget ) ;
2018-06-21 08:22:40 -04:00
const $closestSystemCommitList = $element . siblings ( '.system-note-commit-list' ) ;
2020-07-22 17:09:50 -04:00
const $svgChevronUpElement = $element . find ( 'svg.js-chevron-up' ) ;
const $svgChevronDownElement = $element . find ( 'svg.js-chevron-down' ) ;
$svgChevronUpElement . toggleClass ( 'gl-display-none' ) ;
$svgChevronDownElement . toggleClass ( 'gl-display-none' ) ;
2017-05-03 13:41:16 -04:00
2017-06-18 03:09:45 -04:00
$closestSystemCommitList . toggleClass ( 'hide-shade' ) ;
}
2017-05-03 13:41:16 -04:00
2017-06-18 03:09:45 -04:00
/ * *
* Scans system notes with ` ul ` elements in system note body
* then collapse long commit list pushed by user to make it less
* intrusive .
* /
collapseLongCommitList ( ) {
2020-12-23 07:10:26 -05:00
const systemNotes = $ ( '#notes-list' ) . find ( 'li.system-note' ) . has ( 'ul' ) ;
2017-04-19 15:48:48 -04:00
2019-09-24 05:06:04 -04:00
$ . each ( systemNotes , ( index , systemNote ) => {
2017-06-18 03:09:45 -04:00
const $systemNote = $ ( systemNote ) ;
2018-03-16 16:16:21 -04:00
const headerMessage = $systemNote
. find ( '.note-text' )
2019-12-18 10:08:03 -05:00
. find ( 'p' )
. first ( )
2018-03-16 16:16:21 -04:00
. text ( )
. replace ( ':' , '' ) ;
2017-05-05 06:57:29 -04:00
2017-06-18 03:09:45 -04:00
$systemNote . find ( '.note-header .system-note-message' ) . html ( headerMessage ) ;
2017-05-05 06:57:29 -04:00
2017-06-18 03:09:45 -04:00
if ( $systemNote . find ( 'li' ) . length > MAX _VISIBLE _COMMIT _LIST _COUNT ) {
$systemNote . find ( '.note-text' ) . addClass ( 'system-note-commit-list' ) ;
$systemNote . find ( '.system-note-commit-list-toggler' ) . show ( ) ;
} else {
2018-06-21 08:22:40 -04:00
$systemNote . find ( '.note-text' ) . addClass ( 'system-note-commit-list hide-shade' ) ;
2017-06-18 03:09:45 -04:00
}
} ) ;
}
2017-06-05 05:12:15 -04:00
2017-06-18 03:09:45 -04:00
addFlash ( ... flashParams ) {
2021-03-22 11:09:31 -04:00
this . flashContainer = createFlash ( ... flashParams ) ;
2017-06-18 03:09:45 -04:00
}
2017-06-05 05:12:15 -04:00
2017-06-18 03:09:45 -04:00
clearFlash ( ) {
2017-10-05 05:27:43 -04:00
if ( this . flashContainer ) {
this . flashContainer . style . display = 'none' ;
this . flashContainer = null ;
2017-06-18 03:09:45 -04:00
}
}
cleanForm ( $form ) {
// Remove dropdown
2018-03-16 16:16:21 -04:00
$form . find ( '.dropdown-menu' ) . remove ( ) ;
2017-06-18 03:09:45 -04:00
return $form ;
}
/ * *
2020-05-11 05:09:45 -04:00
* Check if note does not exist on page
2017-06-18 03:09:45 -04:00
* /
static isNewNote ( noteEntity , noteIds ) {
return $ . inArray ( noteEntity . id , noteIds ) === - 1 ;
}
/ * *
* Check if $note already contains the ` noteEntity ` content
* /
static isUpdatedNote ( noteEntity , $note ) {
// There can be CRLF vs LF mismatches if we don't sanitize and compare the same way
const sanitizedNoteEntityText = normalizeNewlines ( noteEntity . note . trim ( ) ) ;
const currentNoteText = normalizeNewlines (
2020-12-23 07:10:26 -05:00
$note . find ( '.original-note-content' ) . first ( ) . text ( ) . trim ( ) ,
2017-06-18 03:09:45 -04:00
) ;
return sanitizedNoteEntityText !== currentNoteText ;
}
static checkMergeRequestStatus ( ) {
2017-10-06 16:36:15 -04:00
if ( getPagePath ( 1 ) === 'merge_requests' && gl . mrWidget ) {
2017-06-18 03:09:45 -04:00
gl . mrWidget . checkStatus ( ) ;
}
}
static animateAppendNote ( noteHtml , $notesList ) {
const $note = $ ( noteHtml ) ;
$note . addClass ( 'fade-in-full' ) . renderGFM ( ) ;
$notesList . append ( $note ) ;
return $note ;
}
static animateUpdateNote ( noteHtml , $note ) {
const $updatedNote = $ ( noteHtml ) ;
$updatedNote . addClass ( 'fade-in' ) . renderGFM ( ) ;
$note . replaceWith ( $updatedNote ) ;
return $updatedNote ;
}
/ * *
* Get data from Form attributes to use for saving / submitting comment .
* /
getFormData ( $form ) {
2017-09-11 14:13:16 -04:00
const content = $form . find ( '.js-note-text' ) . val ( ) ;
2017-06-18 03:09:45 -04:00
return {
2019-09-19 17:06:29 -04:00
// eslint-disable-next-line no-jquery/no-serialize
2017-06-18 03:09:45 -04:00
formData : $form . serialize ( ) ,
2020-01-21 19:08:47 -05:00
formContent : escape ( content ) ,
2017-06-18 03:09:45 -04:00
formAction : $form . attr ( 'action' ) ,
2017-09-11 14:13:16 -04:00
formContentOriginal : content ,
2017-06-18 03:09:45 -04:00
} ;
}
/ * *
* Identify if comment has any quick actions
* /
hasQuickActions ( formContent ) {
return REGEX _QUICK _ACTIONS . test ( formContent ) ;
}
/ * *
* Remove quick actions and leave comment with pure message
* /
stripQuickActions ( formContent ) {
return formContent . replace ( REGEX _QUICK _ACTIONS , '' ) . trim ( ) ;
}
/ * *
* Gets appropriate description from quick actions found in provided ` formContent `
* /
getQuickActionDescription ( formContent , availableQuickActions = [ ] ) {
let tempFormContent ;
// Identify executed quick actions from `formContent`
2020-12-23 16:10:24 -05:00
const executedCommands = availableQuickActions . filter ( ( command ) => {
2017-06-18 03:09:45 -04:00
const commandRegex = new RegExp ( ` / ${ command . name } ` ) ;
return commandRegex . test ( formContent ) ;
} ) ;
if ( executedCommands && executedCommands . length ) {
if ( executedCommands . length > 1 ) {
2019-05-06 10:19:34 -04:00
tempFormContent = _ _ ( 'Applying multiple commands' ) ;
2017-06-05 05:12:15 -04:00
} else {
2017-06-18 03:09:45 -04:00
const commandDescription = executedCommands [ 0 ] . description . toLowerCase ( ) ;
2019-05-15 09:47:28 -04:00
tempFormContent = sprintf ( _ _ ( 'Applying command to %{commandDescription}' ) , {
commandDescription ,
} ) ;
2017-06-05 05:12:15 -04:00
}
2017-06-18 03:09:45 -04:00
} else {
2019-05-06 10:19:34 -04:00
tempFormContent = _ _ ( 'Applying command' ) ;
2017-06-18 03:09:45 -04:00
}
2017-06-05 05:12:15 -04:00
2017-06-18 03:09:45 -04:00
return tempFormContent ;
}
/ * *
* Create placeholder note DOM element populated with comment body
* that we will show while comment is being posted .
* Once comment is _actually _ posted on server , we will have final element
* in response that we will show in place of this temporary element .
* /
2018-03-16 16:16:21 -04:00
createPlaceholderNote ( {
formContent ,
uniqueId ,
isDiscussionNote ,
currentUsername ,
currentUserFullname ,
currentUserAvatar ,
} ) {
2017-06-18 03:09:45 -04:00
const discussionClass = isDiscussionNote ? 'discussion' : '' ;
const $tempNote = $ (
` <li id=" ${ uniqueId } " class="note being-posted fade-in-half timeline-entry">
< div class = "timeline-entry-inner" >
< div class = "timeline-icon" >
2020-01-21 19:08:47 -05:00
< a href = "/${escape(currentUsername)}" >
2017-07-12 10:47:09 -04:00
< img class = "avatar s40" src = "${currentUserAvatar}" / >
2017-06-18 03:09:45 -04:00
< / a >
< / d i v >
< div class = "timeline-content ${discussionClass}" >
< div class = "note-header" >
< div class = "note-header-info" >
2020-01-21 19:08:47 -05:00
< a href = "/${escape(currentUsername)}" >
< span class = "d-none d-sm-inline-block bold" > $ { escape ( currentUsername ) } < / s p a n >
< span class = "note-headline-light" > $ { escape ( currentUsername ) } < / s p a n >
2017-06-18 03:09:45 -04:00
< / a >
< / d i v >
< / d i v >
< div class = "note-body" >
< div class = "note-text" >
< p > $ { formContent } < / p >
2017-05-05 06:57:29 -04:00
< / d i v >
2017-06-18 03:09:45 -04:00
< / d i v >
< / d i v >
< / d i v >
2018-03-16 16:16:21 -04:00
< / l i > ` ,
2017-06-18 03:09:45 -04:00
) ;
2020-01-21 19:08:47 -05:00
$tempNote . find ( '.d-none.d-sm-inline-block' ) . text ( escape ( currentUserFullname ) ) ;
$tempNote . find ( '.note-headline-light' ) . text ( ` @ ${ escape ( currentUsername ) } ` ) ;
2017-09-06 11:59:49 -04:00
2017-06-18 03:09:45 -04:00
return $tempNote ;
}
/ * *
* Create Placeholder System Note DOM element populated with quick action description
* /
createPlaceholderSystemNote ( { formContent , uniqueId } ) {
const $tempNote = $ (
` <li id=" ${ uniqueId } " class="note system-note timeline-entry being-posted fade-in-half">
< div class = "timeline-entry-inner" >
< div class = "timeline-content" >
< i > $ { formContent } < / i >
2017-05-05 06:57:29 -04:00
< / d i v >
2017-06-18 03:09:45 -04:00
< / d i v >
2018-03-16 16:16:21 -04:00
< / l i > ` ,
2017-06-18 03:09:45 -04:00
) ;
return $tempNote ;
}
/ * *
* This method does following tasks step - by - step whenever a new comment
* is submitted by user ( both main thread comments as well as discussion comments ) .
*
* 1 ) Get Form metadata
* 2 ) Identify comment type ; a ) Main thread b ) Discussion thread c ) Discussion resolve
* 3 ) Build temporary placeholder element ( using ` createPlaceholderNote ` )
* 4 ) Show placeholder note on UI
2018-02-01 04:14:53 -05:00
* 5 ) Perform network request to submit the note using ` axios.post `
2017-06-18 03:09:45 -04:00
* a ) If request is successfully completed
* 1. Remove placeholder element
* 2. Show submitted Note element
* 3. Perform post - submit errands
* a . Mark discussion as resolved if comment submission was for resolve .
* b . Reset comment form to original state .
* b ) If request failed
* 1. Remove placeholder element
* 2. Show error Flash message about failure
* /
postComment ( e ) {
e . preventDefault ( ) ;
// Get Form metadata
const $submitBtn = $ ( e . target ) ;
2018-03-21 14:28:39 -04:00
$submitBtn . prop ( 'disabled' , true ) ;
2017-06-18 03:09:45 -04:00
let $form = $submitBtn . parents ( 'form' ) ;
2021-10-05 14:13:27 -04:00
const commentTypeComponent = $form . get ( 0 ) ? . commentTypeComponent ;
if ( commentTypeComponent ) commentTypeComponent . disabled = true ;
2017-06-18 03:09:45 -04:00
const $closeBtn = $form . find ( '.js-note-target-close' ) ;
2018-03-16 16:16:21 -04:00
const isDiscussionNote =
2020-12-23 07:10:26 -05:00
$submitBtn . parent ( ) . find ( 'li.droplab-item-selected' ) . attr ( 'id' ) === 'discussion' ;
2017-06-18 03:09:45 -04:00
const isMainForm = $form . hasClass ( 'js-main-target-form' ) ;
const isDiscussionForm = $form . hasClass ( 'js-discussion-note-form' ) ;
2018-06-21 08:22:40 -04:00
const isDiscussionResolve = $submitBtn . hasClass ( 'js-comment-resolve-button' ) ;
const { formData , formContent , formAction , formContentOriginal } = this . getFormData ( $form ) ;
2017-06-18 03:09:45 -04:00
let noteUniqueId ;
let systemNoteUniqueId ;
let hasQuickActions = false ;
let $notesContainer ;
let tempFormContent ;
// Get reference to notes container based on type of comment
if ( isDiscussionForm ) {
$notesContainer = $form . parent ( '.discussion-notes' ) . find ( '.notes' ) ;
} else if ( isMainForm ) {
$notesContainer = $ ( 'ul.main-notes-list' ) ;
}
2017-06-05 05:12:15 -04:00
2017-06-18 03:09:45 -04:00
// If comment is to resolve discussion, disable submit buttons while
// comment posting is finished.
if ( isDiscussionResolve ) {
$form . find ( '.js-comment-submit-button' ) . disable ( ) ;
}
2017-06-05 05:12:15 -04:00
2017-06-18 03:09:45 -04:00
tempFormContent = formContent ;
2020-07-13 11:09:08 -04:00
if ( this . glForm . supportsQuickActions && this . hasQuickActions ( formContent ) ) {
2017-06-18 03:09:45 -04:00
tempFormContent = this . stripQuickActions ( formContent ) ;
hasQuickActions = true ;
}
2017-05-05 06:57:29 -04:00
2017-06-18 03:09:45 -04:00
// Show placeholder note
if ( tempFormContent ) {
2020-01-21 19:08:47 -05:00
noteUniqueId = uniqueId ( 'tempNote_' ) ;
2018-03-16 16:16:21 -04:00
$notesContainer . append (
this . createPlaceholderNote ( {
formContent : tempFormContent ,
uniqueId : noteUniqueId ,
isDiscussionNote ,
currentUsername : gon . current _username ,
currentUserFullname : gon . current _user _fullname ,
currentUserAvatar : gon . current _user _avatar _url ,
} ) ,
) ;
2017-06-18 03:09:45 -04:00
}
2017-05-05 06:57:29 -04:00
2017-06-18 03:09:45 -04:00
// Show placeholder system note
if ( hasQuickActions ) {
2020-01-21 19:08:47 -05:00
systemNoteUniqueId = uniqueId ( 'tempSystemNote_' ) ;
2018-03-16 16:16:21 -04:00
$notesContainer . append (
this . createPlaceholderSystemNote ( {
formContent : this . getQuickActionDescription (
formContent ,
AjaxCache . get ( gl . GfmAutoComplete . dataSources . commands ) ,
) ,
uniqueId : systemNoteUniqueId ,
} ) ,
) ;
2017-06-18 03:09:45 -04:00
}
2017-05-05 06:57:29 -04:00
2017-06-18 03:09:45 -04:00
// Clear the form textarea
if ( $notesContainer . length ) {
if ( isMainForm ) {
this . resetMainTargetForm ( e ) ;
} else if ( isDiscussionForm ) {
this . removeDiscussionNoteForm ( $form ) ;
2017-06-05 05:12:15 -04:00
}
2017-06-18 03:09:45 -04:00
}
2017-06-05 05:12:15 -04:00
2018-03-22 06:23:17 -04:00
$closeBtn . text ( $closeBtn . data ( 'originalText' ) ) ;
2017-06-18 03:09:45 -04:00
// Make request to submit comment on server
2018-03-22 06:23:17 -04:00
return axios
2018-03-16 16:16:21 -04:00
. post ( ` ${ formAction } ?html=true ` , formData )
2020-12-23 16:10:24 -05:00
. then ( ( res ) => {
2018-01-31 05:14:55 -05:00
const note = res . data ;
2018-03-21 14:28:39 -04:00
$submitBtn . prop ( 'disabled' , false ) ;
2021-10-05 14:13:27 -04:00
if ( commentTypeComponent ) commentTypeComponent . disabled = false ;
2017-06-18 03:09:45 -04:00
// Submission successful! remove placeholder
$notesContainer . find ( ` # ${ noteUniqueId } ` ) . remove ( ) ;
2017-05-05 06:57:29 -04:00
2017-10-07 00:25:17 -04:00
const $diffFile = $form . closest ( '.diff-file' ) ;
if ( $diffFile . length > 0 ) {
const blurEvent = new CustomEvent ( 'blur.imageDiff' , {
detail : e ,
} ) ;
$diffFile [ 0 ] . dispatchEvent ( blurEvent ) ;
}
2017-06-18 03:09:45 -04:00
// Reset cached commands list when command is applied
if ( hasQuickActions ) {
2018-06-21 08:22:40 -04:00
$form . find ( 'textarea.js-note-text' ) . trigger ( 'clear-commands-cache.atwho' ) ;
2017-05-05 06:57:29 -04:00
}
2017-06-05 05:12:15 -04:00
2017-06-18 03:09:45 -04:00
// Clear previous form errors
this . clearFlashWrapper ( ) ;
2017-05-05 06:57:29 -04:00
2017-06-18 03:09:45 -04:00
// Check if this was discussion comment
if ( isDiscussionForm ) {
// Remove flash-container
$notesContainer . find ( '.flash-container' ) . remove ( ) ;
2017-05-05 06:57:29 -04:00
2017-06-18 03:09:45 -04:00
// If comment intends to resolve discussion, do the same.
if ( isDiscussionResolve ) {
$form
2018-02-20 17:20:48 -05:00
. attr ( 'data-discussion-id' , $submitBtn . data ( 'discussionId' ) )
2017-06-18 03:09:45 -04:00
. attr ( 'data-resolve-all' , 'true' )
2018-02-20 17:20:48 -05:00
. attr ( 'data-project-path' , $submitBtn . data ( 'projectPath' ) ) ;
2017-06-18 03:09:45 -04:00
}
2017-05-05 06:57:29 -04:00
2017-06-18 03:09:45 -04:00
// Show final note element on UI
2017-10-07 00:25:17 -04:00
const isNewDiffComment = $notesContainer . length === 0 ;
this . addDiscussionNote ( $form , note , isNewDiffComment ) ;
if ( isNewDiffComment ) {
// Add image badge, avatar badge and toggle discussion badge for new image diffs
const notePosition = $form . find ( '#note_position' ) . val ( ) ;
if ( $diffFile . length > 0 && notePosition . length > 0 ) {
const { x , y , width , height } = JSON . parse ( notePosition ) ;
const addBadgeEvent = new CustomEvent ( 'addBadge.imageDiff' , {
detail : {
x ,
y ,
width ,
height ,
noteId : ` note_ ${ note . id } ` ,
discussionId : note . discussion _id ,
} ,
} ) ;
$diffFile [ 0 ] . dispatchEvent ( addBadgeEvent ) ;
}
}
2017-05-05 06:57:29 -04:00
2017-06-18 03:09:45 -04:00
// append flash-container to the Notes list
if ( $notesContainer . length ) {
2018-06-21 08:22:40 -04:00
$notesContainer . append ( '<div class="flash-container" style="display: none;"></div>' ) ;
2017-05-05 06:57:29 -04:00
}
2018-03-16 16:16:21 -04:00
} else if ( isMainForm ) {
// Check if this was main thread comment
2017-06-18 03:09:45 -04:00
// Show final note element on UI and perform form and action buttons cleanup
this . addNote ( $form , note ) ;
this . reenableTargetFormSubmitButton ( e ) ;
}
2017-05-05 06:57:29 -04:00
2017-06-18 03:09:45 -04:00
if ( note . commands _changes ) {
this . handleQuickActions ( note ) ;
}
2017-05-05 06:57:29 -04:00
2017-06-18 03:09:45 -04:00
$form . trigger ( 'ajax:success' , [ note ] ) ;
2018-03-16 16:16:21 -04:00
} )
. catch ( ( ) => {
2017-06-18 03:09:45 -04:00
// Submission failed, remove placeholder note and show Flash error message
$notesContainer . find ( ` # ${ noteUniqueId } ` ) . remove ( ) ;
2018-03-21 14:28:39 -04:00
$submitBtn . prop ( 'disabled' , false ) ;
2021-10-05 14:13:27 -04:00
if ( commentTypeComponent ) commentTypeComponent . disabled = false ;
2017-10-07 00:25:17 -04:00
const blurEvent = new CustomEvent ( 'blur.imageDiff' , {
detail : e ,
} ) ;
const closestDiffFile = $form . closest ( '.diff-file' ) ;
if ( closestDiffFile . length ) {
closestDiffFile [ 0 ] . dispatchEvent ( blurEvent ) ;
}
2017-06-18 03:09:45 -04:00
if ( hasQuickActions ) {
$notesContainer . find ( ` # ${ systemNoteUniqueId } ` ) . remove ( ) ;
}
2017-05-05 06:57:29 -04:00
2017-06-18 03:09:45 -04:00
// Show form again on UI on failure
if ( isDiscussionForm && $notesContainer . length ) {
2018-06-21 08:22:40 -04:00
const replyButton = $notesContainer . parent ( ) . find ( '.js-discussion-reply-button' ) ;
2017-06-18 03:09:45 -04:00
this . replyToDiscussionNote ( replyButton [ 0 ] ) ;
$form = $notesContainer . parent ( ) . find ( 'form' ) ;
}
2017-05-05 06:57:29 -04:00
2017-09-11 14:13:54 -04:00
$form . find ( '.js-note-text' ) . val ( formContentOriginal ) ;
2017-06-18 03:09:45 -04:00
this . reenableTargetFormSubmitButton ( e ) ;
this . addNoteError ( $form ) ;
} ) ;
}
/ * *
* This method does following tasks step - by - step whenever an existing comment
* is updated by user ( both main thread comments as well as discussion comments ) .
*
* 1 ) Get Form metadata
* 2 ) Update note element with new content
2018-02-01 04:14:53 -05:00
* 3 ) Perform network request to submit the updated note using ` axios.post `
2017-06-18 03:09:45 -04:00
* a ) If request is successfully completed
* 1. Show submitted Note element
* b ) If request failed
* 1. Revert Note element to original content
* 2. Show error Flash message about failure
* /
updateComment ( e ) {
e . preventDefault ( ) ;
// Get Form metadata
const $submitBtn = $ ( e . target ) ;
const $form = $submitBtn . parents ( 'form' ) ;
const $closeBtn = $form . find ( '.js-note-target-close' ) ;
const $editingNote = $form . parents ( '.note.is-editing' ) ;
const $noteBody = $editingNote . find ( '.js-task-list-container' ) ;
const $noteBodyText = $noteBody . find ( '.note-text' ) ;
const { formData , formContent , formAction } = this . getFormData ( $form ) ;
// Cache original comment content
const cachedNoteBodyText = $noteBodyText . html ( ) ;
// Show updated comment content temporarily
2017-06-28 02:03:47 -04:00
$noteBodyText . html ( formContent ) ;
2018-06-21 08:22:40 -04:00
$editingNote . removeClass ( 'is-editing fade-in-full' ) . addClass ( 'being-posted fade-in-half' ) ;
2018-03-16 16:16:21 -04:00
$editingNote
. find ( '.note-headline-meta a' )
2020-02-21 07:09:07 -05:00
. html ( '<span class="spinner align-text-bottom"></span>' ) ;
2017-06-18 03:09:45 -04:00
// Make request to update comment on server
2018-03-16 16:16:21 -04:00
axios
. post ( ` ${ formAction } ?html=true ` , formData )
2018-01-31 05:14:55 -05:00
. then ( ( { data } ) => {
2017-06-18 03:09:45 -04:00
// Submission successful! render final note element
2018-01-31 05:14:55 -05:00
this . updateNote ( data , $editingNote ) ;
2017-06-18 03:09:45 -04:00
} )
2018-01-31 05:14:55 -05:00
. catch ( ( ) => {
2017-06-18 03:09:45 -04:00
// Submission failed, revert back to original note
2020-01-21 19:08:47 -05:00
$noteBodyText . html ( escape ( cachedNoteBodyText ) ) ;
2017-06-18 03:09:45 -04:00
$editingNote . removeClass ( 'being-posted fade-in' ) ;
2021-04-29 17:10:03 -04:00
$editingNote . find ( '.gl-spinner' ) . remove ( ) ;
2017-06-18 03:09:45 -04:00
// Show Flash message about failure
this . updateNoteError ( ) ;
} ) ;
2017-05-05 06:57:29 -04:00
2018-02-20 17:20:48 -05:00
return $closeBtn . text ( $closeBtn . data ( 'originalText' ) ) ;
2017-06-18 03:09:45 -04:00
}
}