Sha256: 84d94c18444d0f0d8c1f68d06fb2175bdc8bb9fc5fb4f8279de41fd799e2345a
Contents?: true
Size: 1.22 KB
Versions: 1
Compression:
Stored size: 1.22 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.to_s }, 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
actionview-6.1.0.rc1 | lib/action_view/helpers/tags/select.rb |