Sha256: cafae9d7985ffd45427ba20e9b99ac221270e56c95e96ccc6080876be7ba252f

Contents?: true

Size: 1.67 KB

Versions: 52

Compression:

Stored size: 1.67 KB

Contents

require 'action_view/helpers/tags/collection_helpers'

module ActionView
  module Helpers
    module Tags # :nodoc:
      class CollectionCheckBoxes < Base # :nodoc:
        include CollectionHelpers

        class CheckBoxBuilder < Builder # :nodoc:
          def check_box(extra_html_options={})
            html_options = extra_html_options.merge(@input_html_options)
            @template_object.check_box(@object_name, @method_name, html_options, @value, nil)
          end
        end

        def render(&block)
          rendered_collection = render_collection do |item, value, text, default_html_options|
            default_html_options[:multiple] = true
            builder = instantiate_builder(CheckBoxBuilder, item, value, text, default_html_options)

            if block_given?
              @template_object.capture(builder, &block)
            else
              render_component(builder)
            end
          end

          # Append a hidden field to make sure something will be sent back to the
          # server if all check boxes are unchecked.
          if @options.fetch(:include_hidden, true)
            rendered_collection + hidden_field
          else
            rendered_collection
          end
        end

        private

        def render_component(builder)
          builder.check_box + builder.label
        end

        def hidden_field
          hidden_name = @html_options[:name]

          hidden_name ||= if @options.has_key?(:index)
            "#{tag_name_with_index(@options[:index])}[]"
          else
            "#{tag_name}[]"
          end

          @template_object.hidden_field_tag(hidden_name, "", id: nil)
        end
      end
    end
  end
end

Version data entries

52 entries across 51 versions & 8 rubygems

Version Path
actionview-4.2.11.3 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.11.2 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.11.1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.11 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.10 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.10.rc1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.9 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.9.rc2 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.9.rc1 lib/action_view/helpers/tags/collection_check_boxes.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/actionview-4.2.8/lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.8 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.8.rc1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.7.1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.7 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.7.rc1 lib/action_view/helpers/tags/collection_check_boxes.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionview-4.2.6/lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.6 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.6.rc1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.2.5.2 lib/action_view/helpers/tags/collection_check_boxes.rb
activejob-lock-0.0.2 rails/actionview/lib/action_view/helpers/tags/collection_check_boxes.rb