Class: ROM::Factory::Attributes::Association::OneToMany Private

Inherits:
Core
  • Object
show all
Defined in:
lib/rom/factory/attributes/association.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Direct Known Subclasses

OneToOne

Instance Method Summary collapse

Constructor Details

This class inherits a constructor from ROM::Factory::Attributes::Association::Core

Instance Method Details

#call(attrs = EMPTY_HASH, parent, persist: true) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# File 'lib/rom/factory/attributes/association.rb', line 112

def call(attrs = EMPTY_HASH, parent, persist: true)
  return if attrs.key?(name)

  structs = Array.new(count).map do
    # hash which contains the foreign key info, i.e: { user_id: 1 }
    association_hash = assoc.associate(attrs, parent)

    if persist
      builder.persistable.create(*traits, **association_hash)
    else
      builder.struct(*traits, **attrs, **association_hash)
    end
  end

  {name => structs}
end

#dependency?(rel) ⇒ Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


130
131
132
# File 'lib/rom/factory/attributes/association.rb', line 130

def dependency?(rel)
  assoc.source == rel
end