Sha256: 5d070788904b49231c97b46cb42aaa15ba6ead3fc2202ed1caa3c442c83dc0c8
Contents?: true
Size: 1.3 KB
Versions: 37
Compression:
Stored size: 1.3 KB
Contents
# frozen_string_literal: true module ActionView module Helpers module Tags # :nodoc: class Select < Base # :nodoc: include SelectRenderer include FormOptionsHelper 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?(:second) && Array === @choices.first.second end end end end end
Version data entries
37 entries across 37 versions & 5 rubygems