Skip to content

Commit

Permalink
Merge pull request #40168 from igor04/disable_with_and_automatically_…
Browse files Browse the repository at this point in the history
…disable_submit_tag

Do not use submit_tag auto-disabling when disable_with is set to false
  • Loading branch information
rafaelfranca committed Dec 9, 2020
1 parent a2d35fb commit 5d2e693
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
11 changes: 5 additions & 6 deletions actionview/lib/action_view/helpers/form_tag_helper.rb
Expand Up @@ -897,16 +897,15 @@ def sanitize_to_id(name)
end

def set_default_disable_with(value, tag_options)
return unless ActionView::Base.automatically_disable_submit_tag
data = tag_options["data"]
data = tag_options.fetch("data", {})

unless tag_options["data-disable-with"] == false || (data && data["disable_with"] == false)
if tag_options["data-disable-with"] == false || data["disable_with"] == false
data.delete("disable_with")
elsif ActionView::Base.automatically_disable_submit_tag
disable_with_text = tag_options["data-disable-with"]
disable_with_text ||= data["disable_with"] if data
disable_with_text ||= data["disable_with"]
disable_with_text ||= value.to_s.clone
tag_options.deep_merge!("data" => { "disable_with" => disable_with_text })
else
data.delete("disable_with") if data
end

tag_options.delete("data-disable-with")
Expand Down
10 changes: 10 additions & 0 deletions actionview/test/template/form_tag_helper_test.rb
Expand Up @@ -538,6 +538,16 @@ def test_empty_submit_tag_with_opt_out
ActionView::Base.automatically_disable_submit_tag = true
end

def test_empty_submit_tag_with_opt_out_and_explicit_disabling
ActionView::Base.automatically_disable_submit_tag = false
assert_dom_equal(
%(<input name='commit' type="submit" value="Save" />),
submit_tag("Save", data: { disable_with: false })
)
ensure
ActionView::Base.automatically_disable_submit_tag = true
end

def test_submit_tag_having_data_disable_with_string
assert_dom_equal(
%(<input data-disable-with="Processing..." data-confirm="Are you sure?" name='commit' type="submit" value="Save" />),
Expand Down

0 comments on commit 5d2e693

Please sign in to comment.