Sha256: a55cd5a01537869ef1e58c33cc30de600079fa2054f4c74566ad3c1fc9c2980b

Contents?: true

Size: 1.32 KB

Versions: 10

Compression:

Stored size: 1.32 KB

Contents

require_relative '../checkbox'

module CCS
  module Components
    module GovUK
      class Field < Base
        class Inputs < Field
          class Item < Base
            class Checkbox < Item
              # = GOV.UK Field Inputs Checkbox tag
              #
              # This is used to generate an individual checkbox item using +check_box_tag+

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

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

                  @options[:attributes][:id] ||= "#{sanitize_to_id(@attribute)}_#{sanitize_to_id(@value)}"

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

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

                def render
                  super do
                    context.check_box_tag("#{@attribute}[]", @value, @options[:checked], **@options[:attributes])
                  end
                end
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ccs-frontend_helpers-2.1.0 lib/ccs/components/govuk/field/inputs/item/checkbox/tag.rb
ccs-frontend_helpers-2.0.0 lib/ccs/components/govuk/field/inputs/item/checkbox/tag.rb
ccs-frontend_helpers-1.2.0 lib/ccs/components/govuk/field/inputs/item/checkbox/tag.rb
ccs-frontend_helpers-1.1.2 lib/ccs/components/govuk/field/inputs/item/checkbox/tag.rb
ccs-frontend_helpers-1.1.1 lib/ccs/components/govuk/field/inputs/item/checkbox/tag.rb
ccs-frontend_helpers-1.1.0 lib/ccs/components/govuk/field/inputs/item/checkbox/tag.rb
ccs-frontend_helpers-1.1.0.beta0 lib/ccs/components/govuk/field/inputs/item/checkbox/tag.rb
ccs-frontend_helpers-1.0.0 lib/ccs/components/govuk/field/inputs/item/checkbox/tag.rb
ccs-frontend_helpers-0.5.0.beta1 lib/ccs/components/govuk/field/inputs/item/checkbox/tag.rb
ccs-frontend_helpers-0.5.0.beta0 lib/ccs/components/govuk/field/inputs/item/checkbox/tag.rb