notes_helper.rb 3.3 KB
Newer Older
1
module NotesHelper
2
  def note_target_fields(note)
3 4 5 6
    if note.noteable
      hidden_field_tag(:target_type, note.noteable.class.name.underscore) +
        hidden_field_tag(:target_id, note.noteable.id)
    end
7 8
  end

9
  def note_editable?(note)
10
    Ability.can_edit_note?(current_user, note)
11 12
  end

13 14 15 16 17 18 19 20
  def noteable_json(noteable)
    {
      id: noteable.id,
      class: noteable.class.name,
      resources: noteable.class.table_name,
      project_id: noteable.project.id,
    }.to_json
  end
21

22
  def diff_view_data
23
    return {} unless @comments_target
24

25
    @comments_target.slice(:noteable_id, :noteable_type, :commit_id)
26 27
  end

28 29
  def diff_view_line_data(line_code, position, line_type)
    return if @diff_notes_disabled
30

31
    use_legacy_diff_note = @use_legacy_diff_notes
32 33 34 35 36 37 38 39 40
    # If the controller doesn't force the use of legacy diff notes, we
    # determine this on a line-by-line basis by seeing if there already exist
    # active legacy diff notes at this line, in which case newly created notes
    # will use the legacy technology as well.
    # We do this because the discussion_id values of legacy and "new" diff
    # notes, which are used to group notes on the merge request discussion tab,
    # are incompatible.
    # If we didn't, diff notes that would show for the same line on the changes
    # tab, would show in different discussions on the discussion tab.
41
    use_legacy_diff_note ||= begin
42 43
      discussion = @grouped_diff_discussions[line_code]
      discussion && discussion.legacy_diff_discussion?
44
    end
45

46
    data = {
47 48 49 50
      line_code: line_code,
      line_type: line_type,
    }

51 52
    if use_legacy_diff_note
      discussion_id = LegacyDiffNote.build_discussion_id(
53 54 55
        @comments_target[:noteable_type],
        @comments_target[:noteable_id] || @comments_target[:commit_id],
        line_code
56
      )
57 58 59 60 61

      data.merge!(
        note_type: LegacyDiffNote.name,
        discussion_id: discussion_id
      )
62 63
    else
      discussion_id = DiffNote.build_discussion_id(
64 65 66 67 68 69 70 71 72 73
        @comments_target[:noteable_type],
        @comments_target[:noteable_id] || @comments_target[:commit_id],
        position
      )

      data.merge!(
        position: position.to_json,
        note_type: DiffNote.name,
        discussion_id: discussion_id
      )
74
    end
75 76

    data
77
  end
78

79
  def link_to_reply_discussion(discussion, line_type = nil)
80 81
    return unless current_user

82
    data = discussion.reply_attributes.merge(line_type: line_type)
D
Douwe Maan 已提交
83

84 85 86 87
    content_tag(:div, class: "discussion-reply-holder") do
      button_tag 'Reply...', class: 'btn btn-text-field js-discussion-reply-button',
                             data: data, title: 'Add a reply'
    end
88
  end
89

90 91 92 93
  def preload_max_access_for_authors(notes, project)
    user_ids = notes.map(&:author_id)
    project.team.max_member_access_for_user_ids(user_ids)
  end
94

95 96
  def note_max_access_for_user(note)
    note.project.team.human_max_access(note.author_id)
97
  end
98

99 100
  def discussion_diff_path(discussion)
    return unless discussion.diff_discussion?
101

102 103 104 105
    if discussion.for_merge_request? && discussion.active?
      diffs_namespace_project_merge_request_path(discussion.project.namespace, discussion.project, discussion.noteable, anchor: discussion.line_code)
    elsif discussion.for_commit?
      namespace_project_commit_path(discussion.project.namespace, discussion.project, discussion.noteable, anchor: discussion.line_code)
106 107
    end
  end
108
end