Welcome to mirror list, hosted at ThFree Co, Russian Federation.

award_emoji_votes_batch_loader.rb « batch_loaders « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c1b35d3eaf77f8f57809213897328fabe838eafa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module BatchLoaders
  module AwardEmojiVotesBatchLoader
    private

    def load_votes(object, vote_type)
      BatchLoader::GraphQL.for(object.id).batch(key: "#{object.issuing_parent_id}-#{vote_type}") do |ids, loader, args|
        counts = AwardEmoji.votes_for_collection(ids, object.class.name).named(vote_type).index_by(&:awardable_id)

        ids.each do |id|
          loader.call(id, counts[id]&.count || 0)
        end
      end
    end

    def authorized_resource?(object)
      Ability.allowed?(current_user, "read_#{object.to_ability_name}".to_sym, object)
    end
  end
end