Module: Mongoid::State
- Included in:
- Components
- Defined in:
- lib/mongoid/state.rb
Overview
This module contains the behaviour for getting the various states a document can transition through.
Instance Attribute Summary collapse
-
#destroyed ⇒ Object
writeonly
Sets the attribute destroyed.
-
#flagged_for_destroy ⇒ Object
writeonly
Sets the attribute flagged_for_destroy.
-
#new_record ⇒ Object
writeonly
Sets the attribute new_record.
Instance Method Summary collapse
-
#destroyed? ⇒ true, false
(also: #deleted?)
Returns true if the
Document
has been succesfully destroyed, and false if it hasn’t. -
#flagged_for_destroy? ⇒ true, false
Returns whether or not the document has been flagged for deletion, but not destroyed yet.
-
#new_record? ⇒ true, false
(also: #new?)
Returns true if the
Document
has not been persisted to the database, false if it has. -
#persisted? ⇒ true, false
Checks if the document has been saved to the database.
-
#pushable? ⇒ true, false
Determine if the document can be pushed.
-
#settable? ⇒ true, false
Determine if the document can be set.
-
#updateable? ⇒ true, false
Is the document updateable?.
Instance Attribute Details
#destroyed=(value) ⇒ Object (writeonly)
Sets the attribute destroyed
8 9 10 |
# File 'lib/mongoid/state.rb', line 8 def destroyed=(value) @destroyed = value end |
#flagged_for_destroy=(value) ⇒ Object (writeonly)
Sets the attribute flagged_for_destroy
8 9 10 |
# File 'lib/mongoid/state.rb', line 8 def flagged_for_destroy=(value) @flagged_for_destroy = value end |
#new_record=(value) ⇒ Object (writeonly)
Sets the attribute new_record
8 9 10 |
# File 'lib/mongoid/state.rb', line 8 def new_record=(value) @new_record = value end |
Instance Method Details
#destroyed? ⇒ true, false Also known as: deleted?
Returns true if the Document
has been succesfully destroyed, and false if it hasn’t. This is determined by the variable @destroyed and NOT by checking the database.
55 56 57 |
# File 'lib/mongoid/state.rb', line 55 def destroyed? @destroyed == true end |
#flagged_for_destroy? ⇒ true, false
Returns whether or not the document has been flagged for deletion, but not destroyed yet. Used for atomic pulls of child documents.
43 44 45 |
# File 'lib/mongoid/state.rb', line 43 def flagged_for_destroy? !!@flagged_for_destroy end |
#new_record? ⇒ true, false Also known as: new?
Returns true if the Document
has not been persisted to the database, false if it has. This is determined by the variable @new_record and NOT if the object has an id.
18 19 20 |
# File 'lib/mongoid/state.rb', line 18 def new_record? @new_record == true end |
#persisted? ⇒ true, false
Checks if the document has been saved to the database. Returns false if the document has been destroyed.
30 31 32 |
# File 'lib/mongoid/state.rb', line 30 def persisted? !new_record? && !destroyed? end |
#pushable? ⇒ true, false
Determine if the document can be pushed.
66 67 68 69 70 71 |
# File 'lib/mongoid/state.rb', line 66 def pushable? new? && && _parent.persisted? && !_parent.delayed_atomic_sets[.name.to_s] end |
#settable? ⇒ true, false
Determine if the document can be set.
81 82 83 |
# File 'lib/mongoid/state.rb', line 81 def settable? new? && && _parent.persisted? end |
#updateable? ⇒ true, false
Is the document updateable?
93 94 95 |
# File 'lib/mongoid/state.rb', line 93 def updateable? persisted? && changed? end |