提交 4158974c 编写于 作者: R Rafael França

Merge pull request #22764 from stevenspiel/titleize_model_name_for_default_submit_button_value

titleize the model name on default submit buttons
......@@ -1922,6 +1922,8 @@ def submit_default_value
@object_name.to_s.humanize
end
model = model.downcase
defaults = []
defaults << :"helpers.submit.#{object_name}.#{key}"
defaults << :"helpers.submit.#{key}"
......
......@@ -31,6 +31,26 @@ def persisted?
class GoodCustomer < Customer
end
class TicketType < Struct.new(:name)
extend ActiveModel::Naming
include ActiveModel::Conversion
extend ActiveModel::Translation
def initialize(*args)
super
end
def persisted=(boolean)
@persisted = boolean
end
def persisted?
@persisted
end
attr_accessor :name
end
class Post < Struct.new(:title, :author_name, :body, :secret, :persisted, :written_on, :cost)
extend ActiveModel::Naming
include ActiveModel::Conversion
......
......@@ -128,6 +128,8 @@ def @post.to_param; '123'; end
@post_delegator.title = 'Hello World'
@car = Car.new("#000FFF")
@ticket_type = TicketType.new
end
Routes = ActionDispatch::Routing::RouteSet.new
......@@ -136,6 +138,8 @@ def @post.to_param; '123'; end
resources :comments
end
resources :ticket_types
namespace :admin do
resources :posts do
resources :comments
......@@ -1872,6 +1876,20 @@ def test_form_for_with_model_using_relative_model_naming
assert_dom_equal expected, output_buffer
end
def test_lowercase_model_name_default_submit_button_value
form_for(@ticket_type) do |f|
concat f.submit
end
expected =
'<form class="new_ticket_type" id="new_ticket_type" action="/ticket_types" accept-charset="UTF-8" method="post">' +
hidden_fields +
'<input type="submit" name="commit" value="Create ticket type" data-disable-with="Create ticket type" />' +
'</form>'
assert_dom_equal expected, output_buffer
end
def test_form_for_with_symbol_object_name
form_for(@post, as: "other_name", html: { id: "create-post" }) do |f|
concat f.label(:title, class: 'post_title')
......@@ -2239,7 +2257,7 @@ def test_submit_with_object_as_new_record_and_locale_strings
end
expected = whole_form('/posts', 'new_post', 'new_post') do
"<input name='commit' data-disable-with='Create Post' type='submit' value='Create Post' />"
"<input name='commit' data-disable-with='Create post' type='submit' value='Create post' />"
end
assert_dom_equal expected, output_buffer
......@@ -2254,7 +2272,7 @@ def test_submit_with_object_as_existing_record_and_locale_strings
end
expected = whole_form('/posts/123', 'edit_post_123', 'edit_post', method: 'patch') do
"<input name='commit' data-disable-with='Confirm Post changes' type='submit' value='Confirm Post changes' />"
"<input name='commit' data-disable-with='Confirm post changes' type='submit' value='Confirm post changes' />"
end
assert_dom_equal expected, output_buffer
......@@ -2282,7 +2300,7 @@ def test_submit_with_object_and_nested_lookup
end
expected = whole_form('/posts/123', 'edit_another_post', 'edit_another_post', method: 'patch') do
"<input name='commit' data-disable-with='Update your Post' type='submit' value='Update your Post' />"
"<input name='commit' data-disable-with='Update your post' type='submit' value='Update your post' />"
end
assert_dom_equal expected, output_buffer
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册