Sha256: 6c2c5912799ad0fd3db305a22304de2e02eddf70cd82c7d6609b11dcf13fef39
Contents?: true
Size: 1.7 KB
Versions: 2
Compression:
Stored size: 1.7 KB
Contents
module SimpleForm module Tags module CollectionExtensions private def render_collection item_wrapper_tag = @options.fetch(:item_wrapper_tag, :span) item_wrapper_class = @options[:item_wrapper_class] @collection.map do |item| value = value_for_collection(item, @value_method) text = value_for_collection(item, @text_method) default_html_options = default_html_options_for_collection(item, value) rendered_item = yield item, value, text, default_html_options item_wrapper_tag ? @template_object.content_tag(item_wrapper_tag, rendered_item, class: item_wrapper_class) : rendered_item end.join.html_safe end def wrap_rendered_collection(collection) wrapper_tag = @options[:collection_wrapper_tag] if wrapper_tag wrapper_class = @options[:collection_wrapper_class] @template_object.content_tag(wrapper_tag, collection, class: wrapper_class) else collection end end end class CollectionRadioButtons < ActionView::Helpers::Tags::CollectionRadioButtons include CollectionExtensions def render wrap_rendered_collection(super) end private def render_component(builder) builder.radio_button + builder.label(class: "collection_radio_buttons") end end class CollectionCheckBoxes < ActionView::Helpers::Tags::CollectionCheckBoxes include CollectionExtensions def render wrap_rendered_collection(super) end private def render_component(builder) builder.check_box + builder.label(class: "collection_check_boxes") end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
simple_form-3.0.0.rc | lib/simple_form/tags.rb |
simple_form-3.0.0.beta1 | lib/simple_form/tags.rb |