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

73 lines
2 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
module NotesHelper
2015-04-26 12:48:37 +05:30
# Helps to distinguish e.g. commit notes in mr notes list
2014-09-02 18:07:02 +05:30
def note_for_main_target?(note)
2016-06-02 11:05:42 +05:30
@noteable.class.name == note.noteable_type && !note.diff_note?
2014-09-02 18:07:02 +05:30
end
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
2015-09-11 14:41:01 +05:30
def note_editable?(note)
note.editable? && can?(current_user, :admin_note, note)
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,
project_id: noteable.project.id,
}.to_json
end
2015-09-11 14:41:01 +05:30
def link_to_new_diff_note(line_code, line_type = nil)
2016-06-02 11:05:42 +05:30
discussion_id = LegacyDiffNote.build_discussion_id(
2014-09-02 18:07:02 +05:30
@comments_target[:noteable_type],
@comments_target[:noteable_id] || @comments_target[:commit_id],
line_code
)
data = {
noteable_type: @comments_target[:noteable_type],
noteable_id: @comments_target[:noteable_id],
commit_id: @comments_target[:commit_id],
2016-06-02 11:05:42 +05:30
line_type: line_type,
2014-09-02 18:07:02 +05:30
line_code: line_code,
2016-06-02 11:05:42 +05:30
note_type: LegacyDiffNote.name,
discussion_id: discussion_id
2014-09-02 18:07:02 +05:30
}
2015-04-26 12:48:37 +05:30
button_tag(class: 'btn add-diff-note js-add-diff-note-button',
data: data,
title: 'Add a comment to this line') do
icon('comment-o')
end
2014-09-02 18:07:02 +05:30
end
2016-06-02 11:05:42 +05:30
def link_to_reply_discussion(note, line_type = nil)
2014-09-02 18:07:02 +05:30
return unless current_user
data = {
noteable_type: note.noteable_type,
noteable_id: note.noteable_id,
commit_id: note.commit_id,
2015-09-11 14:41:01 +05:30
discussion_id: note.discussion_id,
line_type: line_type
2014-09-02 18:07:02 +05:30
}
2016-06-02 11:05:42 +05:30
if note.diff_note?
data.merge!(
line_code: note.line_code,
note_type: LegacyDiffNote.name
)
2015-04-26 12:48:37 +05:30
end
2016-06-02 11:05:42 +05:30
button_tag 'Reply...', class: 'btn btn-text-field js-discussion-reply-button',
data: data, title: 'Add a reply'
2014-09-02 18:07:02 +05:30
end
end