Module: ActiveModel::Conversion
- Extended by:
- ActiveSupport::Concern
- Included in:
- API, ActiveRecord::Base
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/conversion.rb
Overview
Active Model Conversion
Handles default conversions: to_model, to_key, to_param, and to_partial_path.
Let’s take for example this non-persisted object.
class ContactMessage
include ActiveModel::Conversion
# ContactMessage are never persisted in the DB
def persisted?
false
end
end
cm = ContactMessage.new
cm.to_model == cm # => true
cm.to_key # => nil
cm.to_param # => nil
cm.to_partial_path # => "contact_messages/contact_message"
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#to_key ⇒ Object
Returns an Array of all key attributes if any of the attributes is set, whether or not the object is persisted.
-
#to_model ⇒ Object
If your object is already designed to implement all of the Active Model you can use the default
:to_model
implementation, which simply returnsself
. -
#to_param ⇒ Object
Returns a
string
representing the object’s key suitable for use in URLs, ornil
ifpersisted?
isfalse
. -
#to_partial_path ⇒ Object
Returns a
string
identifying the path associated with the object.
Methods included from ActiveSupport::Concern
append_features, class_methods, extended, included, prepend_features, prepended
Instance Method Details
#to_key ⇒ Object
Returns an Array of all key attributes if any of the attributes is set, whether or not the object is persisted. Returns nil
if there are no key attributes.
class Person
include ActiveModel::Conversion
attr_accessor :id
def initialize(id)
@id = id
end
end
person = Person.new(1)
person.to_key # => [1]
59 60 61 62 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/conversion.rb', line 59 def to_key key = respond_to?(:id) && id key ? [key] : nil end |
#to_model ⇒ Object
If your object is already designed to implement all of the Active Model you can use the default :to_model
implementation, which simply returns self
.
class Person
include ActiveModel::Conversion
end
person = Person.new
person.to_model == person # => true
If your model does not act like an Active Model object, then you should define :to_model
yourself returning a proxy object that wraps your object with Active Model compliant methods.
41 42 43 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/conversion.rb', line 41 def to_model self end |
#to_param ⇒ Object
Returns a string
representing the object’s key suitable for use in URLs, or nil
if persisted?
is false
.
class Person
include ActiveModel::Conversion
attr_accessor :id
def initialize(id)
@id = id
end
def persisted?
true
end
end
person = Person.new(1)
person.to_param # => "1"
82 83 84 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/conversion.rb', line 82 def to_param (persisted? && key = to_key) ? key.join("-") : nil end |
#to_partial_path ⇒ Object
Returns a string
identifying the path associated with the object. ActionPack uses this to find a suitable partial to represent the object.
class Person
include ActiveModel::Conversion
end
person = Person.new
person.to_partial_path # => "people/person"
95 96 97 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/conversion.rb', line 95 def to_partial_path self.class._to_partial_path end |