2009-07-21 01:51:57 -04:00
|
|
|
module ActiveModel
|
2013-12-25 08:20:44 -05:00
|
|
|
# == Active \Model \Conversion
|
2010-06-14 04:58:00 -04:00
|
|
|
#
|
2011-08-01 05:42:00 -04:00
|
|
|
# Handles default conversions: to_model, to_key, to_param, and to_partial_path.
|
2010-02-21 02:47:37 -05:00
|
|
|
#
|
2011-07-08 17:54:15 -04:00
|
|
|
# Let's take for example this non-persisted object.
|
2010-02-21 02:47:37 -05:00
|
|
|
#
|
|
|
|
# class ContactMessage
|
2010-01-16 16:56:20 -05:00
|
|
|
# include ActiveModel::Conversion
|
2010-02-21 02:47:37 -05:00
|
|
|
#
|
2010-02-21 05:09:21 -05:00
|
|
|
# # ContactMessage are never persisted in the DB
|
|
|
|
# def persisted?
|
|
|
|
# false
|
2010-02-21 02:47:37 -05:00
|
|
|
# end
|
2010-01-16 16:56:20 -05:00
|
|
|
# end
|
2010-02-21 02:47:37 -05:00
|
|
|
#
|
|
|
|
# cm = ContactMessage.new
|
2012-06-22 11:44:53 -04:00
|
|
|
# cm.to_model == cm # => true
|
|
|
|
# cm.to_key # => nil
|
|
|
|
# cm.to_param # => nil
|
|
|
|
# cm.to_partial_path # => "contact_messages/contact_message"
|
2009-07-21 01:51:57 -04:00
|
|
|
module Conversion
|
2011-07-08 17:54:15 -04:00
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2015-01-02 17:19:21 -05:00
|
|
|
# If your object is already designed to implement all of the \Active \Model
|
2011-05-04 21:49:11 -04:00
|
|
|
# you can use the default <tt>:to_model</tt> implementation, which simply
|
2012-06-22 12:52:57 -04:00
|
|
|
# returns +self+.
|
2010-08-14 01:13:00 -04:00
|
|
|
#
|
2012-06-22 11:44:53 -04:00
|
|
|
# class Person
|
|
|
|
# include ActiveModel::Conversion
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# person = Person.new
|
|
|
|
# person.to_model == person # => true
|
|
|
|
#
|
2015-01-02 17:19:21 -05:00
|
|
|
# If your model does not act like an \Active \Model object, then you should
|
2010-08-14 01:13:00 -04:00
|
|
|
# define <tt>:to_model</tt> yourself returning a proxy object that wraps
|
2015-01-02 17:19:21 -05:00
|
|
|
# your object with \Active \Model compliant methods.
|
2009-07-21 01:51:57 -04:00
|
|
|
def to_model
|
|
|
|
self
|
|
|
|
end
|
2010-02-21 02:47:37 -05:00
|
|
|
|
2016-04-20 14:34:05 -04:00
|
|
|
# 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.
|
2012-07-05 00:11:47 -04:00
|
|
|
#
|
2014-06-11 13:59:23 -04:00
|
|
|
# class Person
|
|
|
|
# include ActiveModel::Conversion
|
|
|
|
# attr_accessor :id
|
2012-07-05 00:11:47 -04:00
|
|
|
# end
|
|
|
|
#
|
2014-06-11 13:59:23 -04:00
|
|
|
# person = Person.create(id: 1)
|
2012-07-05 00:11:47 -04:00
|
|
|
# person.to_key # => [1]
|
2010-02-21 02:47:37 -05:00
|
|
|
def to_key
|
2013-12-11 10:43:28 -05:00
|
|
|
key = respond_to?(:id) && id
|
|
|
|
key ? [key] : nil
|
2010-02-21 02:47:37 -05:00
|
|
|
end
|
|
|
|
|
2012-07-05 00:11:47 -04:00
|
|
|
# Returns a +string+ representing the object's key suitable for use in URLs,
|
|
|
|
# or +nil+ if <tt>persisted?</tt> is +false+.
|
|
|
|
#
|
2014-06-11 13:59:23 -04:00
|
|
|
# class Person
|
|
|
|
# include ActiveModel::Conversion
|
|
|
|
# attr_accessor :id
|
|
|
|
# def persisted?
|
|
|
|
# true
|
|
|
|
# end
|
2012-07-05 00:11:47 -04:00
|
|
|
# end
|
|
|
|
#
|
2014-06-11 13:59:23 -04:00
|
|
|
# person = Person.create(id: 1)
|
2012-07-05 00:11:47 -04:00
|
|
|
# person.to_param # => "1"
|
2010-02-21 02:47:37 -05:00
|
|
|
def to_param
|
2014-02-04 04:27:46 -05:00
|
|
|
(persisted? && key = to_key) ? key.join('-') : nil
|
2010-02-21 02:47:37 -05:00
|
|
|
end
|
2011-07-08 17:54:15 -04:00
|
|
|
|
2012-07-05 00:11:47 -04:00
|
|
|
# Returns a +string+ identifying the path associated with the object.
|
2011-07-08 17:54:15 -04:00
|
|
|
# ActionPack uses this to find a suitable partial to represent the object.
|
2012-06-22 11:44:53 -04:00
|
|
|
#
|
|
|
|
# class Person
|
|
|
|
# include ActiveModel::Conversion
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# person = Person.new
|
|
|
|
# person.to_partial_path # => "people/person"
|
2011-08-01 05:42:00 -04:00
|
|
|
def to_partial_path
|
|
|
|
self.class._to_partial_path
|
2011-07-08 17:54:15 -04:00
|
|
|
end
|
|
|
|
|
2011-07-28 03:56:42 -04:00
|
|
|
module ClassMethods #:nodoc:
|
2012-03-10 17:40:27 -05:00
|
|
|
# Provide a class level cache for #to_partial_path. This is an
|
2011-07-28 03:56:42 -04:00
|
|
|
# internal method and should not be accessed directly.
|
2011-08-01 05:42:00 -04:00
|
|
|
def _to_partial_path #:nodoc:
|
|
|
|
@_to_partial_path ||= begin
|
2014-02-26 19:20:33 -05:00
|
|
|
element = ActiveSupport::Inflector.underscore(ActiveSupport::Inflector.demodulize(name))
|
2014-02-26 18:02:57 -05:00
|
|
|
collection = ActiveSupport::Inflector.tableize(name)
|
2011-07-08 17:54:15 -04:00
|
|
|
"#{collection}/#{element}".freeze
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2009-07-21 01:51:57 -04:00
|
|
|
end
|
|
|
|
end
|