Sha256: 75e0522531e238a15214b4db631f3e2a051cc9227514bf68760f3161cfdcd785

Contents?: true

Size: 860 Bytes

Versions: 143

Compression:

Stored size: 860 Bytes

Contents

# frozen_string_literal: true

require "action_view/helpers/tags/checkable"

module ActionView
  module Helpers
    module Tags # :nodoc:
      class RadioButton < Base # :nodoc:
        include Checkable

        def initialize(object_name, method_name, template_object, tag_value, options)
          @tag_value = tag_value
          super(object_name, method_name, template_object, options)
        end

        def render
          options = @options.stringify_keys
          options["type"]     = "radio"
          options["value"]    = @tag_value
          options["checked"] = "checked" if input_checked?(options)
          add_default_name_and_id_for_value(@tag_value, options)
          tag("input", options)
        end

        private
          def checked?(value)
            value.to_s == @tag_value.to_s
          end
      end
    end
  end
end

Version data entries

143 entries across 137 versions & 11 rubygems

Version Path
actionview-7.0.8.5 lib/action_view/helpers/tags/radio_button.rb
actionview-8.0.0.beta1 lib/action_view/helpers/tags/radio_button.rb
omg-actionview-8.0.0.alpha9 lib/action_view/helpers/tags/radio_button.rb
omg-actionview-8.0.0.alpha8 lib/action_view/helpers/tags/radio_button.rb
omg-actionview-8.0.0.alpha7 lib/action_view/helpers/tags/radio_button.rb
omg-actionview-8.0.0.alpha4 lib/action_view/helpers/tags/radio_button.rb
omg-actionview-8.0.0.alpha3 lib/action_view/helpers/tags/radio_button.rb
omg-actionview-8.0.0.alpha2 lib/action_view/helpers/tags/radio_button.rb
omg-actionview-8.0.0.alpha1 lib/action_view/helpers/tags/radio_button.rb
actionview-7.1.4 lib/action_view/helpers/tags/radio_button.rb
actionview-7.2.1 lib/action_view/helpers/tags/radio_button.rb
actionview-7.2.0 lib/action_view/helpers/tags/radio_button.rb
actionview-7.2.0.rc1 lib/action_view/helpers/tags/radio_button.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/actionview-7.0.8.4/lib/action_view/helpers/tags/radio_button.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/actionview-7.1.3.4/lib/action_view/helpers/tags/radio_button.rb
actionview-7.2.0.beta3 lib/action_view/helpers/tags/radio_button.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/tags/radio_button.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/tags/radio_button.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/tags/radio_button.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/actionview-7.1.3.4/lib/action_view/helpers/tags/radio_button.rb