Module: Content::ItemDirtyMethods
- Defined in:
- lib/content/item_dirty_methods.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']
Defined Under Namespace
Modules: ClassMethods
Constant Summary collapse
- DIRTY_SUFFIXES =
['_changed?', '_change', '_will_change!', '_was']
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].
-
#reload_with_dirty(*args) ⇒ Object
reloadthe record and clears changed attributes. -
#save_with_dirty(*args) ⇒ Object
Attempts to
savethe 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
39 40 41 42 43 44 45 46 47 48 |
# File 'lib/content/item_dirty_methods.rb', line 39 def self.included(base) # base.attribute_method_suffix *DIRTY_SUFFIXES base.alias_method_chain :write_attribute, :dirty base.alias_method_chain :save, :dirty base.alias_method_chain :save!, :dirty base.alias_method_chain :update, :dirty # base.alias_method_chain :reload, :dirty base.send(:extend, ClassMethods) end |
Instance Method Details
#changed ⇒ Object
List of attributes with unsaved changes.
person.changed # => []
person.name = 'bob'
person.changed # => ['name']
62 63 64 |
# File 'lib/content/item_dirty_methods.rb', line 62 def changed changed_attributes.keys end |
#changed? ⇒ Boolean
Do any attributes have unsaved changes?
person.changed? # => false
person.name = 'bob'
person.changed? # => true
54 55 56 |
# File 'lib/content/item_dirty_methods.rb', line 54 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'] }
70 71 72 |
# File 'lib/content/item_dirty_methods.rb', line 70 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.
90 91 92 93 94 |
# File 'lib/content/item_dirty_methods.rb', line 90 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.
75 76 77 78 79 80 |
# File 'lib/content/item_dirty_methods.rb', line 75 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.
83 84 85 86 87 |
# File 'lib/content/item_dirty_methods.rb', line 83 def save_with_dirty!(*args) #:nodoc: status = save_without_dirty!(*args) changed_attributes.clear status end |