提交 6b0e834a 编写于 作者: A Amiel Martin

Use #model_name on instances instead of classes

This allows rails code to be more confdent when asking for a model name, instead of having to ask for the class.

Rails core discussion here: https://groups.google.com/forum/#!topic/rubyonrails-core/ThSaXw9y1F8
上级 5b23e317
......@@ -6,7 +6,7 @@ def convert_to_model(object)
end
def model_name_from_record_or_class(record_or_class)
(record_or_class.is_a?(Class) ? record_or_class : convert_to_model(record_or_class).class).model_name
convert_to_model(record_or_class).model_name
end
end
end
......@@ -249,9 +249,9 @@ def handle_model(record)
model = record.to_model
name = if record.persisted?
args << model
model.class.model_name.singular_route_key
model.model_name.singular_route_key
else
@key_strategy.call model.class.model_name
@key_strategy.call model.model_name
end
named_route = prefix + "#{name}_#{suffix}"
......@@ -279,7 +279,7 @@ def handle_list(list)
parent.model_name.singular_route_key
else
args << parent.to_model
parent.to_model.class.model_name.singular_route_key
parent.to_model.model_name.singular_route_key
end
}
......@@ -292,9 +292,9 @@ def handle_list(list)
else
if record.persisted?
args << record.to_model
record.to_model.class.model_name.singular_route_key
record.to_model.model_name.singular_route_key
else
@key_strategy.call record.to_model.class.model_name
@key_strategy.call record.to_model.model_name
end
end
......
......@@ -1815,8 +1815,8 @@ def submit_default_value
object = convert_to_model(@object)
key = object ? (object.persisted? ? :update : :create) : :submit
model = if object.class.respond_to?(:model_name)
object.class.model_name.human
model = if object.respond_to?(:model_name)
object.model_name.human
else
@object_name.to_s.humanize
end
......
......@@ -40,7 +40,7 @@ def render(&block)
@object_name.gsub!(/\[(.*)_attributes\]\[\d+\]/, '.\1')
if object.respond_to?(:to_model)
key = object.class.model_name.i18n_key
key = object.model_name.i18n_key
i18n_default = ["#{key}.#{method_and_value}".to_sym, ""]
end
......
......@@ -6,7 +6,7 @@ def convert_to_model(object)
end
def model_name_from_record_or_class(record_or_class)
(record_or_class.is_a?(Class) ? record_or_class : convert_to_model(record_or_class).class).model_name
convert_to_model(record_or_class).model_name
end
end
end
......@@ -34,8 +34,8 @@ def to_model
end
class ModelDelegate
def self.model_name
ActiveModel::Name.new(self)
def model_name
ActiveModel::Name.new(self.class)
end
def to_param
......
......@@ -434,7 +434,7 @@ def generate_message(attribute, type = :invalid, options = {})
options = {
default: defaults,
model: @base.class.model_name.human,
model: @base.model_name.human,
attribute: @base.class.human_attribute_name(attribute),
value: value
}.merge!(options)
......
......@@ -73,16 +73,19 @@ def test_persisted?
# == \Naming
#
# Model.model_name must return a string with some convenience methods:
# <tt>:human</tt>, <tt>:singular</tt> and <tt>:plural</tt>. Check
# ActiveModel::Naming for more information.
# Model.model_name and Model#model_name must return a string with some
# convenience methods: # <tt>:human</tt>, <tt>:singular</tt> and
# <tt>:plural</tt>. Check ActiveModel::Naming for more information.
def test_model_naming
assert model.class.respond_to?(:model_name), "The model should respond to model_name"
assert model.class.respond_to?(:model_name), "The model class should respond to model_name"
model_name = model.class.model_name
assert model_name.respond_to?(:to_str)
assert model_name.human.respond_to?(:to_str)
assert model_name.singular.respond_to?(:to_str)
assert model_name.plural.respond_to?(:to_str)
assert model.respond_to?(:model_name), "The model instance should respond to model_name"
assert_equal model.model_name, model.class.model_name
end
# == \Errors Testing
......
......@@ -308,7 +308,7 @@ def self.model_name_from_record_or_class(record_or_class) #:nodoc:
if record_or_class.respond_to?(:model_name)
record_or_class.model_name
elsif record_or_class.respond_to?(:to_model)
record_or_class.to_model.class.model_name
record_or_class.to_model.model_name
else
record_or_class.class.model_name
end
......
......@@ -93,7 +93,7 @@ def as_json(options = nil)
end
if root
root = self.class.model_name.element if root == true
root = model_name.element if root == true
{ root => serializable_hash(options) }
else
serializable_hash(options)
......
......@@ -84,7 +84,7 @@ def serialize
@builder = options[:builder]
@builder.instruct! unless options[:skip_instruct]
root = (options[:root] || @serializable.class.model_name.element).to_s
root = (options[:root] || @serializable.model_name.element).to_s
root = ActiveSupport::XmlMini.rename_key(root, options)
args = [root]
......
......@@ -39,6 +39,7 @@ module Validations
extend ActiveSupport::Concern
included do
extend ActiveModel::Naming
extend ActiveModel::Callbacks
extend ActiveModel::Translation
......
......@@ -55,16 +55,16 @@ def to_param
def cache_key(*timestamp_names)
case
when new_record?
"#{self.class.model_name.cache_key}/new"
"#{model_name.cache_key}/new"
when timestamp_names.any?
timestamp = max_updated_column_timestamp(timestamp_names)
timestamp = timestamp.utc.to_s(cache_timestamp_format)
"#{self.class.model_name.cache_key}/#{id}-#{timestamp}"
"#{model_name.cache_key}/#{id}-#{timestamp}"
when timestamp = max_updated_column_timestamp
timestamp = timestamp.utc.to_s(cache_timestamp_format)
"#{self.class.model_name.cache_key}/#{id}-#{timestamp}"
"#{model_name.cache_key}/#{id}-#{timestamp}"
else
"#{self.class.model_name.cache_key}/#{id}"
"#{model_name.cache_key}/#{id}"
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册