Module: Mongoid::Dirty
Overview
:nodoc:
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.
-
#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.
14 15 16 |
# File 'lib/mongoid/dirty.rb', line 14 def changed changed_attributes.keys end |
#changed? ⇒ true, false
Has the document changed?
26 27 28 |
# File 'lib/mongoid/dirty.rb', line 26 def changed? changed_attributes.any? || children_changed? end |
#changed_attributes ⇒ Hash<String, Object>
Get the attribute changes.
52 53 54 |
# File 'lib/mongoid/dirty.rb', line 52 def changed_attributes @changed_attributes ||= {} end |
#changes ⇒ Hash<String, Array<Object, Object> ] The changes.
Get all the changes for the document.
64 65 66 67 68 69 70 |
# File 'lib/mongoid/dirty.rb', line 64 def changes changed.inject({}.with_indifferent_access) do |changes, attr| changes.tap do |hash| hash[attr] = attribute_change(attr) end end end |
#children_changed? ⇒ true, false
Have any children (embedded documents) of this document changed?
38 39 40 41 42 |
# File 'lib/mongoid/dirty.rb', line 38 def children_changed? _children.any? do |child| child.changed? end 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 to false, set the document as validated, and move the dirty changes.
81 82 83 84 85 86 87 88 |
# File 'lib/mongoid/dirty.rb', line 81 def move_changes @_children = nil @previous_changes = changes Atomic::UPDATES.each do |update| send(update).clear end changed_attributes.clear end |
#previous_changes ⇒ Hash<String, Array<Object, Object> ] The previous changes.
Get the previous changes on the document.
98 99 100 |
# File 'lib/mongoid/dirty.rb', line 98 def previous_changes @previous_changes end |
#remove_change(name) ⇒ Object
Remove a change from the dirty attributes hash. Used by the single field atomic updators.
111 112 113 |
# File 'lib/mongoid/dirty.rb', line 111 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.
@todo: Durran: Refactor 3.0
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'lib/mongoid/dirty.rb', line 126 def setters {}.tap do |modifications| changes.each_pair do |name, changes| if changes old, new = changes field = fields[name] key = ? "#{atomic_position}.#{name}" : name if field && field.resizable? field.add_atomic_changes( self, name, key, modifications, new, old ) else modifications[key] = new end end end end end |