debian-mirror-gitlab/app/helpers/notes_helper.rb

189 lines
5 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
module NotesHelper
2015-04-26 12:48:37 +05:30
def note_target_fields(note)
2016-06-02 11:05:42 +05:30
if note.noteable
hidden_field_tag(:target_type, note.noteable.class.name.underscore) +
hidden_field_tag(:target_id, note.noteable.id)
end
2014-09-02 18:07:02 +05:30
end
2017-09-10 17:25:29 +05:30
def note_supports_quick_actions?(note)
2018-03-27 19:54:05 +05:30
Notes::QuickActionsService.supported?(note)
2016-09-29 09:46:39 +05:30
end
2014-09-02 18:07:02 +05:30
def noteable_json(noteable)
{
id: noteable.id,
class: noteable.class.name,
resources: noteable.class.table_name,
2017-09-10 17:25:29 +05:30
project_id: noteable.project.id
2014-09-02 18:07:02 +05:30
}.to_json
end
2016-08-24 12:49:21 +05:30
def diff_view_data
2017-08-17 22:00:37 +05:30
return {} unless @new_diff_note_attrs
2016-08-24 12:49:21 +05:30
2017-08-17 22:00:37 +05:30
@new_diff_note_attrs.slice(:noteable_id, :noteable_type, :commit_id)
2016-08-24 12:49:21 +05:30
end
def diff_view_line_data(line_code, position, line_type)
return if @diff_notes_disabled
2014-09-02 18:07:02 +05:30
data = {
2016-08-24 12:49:21 +05:30
line_code: line_code,
2017-09-10 17:25:29 +05:30
line_type: line_type
2014-09-02 18:07:02 +05:30
}
2017-08-17 22:00:37 +05:30
if @use_legacy_diff_notes
data[:note_type] = LegacyDiffNote.name
2016-08-24 12:49:21 +05:30
else
2017-08-17 22:00:37 +05:30
data[:note_type] = DiffNote.name
data[:position] = position.to_json
2015-04-26 12:48:37 +05:30
end
2016-08-24 12:49:21 +05:30
data
2014-09-02 18:07:02 +05:30
end
2017-09-10 17:25:29 +05:30
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-09-13 17:45:13 +05:30
def link_to_reply_discussion(discussion, line_type = nil)
2014-09-02 18:07:02 +05:30
return unless current_user
2017-09-10 17:25:29 +05:30
data = {
discussion_id: discussion.reply_id,
discussion_project_id: discussion.project&.id,
line_type: line_type
}
2014-09-02 18:07:02 +05:30
2016-09-13 17:45:13 +05:30
button_tag 'Reply...', class: 'btn btn-text-field js-discussion-reply-button',
data: data, title: 'Add a reply'
end
2016-08-24 12:49:21 +05:30
2017-08-17 22:00:37 +05:30
def note_max_access_for_user(note)
2018-03-17 18:26:18 +05:30
note.project.team.max_member_access(note.author_id)
2016-09-13 17:45:13 +05:30
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
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-09-10 17:25:29 +05:30
diffs_project_merge_request_path(discussion.project, discussion.noteable, path_params)
2017-08-17 22:00:37 +05:30
elsif discussion.for_commit?
2019-03-02 22:35:43 +05:30
anchor = discussion.diff_discussion? ? discussion.line_code : "note_#{discussion.first_note.id}"
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
project_commit_path(discussion.project, discussion.noteable, anchor: anchor)
2017-08-17 22:00:37 +05:30
end
2016-08-24 12:49:21 +05:30
end
2018-03-17 18:26:18 +05:30
def notes_url(params = {})
2017-08-17 22:00:37 +05:30
if @snippet.is_a?(PersonalSnippet)
2018-03-17 18:26:18 +05:30
snippet_notes_path(@snippet, params)
2017-08-17 22:00:37 +05:30
else
2018-03-17 18:26:18 +05:30
params.merge!(target_id: @noteable.id, target_type: @noteable.class.name.underscore)
project_noteable_notes_path(@project, params)
2017-08-17 22:00:37 +05:30
end
2016-08-24 12:49:21 +05:30
end
2017-09-10 17:25:29 +05:30
def note_url(note, project = @project)
2017-08-17 22:00:37 +05:30
if note.noteable.is_a?(PersonalSnippet)
snippet_note_path(note.noteable, note)
else
2017-09-10 17:25:29 +05:30
project_note_path(project, note)
2017-08-17 22:00:37 +05:30
end
end
2016-08-24 12:49:21 +05:30
2017-09-10 17:25:29 +05:30
def noteable_note_url(note)
2018-11-20 20:47:30 +05:30
Gitlab::UrlBuilder.build(note) if note.id
2017-09-10 17:25:29 +05:30
end
2017-08-17 22:00:37 +05:30
def form_resources
if @snippet.is_a?(PersonalSnippet)
[@note]
else
[@project.namespace.becomes(Namespace), @project, @note]
end
end
def new_form_url
2019-07-07 11:18:12 +05:30
return unless @snippet.is_a?(PersonalSnippet)
2017-08-17 22:00:37 +05:30
snippet_notes_path(@snippet)
end
def can_create_note?
2019-07-31 22:56:46 +05:30
noteable = @issue || @merge_request || @snippet || @project
2018-03-17 18:26:18 +05:30
2019-07-31 22:56:46 +05:30
can?(current_user, :create_note, noteable)
2014-09-02 18:07:02 +05:30
end
2017-09-10 17:25:29 +05:30
def initial_notes_data(autocomplete)
{
notesUrl: notes_url,
2018-12-05 23:21:45 +05:30
notesIds: @noteable.notes.pluck(:id), # rubocop: disable CodeReuse/ActiveRecord
2017-09-10 17:25:29 +05:30
now: Time.now.to_i,
diffView: diff_view,
2018-11-08 19:23:39 +05:30
enableGFM: {
emojis: true,
members: autocomplete,
issues: autocomplete,
mergeRequests: autocomplete,
epics: autocomplete,
milestones: autocomplete,
labels: autocomplete
}
2017-09-10 17:25:29 +05:30
}
end
2018-03-17 18:26:18 +05:30
2018-05-09 12:01:36 +05:30
def discussions_path(issuable)
if issuable.is_a?(Issue)
discussions_project_issue_path(@project, issuable, format: :json)
else
discussions_project_merge_request_path(@project, issuable, format: :json)
end
end
2018-03-27 19:54:05 +05:30
2018-05-09 12:01:36 +05:30
def notes_data(issuable)
2018-03-27 19:54:05 +05:30
{
2018-05-09 12:01:36 +05:30
discussionsPath: discussions_path(issuable),
2018-03-27 19:54:05 +05:30
registerPath: new_session_path(:user, redirect_to_referer: 'yes', anchor: 'register-pane'),
newSessionPath: new_session_path(:user, redirect_to_referer: 'yes'),
markdownDocsPath: help_page_path('user/markdown'),
quickActionsDocsPath: help_page_path('user/project/quick_actions'),
closePath: close_issuable_path(issuable),
reopenPath: reopen_issuable_path(issuable),
notesPath: notes_url,
totalNotes: issuable.discussions.length,
lastFetchedAt: Time.now.to_i
2018-12-05 23:21:45 +05:30
}
2018-03-27 19:54:05 +05:30
end
2018-03-17 18:26:18 +05:30
def discussion_resolved_intro(discussion)
discussion.resolved_by_push? ? 'Automatically resolved' : 'Resolved'
end
2018-03-27 19:54:05 +05:30
2018-11-08 19:23:39 +05:30
def rendered_for_merge_request?
params[:from_merge_request].present?
2018-03-27 19:54:05 +05:30
end
def serialize_notes?
2018-11-08 19:23:39 +05:30
rendered_for_merge_request? || params['html'].nil?
2018-03-27 19:54:05 +05:30
end
2014-09-02 18:07:02 +05:30
end