gitlab-org--gitlab-foss/app/helpers/notes_helper.rb

84 lines
2.4 KiB
Ruby
Raw Normal View History

module NotesHelper
def note_target_fields(note)
if note.noteable
hidden_field_tag(:target_type, note.noteable.class.name.underscore) +
hidden_field_tag(:target_id, note.noteable.id)
end
end
def note_editable?(note)
Ability.can_edit_note?(current_user, note)
end
def note_supports_slash_commands?(note)
Notes::SlashCommandsService.supported?(note, current_user)
end
def noteable_json(noteable)
{
id: noteable.id,
class: noteable.class.name,
resources: noteable.class.table_name,
project_id: noteable.project.id,
}.to_json
end
def diff_view_data
return {} unless @new_diff_note_attrs
@new_diff_note_attrs.slice(:noteable_id, :noteable_type, :commit_id)
end
def diff_view_line_data(line_code, position, line_type)
return if @diff_notes_disabled
data = {
line_code: line_code,
line_type: line_type,
}
if @use_legacy_diff_notes
2017-03-31 01:33:45 +00:00
data[:note_type] = LegacyDiffNote.name
else
2017-03-31 01:33:45 +00:00
data[:note_type] = DiffNote.name
data[:position] = position.to_json
end
2017-03-31 01:33:45 +00:00
data
end
def link_to_reply_discussion(discussion, line_type = nil)
return unless current_user
2017-03-31 01:33:45 +00:00
data = { discussion_id: discussion.id, line_type: line_type }
2016-05-10 22:41:46 +00:00
button_tag 'Reply...', class: 'btn btn-text-field js-discussion-reply-button',
data: data, title: 'Add a reply'
end
def note_max_access_for_user(note)
note.project.team.human_max_access(note.author_id)
end
def discussion_diff_path(discussion)
2017-04-06 23:18:53 +00:00
if discussion.for_merge_request? && discussion.diff_discussion?
2017-04-01 00:10:53 +00:00
if discussion.active?
# Without a diff ID, the link always points to the latest diff version
diff_id = nil
elsif merge_request_diff = discussion.latest_merge_request_diff
diff_id = merge_request_diff.id
else
2017-04-06 22:13:28 +00:00
# If the discussion is not active, and we cannot find the latest
# merge request diff for this discussion, we return no path at all.
2017-04-01 00:10:53 +00:00
return
end
2017-04-01 00:10:53 +00:00
diffs_namespace_project_merge_request_path(discussion.project.namespace, discussion.project, discussion.noteable, diff_id: diff_id, anchor: discussion.line_code)
elsif discussion.for_commit?
2017-04-06 23:18:53 +00:00
anchor = discussion.line_code if discussion.diff_discussion?
namespace_project_commit_path(discussion.project.namespace, discussion.project, discussion.noteable, anchor: anchor)
end
end
end