Sha256: 2f616b9421b3ef77e29f7424d40f38b602402dbc7dc96ba253aa09d147ebad60
Contents?: true
Size: 1.67 KB
Versions: 4
Compression:
Stored size: 1.67 KB
Contents
# frozen_string_literal: true module Goldiloader class AutoIncludeContext attr_reader :models delegate :size, to: :models def initialize @models = [] end def self.register_models(models, included_associations = nil) auto_include_context = Goldiloader::AutoIncludeContext.new auto_include_context.register_models(models) Array.wrap(included_associations).each do |included_association| associations = if included_association.is_a?(Hash) included_association.keys else Array.wrap(included_association) end nested_associations = if included_association.is_a?(Hash) included_association else Hash.new([]) end associations.each do |association| nested_models = models.flat_map do |model| model.association(association).target end.compact register_models(nested_models, nested_associations[association]) end end end def register_models(models) # Don't use Array() or Array.wrap() because they will check respond_to?(:to_ary) # which for ActiveStorage::Attachment will delegate to the blob association which # triggers an infinite eager loading loop on the association models = [models] unless models.is_a?(Array) models.each do |model| next if model.nil? model.auto_include_context = self self.models << model end self end alias_method :register_model, :register_models end end
Version data entries
4 entries across 4 versions & 1 rubygems