Sha256: e2f6b68e4ff009201af8408bbeecc776ad3c97b998200b54644d00080a53c6ed

Contents?: true

Size: 1.11 KB

Versions: 212

Compression:

Stored size: 1.11 KB

Contents

# frozen_string_literal: true

module ActionView
  module Helpers
    module Tags # :nodoc:
      class GroupedCollectionSelect < Base # :nodoc:
        def initialize(object_name, method_name, template_object, collection, group_method, group_label_method, option_key_method, option_value_method, options, html_options)
          @collection          = collection
          @group_method        = group_method
          @group_label_method  = group_label_method
          @option_key_method   = option_key_method
          @option_value_method = option_value_method
          @html_options        = html_options

          super(object_name, method_name, template_object, options)
        end

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

          select_content_tag(
            option_groups_from_collection_for_select(@collection, @group_method, @group_label_method, @option_key_method, @option_value_method, option_tags_options), @options, @html_options
          )
        end
      end
    end
  end
end

Version data entries

212 entries across 200 versions & 13 rubygems

Version Path
actionview-6.1.4.1 lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-6.0.4.1 lib/action_view/helpers/tags/grouped_collection_select.rb
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/actionview-6.1.4/lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-6.1.4 lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-6.0.4 lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-5.2.6 lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-6.0.3.7 lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-6.1.3.2 lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-5.2.4.6 lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-6.1.3.1 lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-6.0.3.6 lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-5.2.5 lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-6.1.3 lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-6.1.2.1 lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-6.0.3.5 lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-5.2.4.5 lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-6.1.2 lib/action_view/helpers/tags/grouped_collection_select.rb
trusty-cms-4.2.1 vendor/bundle/ruby/2.6.0/gems/actionview-6.0.3.4/lib/action_view/helpers/tags/grouped_collection_select.rb
trusty-cms-4.2 vendor/bundle/ruby/2.6.0/gems/actionview-6.0.3.4/lib/action_view/helpers/tags/grouped_collection_select.rb
actionview-6.1.1 lib/action_view/helpers/tags/grouped_collection_select.rb