notes_helper.rb 3.5 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
  def note_supports_slash_commands?(note)
    Notes::SlashCommandsService.supported?(note, current_user)
  end

17 18 19 20 21 22 23 24
  def noteable_json(noteable)
    {
      id: noteable.id,
      class: noteable.class.name,
      resources: noteable.class.table_name,
      project_id: noteable.project.id,
    }.to_json
  end
25

26
  def diff_view_data
27
    return {} unless @comments_target
28

29
    @comments_target.slice(:noteable_id, :noteable_type, :commit_id)
30 31
  end

32 33
  def diff_view_line_data(line_code, position, line_type)
    return if @diff_notes_disabled
34

35
    use_legacy_diff_note = @use_legacy_diff_notes
36 37 38 39 40 41 42 43 44
    # 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.
45
    use_legacy_diff_note ||= begin
46 47
      discussion = @grouped_diff_discussions[line_code]
      discussion && discussion.legacy_diff_discussion?
48
    end
49

50
    data = {
51 52 53 54
      line_code: line_code,
      line_type: line_type,
    }

55
    if use_legacy_diff_note
56
      discussion_id = LegacyDiffNote.discussion_id(
57 58 59
        @comments_target[:noteable_type],
        @comments_target[:noteable_id] || @comments_target[:commit_id],
        line_code
60
      )
61 62 63

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

      data.merge!(
        position: position.to_json,
        note_type: DiffNote.name,
76
        discussion_id: discussion_id
77
      )
78
    end
79 80

    data
81
  end
82

83
  def link_to_reply_discussion(discussion, line_type = nil)
84 85
    return unless current_user

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

88 89
    button_tag 'Reply...', class: 'btn btn-text-field js-discussion-reply-button',
                           data: data, title: 'Add a reply'
90
  end
91

92 93 94 95
  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
96

97 98 99 100
  def preload_noteable_for_regular_notes(notes)
    ActiveRecord::Associations::Preloader.new.preload(notes.select { |note| !note.for_commit? }, :noteable)
  end

101 102
  def note_max_access_for_user(note)
    note.project.team.human_max_access(note.author_id)
103
  end
104

105 106
  def discussion_diff_path(discussion)
    return unless discussion.diff_discussion?
107

108 109 110 111
    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)
112 113
    end
  end
114
end