Module: CouchFoo::Dirty
- Defined in:
- lib/couch_foo/dirty.rb
Overview
Track unsaved attribute changes.
A newly instantiated object is unchanged:
person = Person.find_by_name('uncle bob')
person.changed? # => false
Change the name:
person.name = 'Bob'
person.changed? # => true
person.name_changed? # => true
person.name_was # => 'uncle bob'
person.name_change # => ['uncle bob', 'Bob']
person.name = 'Bill'
person.name_change # => ['uncle bob', 'Bill']
Save the changes:
person.save
person.changed? # => false
person.name_changed? # => false
Assigning the same value leaves the attribute unchanged:
person.name = 'Bill'
person.name_changed? # => false
person.name_change # => nil
Which attributes have changed?
person.name = 'bob'
person.changed # => ['name']
person.changes # => { 'name' => ['Bill', 'bob'] }
Before modifying an attribute in-place:
person.name_will_change!
person.name << 'by'
person.name_change # => ['uncle bob', 'uncle bobby']
Class Method Summary collapse
Instance Method Summary collapse
-
#changed ⇒ Object
List of attributes with unsaved changes.
-
#changed? ⇒ Boolean
Do any attributes have unsaved changes? person.changed? # => false person.name = ‘bob’ person.changed? # => true.
-
#changes ⇒ Object
Map of changed attrs => [original value, new value] person.changes # => {} person.name = ‘bob’ person.changes # => { ‘name’ => [‘bill’, ‘bob’] }.
-
#reload_with_dirty(*args) ⇒ Object
reload
the record and clears changed attributes. -
#save_with_dirty(*args) ⇒ Object
Attempts to
save
the record and clears changed attributes if successful. -
#save_with_dirty!(*args) ⇒ Object
Attempts to
save!
the record and clears changed attributes if successful.
Class Method Details
.included(base) ⇒ Object
37 38 39 40 41 42 43 |
# File 'lib/couch_foo/dirty.rb', line 37 def self.included(base) base.attribute_method_suffix '_changed?', '_change', '_will_change!', '_was' base.alias_method_chain :write_attribute, :dirty base.alias_method_chain :save, :dirty base.alias_method_chain :save!, :dirty base.alias_method_chain :reload, :dirty end |
Instance Method Details
#changed ⇒ Object
List of attributes with unsaved changes.
person.changed # => []
person.name = 'bob'
person.changed # => ['name']
57 58 59 |
# File 'lib/couch_foo/dirty.rb', line 57 def changed changed_attributes.keys end |
#changed? ⇒ Boolean
Do any attributes have unsaved changes?
person.changed? # => false
person.name = 'bob'
person.changed? # => true
49 50 51 |
# File 'lib/couch_foo/dirty.rb', line 49 def changed? !changed_attributes.empty? end |
#changes ⇒ Object
Map of changed attrs => [original value, new value]
person.changes # => {}
person.name = 'bob'
person.changes # => { 'name' => ['bill', 'bob'] }
65 66 67 |
# File 'lib/couch_foo/dirty.rb', line 65 def changes changed.inject({}) { |h, attr| h[attr] = attribute_change(attr); h } end |
#reload_with_dirty(*args) ⇒ Object
reload
the record and clears changed attributes.
85 86 87 88 89 |
# File 'lib/couch_foo/dirty.rb', line 85 def reload_with_dirty(*args) #:nodoc: record = reload_without_dirty(*args) changed_attributes.clear record end |
#save_with_dirty(*args) ⇒ Object
Attempts to save
the record and clears changed attributes if successful.
70 71 72 73 74 75 |
# File 'lib/couch_foo/dirty.rb', line 70 def save_with_dirty(*args) #:nodoc: if status = save_without_dirty(*args) changed_attributes.clear end status end |
#save_with_dirty!(*args) ⇒ Object
Attempts to save!
the record and clears changed attributes if successful.
78 79 80 81 82 |
# File 'lib/couch_foo/dirty.rb', line 78 def save_with_dirty!(*args) #:nodoc: status = save_without_dirty!(*args) changed_attributes.clear status end |