2012-09-14 10:52:24 -04:00
|
|
|
module NotesHelper
|
2015-03-02 18:05:23 -05:00
|
|
|
def note_target_fields(note)
|
2016-03-25 03:39:22 -04:00
|
|
|
if note.noteable
|
|
|
|
hidden_field_tag(:target_type, note.noteable.class.name.underscore) +
|
|
|
|
hidden_field_tag(:target_id, note.noteable.id)
|
|
|
|
end
|
2012-10-10 06:06:30 -04:00
|
|
|
end
|
|
|
|
|
2015-04-29 20:34:43 -04:00
|
|
|
def note_editable?(note)
|
2016-07-20 00:52:31 -04:00
|
|
|
Ability.can_edit_note?(current_user, note)
|
2015-04-29 20:34:43 -04:00
|
|
|
end
|
|
|
|
|
2017-05-31 01:50:53 -04:00
|
|
|
def note_supports_quick_actions?(note)
|
|
|
|
Notes::QuickActionsService.supported?(note, current_user)
|
2016-09-15 10:57:06 -04:00
|
|
|
end
|
|
|
|
|
2013-12-25 15:33:40 -05:00
|
|
|
def noteable_json(noteable)
|
|
|
|
{
|
|
|
|
id: noteable.id,
|
|
|
|
class: noteable.class.name,
|
|
|
|
resources: noteable.class.table_name,
|
2017-05-03 07:22:03 -04:00
|
|
|
project_id: noteable.project.id
|
2013-12-25 15:33:40 -05:00
|
|
|
}.to_json
|
|
|
|
end
|
2014-06-06 16:15:54 -04:00
|
|
|
|
2016-07-07 18:05:34 -04:00
|
|
|
def diff_view_data
|
2017-03-09 20:29:11 -05:00
|
|
|
return {} unless @new_diff_note_attrs
|
2016-07-06 00:59:18 -04:00
|
|
|
|
2017-03-09 20:29:11 -05:00
|
|
|
@new_diff_note_attrs.slice(:noteable_id, :noteable_type, :commit_id)
|
2016-07-06 00:59:18 -04:00
|
|
|
end
|
|
|
|
|
2016-07-07 18:09:19 -04:00
|
|
|
def diff_view_line_data(line_code, position, line_type)
|
|
|
|
return if @diff_notes_disabled
|
2016-07-07 18:05:34 -04:00
|
|
|
|
2016-07-07 18:09:19 -04:00
|
|
|
data = {
|
2016-07-06 00:59:18 -04:00
|
|
|
line_code: line_code,
|
2017-05-03 07:22:03 -04:00
|
|
|
line_type: line_type
|
2016-07-06 00:59:18 -04:00
|
|
|
}
|
|
|
|
|
2017-03-30 22:34:14 -04:00
|
|
|
if @use_legacy_diff_notes
|
2017-03-30 21:33:45 -04:00
|
|
|
data[:note_type] = LegacyDiffNote.name
|
2016-06-20 13:23:46 -04:00
|
|
|
else
|
2017-03-30 21:33:45 -04:00
|
|
|
data[:note_type] = DiffNote.name
|
2017-03-09 20:29:11 -05:00
|
|
|
data[:position] = position.to_json
|
2016-07-06 00:59:18 -04:00
|
|
|
end
|
2016-07-07 18:09:19 -04:00
|
|
|
|
2017-03-30 21:33:45 -04:00
|
|
|
data
|
2014-06-06 16:15:54 -04:00
|
|
|
end
|
2014-06-24 06:34:46 -04:00
|
|
|
|
2017-06-12 14:43:21 -04:00
|
|
|
def add_diff_note_button(line_code, position, line_type)
|
|
|
|
return if @diff_notes_disabled
|
|
|
|
|
|
|
|
button_tag '',
|
|
|
|
class: 'add-diff-note js-add-diff-note-button',
|
|
|
|
type: 'submit', name: 'button',
|
|
|
|
data: diff_view_line_data(line_code, position, line_type),
|
|
|
|
title: 'Add a comment to this line' do
|
|
|
|
icon('comment-o')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-20 18:18:18 -04:00
|
|
|
def link_to_reply_discussion(discussion, line_type = nil)
|
2014-06-24 06:35:50 -04:00
|
|
|
return unless current_user
|
|
|
|
|
2017-07-27 10:36:39 -04:00
|
|
|
data = {
|
|
|
|
discussion_id: discussion.reply_id,
|
|
|
|
discussion_project_id: discussion.project&.id,
|
|
|
|
line_type: line_type
|
|
|
|
}
|
2016-05-10 18:41:46 -04:00
|
|
|
|
2016-07-14 09:28:58 -04:00
|
|
|
button_tag 'Reply...', class: 'btn btn-text-field js-discussion-reply-button',
|
|
|
|
data: data, title: 'Add a reply'
|
2014-06-24 06:34:46 -04:00
|
|
|
end
|
2016-06-28 18:14:11 -04:00
|
|
|
|
2016-07-20 00:52:31 -04:00
|
|
|
def note_max_access_for_user(note)
|
2017-07-29 11:04:42 -04:00
|
|
|
note.project.team.max_member_access(note.author_id)
|
2017-07-27 16:38:52 -04:00
|
|
|
end
|
|
|
|
|
2017-04-30 16:32:09 -04:00
|
|
|
def discussion_path(discussion)
|
|
|
|
if discussion.for_merge_request?
|
|
|
|
return unless discussion.diff_discussion?
|
|
|
|
|
|
|
|
version_params = discussion.merge_request_version_params
|
|
|
|
return unless version_params
|
|
|
|
|
|
|
|
path_params = version_params.merge(anchor: discussion.line_code)
|
|
|
|
|
2017-06-29 13:06:35 -04:00
|
|
|
diffs_project_merge_request_path(discussion.project, discussion.noteable, path_params)
|
2016-07-20 18:18:18 -04:00
|
|
|
elsif discussion.for_commit?
|
2017-04-06 19:18:53 -04:00
|
|
|
anchor = discussion.line_code if discussion.diff_discussion?
|
2017-04-08 15:58:08 -04:00
|
|
|
|
2017-06-29 13:06:35 -04:00
|
|
|
project_commit_path(discussion.project, discussion.noteable, anchor: anchor)
|
2016-06-20 12:57:10 -04:00
|
|
|
end
|
|
|
|
end
|
2017-05-03 04:48:01 -04:00
|
|
|
|
2017-08-17 13:27:11 -04:00
|
|
|
def notes_url(params = {})
|
2017-05-03 04:48:01 -04:00
|
|
|
if @snippet.is_a?(PersonalSnippet)
|
2017-08-17 13:27:11 -04:00
|
|
|
snippet_notes_path(@snippet, params)
|
2017-05-03 04:48:01 -04:00
|
|
|
else
|
2017-08-17 13:27:11 -04:00
|
|
|
params.merge!(target_id: @noteable.id, target_type: @noteable.class.name.underscore)
|
2017-08-07 07:59:34 -04:00
|
|
|
|
2017-08-17 13:27:11 -04:00
|
|
|
project_noteable_notes_path(@project, params)
|
2017-05-03 04:48:01 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-07 14:33:50 -04:00
|
|
|
def note_url(note, project = @project)
|
2017-05-03 04:48:01 -04:00
|
|
|
if note.noteable.is_a?(PersonalSnippet)
|
|
|
|
snippet_note_path(note.noteable, note)
|
|
|
|
else
|
2017-06-29 13:06:35 -04:00
|
|
|
project_note_path(project, note)
|
2017-05-03 04:48:01 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-07 14:33:50 -04:00
|
|
|
def noteable_note_url(note)
|
|
|
|
Gitlab::UrlBuilder.build(note)
|
|
|
|
end
|
|
|
|
|
2017-05-03 04:48:01 -04:00
|
|
|
def form_resources
|
|
|
|
if @snippet.is_a?(PersonalSnippet)
|
|
|
|
[@note]
|
|
|
|
else
|
|
|
|
[@project.namespace.becomes(Namespace), @project, @note]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def new_form_url
|
|
|
|
return nil unless @snippet.is_a?(PersonalSnippet)
|
|
|
|
|
|
|
|
snippet_notes_path(@snippet)
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_create_note?
|
2017-08-30 10:57:50 -04:00
|
|
|
issuable = @issue || @merge_request
|
|
|
|
|
2017-05-03 04:48:01 -04:00
|
|
|
if @snippet.is_a?(PersonalSnippet)
|
|
|
|
can?(current_user, :comment_personal_snippet, @snippet)
|
2017-08-30 10:57:50 -04:00
|
|
|
elsif issuable
|
|
|
|
can?(current_user, :create_note, issuable)
|
2017-05-03 04:48:01 -04:00
|
|
|
else
|
|
|
|
can?(current_user, :create_note, @project)
|
|
|
|
end
|
|
|
|
end
|
2017-07-25 06:56:41 -04:00
|
|
|
|
|
|
|
def initial_notes_data(autocomplete)
|
|
|
|
{
|
|
|
|
notesUrl: notes_url,
|
|
|
|
notesIds: @notes.map(&:id),
|
|
|
|
now: Time.now.to_i,
|
|
|
|
diffView: diff_view,
|
|
|
|
autocomplete: autocomplete
|
|
|
|
}
|
|
|
|
end
|
2017-09-05 11:49:05 -04:00
|
|
|
|
|
|
|
def discussion_resolved_intro(discussion)
|
|
|
|
discussion.resolved_by_push? ? 'Automatically resolved' : 'Resolved'
|
|
|
|
end
|
2012-09-14 10:52:24 -04:00
|
|
|
end
|