Sha256: 8890eab21916c0ccebd90abb3c01ed7301faffb5af1ba81061494ed57ee19d9f

Contents?: true

Size: 1.23 KB

Versions: 58

Compression:

Stored size: 1.23 KB

Contents

# frozen_string_literal: true

module ActionView
  module Helpers
    module Tags # :nodoc:
      class Select < Base # :nodoc:
        def initialize(object_name, method_name, template_object, choices, options, html_options)
          @choices = block_given? ? template_object.capture { yield || "" } : choices
          @choices = @choices.to_a if @choices.is_a?(Range)

          @html_options = html_options

          super(object_name, method_name, template_object, options)
        end

        def render
          option_tags_options = {
            selected: @options.fetch(:selected) { value.nil? ? "" : value },
            disabled: @options[:disabled]
          }

          option_tags = if grouped_choices?
            grouped_options_for_select(@choices, option_tags_options)
          else
            options_for_select(@choices, option_tags_options)
          end

          select_content_tag(option_tags, @options, @html_options)
        end

        private
          # Grouped choices look like this:
          #
          #   [nil, []]
          #   { nil => [] }
          def grouped_choices?
            !@choices.blank? && @choices.first.respond_to?(:last) && Array === @choices.first.last
          end
      end
    end
  end
end

Version data entries

58 entries across 54 versions & 4 rubygems

Version Path
actionview-6.1.7.10 lib/action_view/helpers/tags/select.rb
actionview-6.1.7.9 lib/action_view/helpers/tags/select.rb
actionview-6.1.7.8 lib/action_view/helpers/tags/select.rb
actionview-6.1.7.7 lib/action_view/helpers/tags/select.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actionview-6.1.6.1/lib/action_view/helpers/tags/select.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actionview-7.0.2.3/lib/action_view/helpers/tags/select.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actionview-7.0.3.1/lib/action_view/helpers/tags/select.rb
actionview-6.1.7.6 lib/action_view/helpers/tags/select.rb
actionview-6.1.7.5 lib/action_view/helpers/tags/select.rb
actionview-6.1.7.4 lib/action_view/helpers/tags/select.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionview-7.0.2.3/lib/action_view/helpers/tags/select.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionview-6.1.6.1/lib/action_view/helpers/tags/select.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionview-7.0.3.1/lib/action_view/helpers/tags/select.rb
actionview-7.0.4.3 lib/action_view/helpers/tags/select.rb
actionview-6.1.7.3 lib/action_view/helpers/tags/select.rb
actionview-6.1.7.2 lib/action_view/helpers/tags/select.rb
actionview-7.0.4.2 lib/action_view/helpers/tags/select.rb
actionview-7.0.4.1 lib/action_view/helpers/tags/select.rb
actionview-6.1.7.1 lib/action_view/helpers/tags/select.rb
actionview-7.0.4 lib/action_view/helpers/tags/select.rb