Sha256: ffb0bf68ac56501fa752c1c58bed5075598b0921695a8afb64881bd9b0b672b8

Contents?: true

Size: 1.32 KB

Versions: 1

Compression:

Stored size: 1.32 KB

Contents

require_relative '../radio'

module CCS::Components
  module GovUK
    class Field < Base
      class Inputs < Field
        class Item < Base
          class Radio < Item
            # = GOV.UK Field Inputs Radio form tag
            #
            # This is used to generate an individual radio item using +form.check_box+

            class Form < Radio
              # @param (see CCS::Components::GovUK::Field::Items::Item::Radio#initialize)
              #
              # @option (see CCS::Components::GovUK::Field::Items::Item::Radio#initialize)

              def initialize(attribute:, label:, **options)
                super(attribute: attribute, label: label, **options)

                (label[:attributes] ||= {})[:value] = @value
                label[:attributes][:for] = @options[:attributes][:id] if @options[:attributes][:id]

                @label = Label.new(attribute: attribute, form: @options[:form], context: @context, **label)
              end

              # Generates the HTML for the radio input
              #
              # @return [ActiveSupport::SafeBuffer]

              def render
                super() do
                  @options[:form].radio_button(@attribute, @value, **@options[:attributes])
                end
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ccs-frontend_helpers-0.1.0.rc.2 lib/ccs/components/govuk/field/inputs/item/radio/form.rb