Module: Mongoid::Changeable
Overview
Defines behavior for dirty tracking.
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#changed ⇒ Array<String>
Get the changed attributes for the document.
-
#changed? ⇒ true | false
Has the document changed?.
-
#changed_attributes ⇒ Hash<String, Object>
Get the attribute changes.
-
#changes ⇒ Hash<String, Array<Object, Object> ] The changes.
Get all the changes for the document.
-
#children_changed? ⇒ true | false
Have any children (embedded documents) of this document changed?.
-
#move_changes ⇒ Object
Call this method after save, so the changes can be properly switched.
-
#post_persist ⇒ Object
Things that need to execute after a document has been persisted.
-
#previous_changes ⇒ Hash<String, Array<Object, Object> ] The previous changes.
Get the previous changes on the document.
-
#remove_change(name) ⇒ Object
Remove a change from the dirty attributes hash.
-
#setters ⇒ Hash
Gets all the new values for each of the changed fields, to be passed to a MongoDB $set modifier.
Instance Method Details
#changed ⇒ Array<String>
Get the changed attributes for the document.
15 16 17 |
# File 'lib/mongoid/changeable.rb', line 15 def changed changed_attributes.keys.select { |attr| attribute_change(attr) } end |
#changed? ⇒ true | false
Has the document changed?
25 26 27 |
# File 'lib/mongoid/changeable.rb', line 25 def changed? changes.values.any? { |val| val } || children_changed? end |
#changed_attributes ⇒ Hash<String, Object>
Get the attribute changes.
44 45 46 |
# File 'lib/mongoid/changeable.rb', line 44 def changed_attributes @changed_attributes ||= {} end |
#changes ⇒ Hash<String, Array<Object, Object> ] The changes.
Get all the changes for the document.
54 55 56 57 58 59 60 61 |
# File 'lib/mongoid/changeable.rb', line 54 def changes _changes = {} changed.each do |attr| change = attribute_change(attr) _changes[attr] = change if change end _changes.with_indifferent_access end |
#children_changed? ⇒ true | false
This intentionally only considers children and not descendants.
Have any children (embedded documents) of this document changed?
34 35 36 |
# File 'lib/mongoid/changeable.rb', line 34 def children_changed? _children.any?(&:changed?) end |
#move_changes ⇒ Object
Call this method after save, so the changes can be properly switched.
This will unset the memoized children array, set new record flag to false, set the document as validated, and move the dirty changes.
70 71 72 73 74 75 76 77 |
# File 'lib/mongoid/changeable.rb', line 70 def move_changes @previous_changes = changes @previous_attributes = attributes.dup Atomic::UPDATES.each do |update| send(update).clear end changed_attributes.clear end |
#post_persist ⇒ Object
Things that need to execute after a document has been persisted.
83 84 85 86 87 |
# File 'lib/mongoid/changeable.rb', line 83 def post_persist reset_persisted_descendants reset_attributes_before_type_cast move_changes end |
#previous_changes ⇒ Hash<String, Array<Object, Object> ] The previous changes.
Get the previous changes on the document.
95 96 97 |
# File 'lib/mongoid/changeable.rb', line 95 def previous_changes @previous_changes ||= {} end |
#remove_change(name) ⇒ Object
Remove a change from the dirty attributes hash. Used by the single field atomic updaters.
106 107 108 |
# File 'lib/mongoid/changeable.rb', line 106 def remove_change(name) changed_attributes.delete(name.to_s) end |
#setters ⇒ Hash
Gets all the new values for each of the changed fields, to be passed to a MongoDB $set modifier.
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
# File 'lib/mongoid/changeable.rb', line 119 def setters mods = {} changes.each_pair do |name, changes| if changes old, new = changes field = fields[name] key = atomic_attribute_name(name) if field && field.resizable? field.add_atomic_changes(self, name, key, mods, new, old) else mods[key] = new unless atomic_unsets.include?(key) end end end mods end |