debian-mirror-gitlab/app/controllers/concerns/renders_notes.rb

43 lines
1.3 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
module RendersNotes
2018-03-17 18:26:18 +05:30
# rubocop:disable Gitlab/ModuleWithInstanceVariables
def prepare_notes_for_rendering(notes, noteable = nil)
2017-08-17 22:00:37 +05:30
preload_noteable_for_regular_notes(notes)
preload_max_access_for_authors(notes, @project)
2018-03-17 18:26:18 +05:30
preload_first_time_contribution_for_authors(noteable, notes)
2018-11-18 11:00:15 +05:30
preload_author_status(notes)
2018-05-09 12:01:36 +05:30
Notes::RenderService.new(current_user).execute(notes)
2017-08-17 22:00:37 +05:30
notes
end
2018-03-17 18:26:18 +05:30
# rubocop:enable Gitlab/ModuleWithInstanceVariables
2017-08-17 22:00:37 +05:30
private
def preload_max_access_for_authors(notes, project)
2019-07-07 11:18:12 +05:30
return unless project
2017-08-17 22:00:37 +05:30
user_ids = notes.map(&:author_id)
project.team.max_member_access_for_user_ids(user_ids)
end
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2017-08-17 22:00:37 +05:30
def preload_noteable_for_regular_notes(notes)
ActiveRecord::Associations::Preloader.new.preload(notes.reject(&:for_commit?), :noteable)
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2018-03-17 18:26:18 +05:30
def preload_first_time_contribution_for_authors(noteable, notes)
return unless noteable.is_a?(Issuable) && noteable.first_contribution?
notes.each {|n| n.specialize_for_first_contribution!(noteable)}
end
2018-11-18 11:00:15 +05:30
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2018-11-18 11:00:15 +05:30
def preload_author_status(notes)
ActiveRecord::Associations::Preloader.new.preload(notes, { author: :status })
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2017-08-17 22:00:37 +05:30
end