Class: MotionPrime::AssociationCollection
- Inherits:
-
Array
- Object
- Array
- MotionPrime::AssociationCollection
- Defined in:
- motion-prime/models/association_collection.rb
Instance Attribute Summary collapse
-
#association_name ⇒ Object
readonly
Returns the value of attribute association_name.
-
#bag ⇒ Object
readonly
Returns the value of attribute bag.
-
#inverse_relation_key ⇒ Object
readonly
Returns the value of attribute inverse_relation_key.
-
#inverse_relation_name ⇒ Object
readonly
Returns the value of attribute inverse_relation_name.
-
#model_inverse_relation_name ⇒ Object
readonly
Returns the value of attribute model_inverse_relation_name.
Instance Method Summary collapse
-
#add(record) ⇒ Object
Add model record to association collection.
-
#all(find_options = nil, sort_options = nil) ⇒ Object
Return all association records.
-
#delete_all ⇒ Object
Remove all association records.
-
#initialize(bag, options, *args) ⇒ AssociationCollection
constructor
A new instance of AssociationCollection.
- #model_class ⇒ Object
-
#new(attributes = {}) ⇒ Object
Initialize a new object and add to collection.
Constructor Details
#initialize(bag, options, *args) ⇒ AssociationCollection
Returns a new instance of AssociationCollection.
8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'motion-prime/models/association_collection.rb', line 8 def initialize(bag, , *args) @bag = bag @association_name = [:association_name] bag. = model_class = [:inverse_relation] define_inverse_relation() @model_inverse_relation_name = (model_class._associations || {}).find do |name, | [:class_name] == inverse_relation.class_name_without_kvo end.try(:first) super all(*args) end |
Instance Attribute Details
#association_name ⇒ Object (readonly)
Returns the value of attribute association_name.
3 4 5 |
# File 'motion-prime/models/association_collection.rb', line 3 def association_name @association_name end |
#bag ⇒ Object (readonly)
Returns the value of attribute bag.
3 4 5 |
# File 'motion-prime/models/association_collection.rb', line 3 def bag @bag end |
#inverse_relation_key ⇒ Object (readonly)
Returns the value of attribute inverse_relation_key.
4 5 6 |
# File 'motion-prime/models/association_collection.rb', line 4 def inverse_relation_key @inverse_relation_key end |
#inverse_relation_name ⇒ Object (readonly)
Returns the value of attribute inverse_relation_name.
4 5 6 |
# File 'motion-prime/models/association_collection.rb', line 4 def inverse_relation_name @inverse_relation_name end |
#model_inverse_relation_name ⇒ Object (readonly)
Returns the value of attribute model_inverse_relation_name.
4 5 6 |
# File 'motion-prime/models/association_collection.rb', line 4 def model_inverse_relation_name @model_inverse_relation_name end |
Instance Method Details
#add(record) ⇒ Object
Add model record to association collection.
@example:
project.users.new(name: "Bob", age: 10)
44 45 46 47 |
# File 'motion-prime/models/association_collection.rb', line 44 def add(record) self.bag << record record end |
#all(find_options = nil, sort_options = nil) ⇒ Object
Return all association records.
@example:
project.users.all
project.users.all(age: 10)
58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'motion-prime/models/association_collection.rb', line 58 def all( = nil, = nil) = () = () data = if bag.store.present? bag.find(, ) else bag.to_a.select do |entity| .all? { |field, value| entity.info[field] == value } end end set_inverse_relation_for(data) data end |
#delete_all ⇒ Object
Remove all association records.
@example:
project.users.delete_all
83 84 85 |
# File 'motion-prime/models/association_collection.rb', line 83 def delete_all all.each { |obj| obj.delete } end |
#model_class ⇒ Object
73 74 75 |
# File 'motion-prime/models/association_collection.rb', line 73 def model_class @model_class ||= @association_name.classify.constantize end |
#new(attributes = {}) ⇒ Object
Initialize a new object and add to collection.
@example:
project.users.new(name: "Bob", age: 10)
30 31 32 33 34 35 |
# File 'motion-prime/models/association_collection.rb', line 30 def new(attributes = {}) record = model_class.new(attributes).tap do |model| set_inverse_relation_for(model) end add(record) end |