1
0
Fork 0
mirror of https://github.com/heartcombo/simple_form.git synced 2022-11-09 12:19:26 -05:00
heartcombo--simple_form/test/form_builder
Ian Vaughan 21d03ff583 Only output the wrapper if the block yields content
This change allows the wrappers to not output their rendered HTML when
when the block yields no content.

e.g. when defining an optional component :

  ba.wrapper tag: :div, class: 'form-helper -message -hint' do |bb|
    bb.optional :hint, wrap_with: { tag: :p }
  end

and that component is not used in a template :

  <%= form.input :name %>

Then the HTML output still contains the wrapper output :

  <div class="form-helper -message -help"></div>

If this behaviour is not desired, then the output of the empty tags can
be disabled via the `remove_empty` option.

  ba.wrapper tag: :div, class: 'form-helper -message -hint', remove_empty: true do |bb|
    bb.optional :hint, wrap_with: { tag: :p }
  end

The above config will not output any wrapper HTML.
2014-05-29 10:25:16 +01:00
..
association_test.rb Update missing test description removing "should" [ci skip] 2014-05-22 09:07:03 -03:00
button_test.rb improve form_builder's tests description and remove 'should' 2014-05-14 14:18:43 -03:00
error_notification_test.rb Whitespaces 2014-03-11 19:13:59 -03:00
error_test.rb improve form_builder's tests description and remove 'should' 2014-05-14 14:18:43 -03:00
general_test.rb improve form_builder's tests description and remove 'should' 2014-05-14 14:18:43 -03:00
hint_test.rb Only output the wrapper if the block yields content 2014-05-29 10:25:16 +01:00
input_field_test.rb improve form_builder's tests description and remove 'should' 2014-05-14 14:18:43 -03:00
label_test.rb improve form_builder's tests description and remove 'should' 2014-05-14 14:18:43 -03:00
wrapper_test.rb improve form_builder's tests description and remove 'should' 2014-05-14 14:18:43 -03:00