Class: BatchLoaderActiveRecord::AssociationManager

Inherits:
Object
  • Object
show all
Defined in:
lib/batch_loader_active_record/association_manager.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(model:, reflection:) ⇒ AssociationManager

Returns a new instance of AssociationManager.



5
6
7
8
9
# File 'lib/batch_loader_active_record/association_manager.rb', line 5

def initialize(model:, reflection:)
  @model = model
  @reflection = reflection
  assert_not_polymorphic
end

Instance Attribute Details

#modelObject (readonly)

Returns the value of attribute model.



3
4
5
# File 'lib/batch_loader_active_record/association_manager.rb', line 3

def model
  @model
end

#reflectionObject (readonly)

Returns the value of attribute reflection.



3
4
5
# File 'lib/batch_loader_active_record/association_manager.rb', line 3

def reflection
  @reflection
end

Instance Method Details

#accessor_nameObject



11
12
13
# File 'lib/batch_loader_active_record/association_manager.rb', line 11

def accessor_name
  :"#{reflection.name}_lazy"
end

#belongs_to_batch_loader(instance) ⇒ Object



15
16
17
18
19
20
# File 'lib/batch_loader_active_record/association_manager.rb', line 15

def belongs_to_batch_loader(instance)
  foreign_key_value = instance.send(reflection.foreign_key) or return nil
  BatchLoader.for(foreign_key_value).batch(key: batch_key) do |foreign_key_values, loader|
    target_scope.where(id: foreign_key_values).each { |instance| loader.call(instance.id, instance) }
  end
end

#has_and_belongs_to_many_to_batch_loader(instance, instance_scope) ⇒ Object



48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/batch_loader_active_record/association_manager.rb', line 48

def has_and_belongs_to_many_to_batch_loader(instance, instance_scope)
  custom_key = batch_key
  custom_key += [instance_scope.to_sql.hash] unless instance_scope.nil?
  BatchLoader.for(instance.id).batch(default_value: [], key: custom_key) do |model_ids, loader|
    instance_id_path = "#{reflection.join_table}.#{reflection.foreign_key}"
    relation_with_scope(instance_scope)
      .joins(habtm_join(reflection))
      .where("#{reflection.join_table}.#{reflection.foreign_key} IN (?)", model_ids)
      .select("#{target_scope.table_name}.*, #{instance_id_path} AS _instance_id")
      .each do |instance|
        loader.call(instance.public_send(:_instance_id)) { |value| value << instance }
      end
  end
end

#has_many_to_batch_loader(instance, instance_scope) ⇒ Object



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/batch_loader_active_record/association_manager.rb', line 30

def has_many_to_batch_loader(instance, instance_scope)
  custom_key = batch_key
  custom_key += [instance_scope.to_sql.hash] unless instance_scope.nil?
  BatchLoader.for(instance.id).batch(default_value: [], key: custom_key) do |model_ids, loader|
    relation = relation_with_scope(instance_scope)
    if reflection.through_reflection?
      instances = fetch_for_model_ids(model_ids, relation: relation)
      instances.each do |instance|
        loader.call(instance.public_send(:_instance_id)) { |value| value << instance }
      end
    else
      relation.where(reflection.foreign_key => model_ids).each do |instance|
        loader.call(instance.public_send(reflection.foreign_key)) { |value| value << instance }
      end
    end
  end
end

#has_one_to_batch_loader(instance) ⇒ Object



22
23
24
25
26
27
28
# File 'lib/batch_loader_active_record/association_manager.rb', line 22

def has_one_to_batch_loader(instance)
  BatchLoader.for(instance.id).batch(key: batch_key) do |model_ids, loader|
    target_scope.where(reflection.foreign_key => model_ids).each do |instance|
      loader.call(instance.public_send(reflection.foreign_key), instance)
    end
  end
end