Sha256: 7d24365c30e44e6ab38b59068cba2b53a2ff60107947b42764e4008d6b3f12a7

Contents?: true

Size: 1.71 KB

Versions: 2

Compression:

Stored size: 1.71 KB

Contents

module GOVUKDesignSystemFormBuilder
  module Elements
    class Select < Base
      using PrefixableArray

      include Traits::Error
      include Traits::Label
      include Traits::Hint
      include Traits::Supplemental

      def initialize(builder, object_name, attribute_name, collection, value_method:, text_method:, options: {}, html_options: {}, hint_text:, label:, caption:, &block)
        super(builder, object_name, attribute_name, &block)

        @collection    = collection
        @value_method  = value_method
        @text_method   = text_method
        @options       = options
        @html_options  = html_options
        @label         = label
        @caption       = caption
        @hint_text     = hint_text
      end

      def html
        Containers::FormGroup.new(@builder, @object_name, @attribute_name).html do
          safe_join(
            [
              label_element.html,
              supplemental_content.html,
              hint_element.html,
              error_element.html,
              @builder.collection_select(
                @attribute_name,
                @collection,
                @value_method,
                @text_method,
                @options,
                build_html_options
              )
            ]
          )
        end
      end

    private

      def build_html_options
        @html_options.deep_merge(
          id: field_id(link_errors: true),
          class: select_classes,
          aria: { describedby: described_by(hint_id, error_id, supplemental_id) }
        )
      end

      def select_classes
        %w(select).prefix(brand).tap do |classes|
          classes.push(%(#{brand}-select--error)) if has_errors?
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
govuk_design_system_formbuilder-1.2.0 lib/govuk_design_system_formbuilder/elements/select.rb
govuk_design_system_formbuilder-1.2.0b4 lib/govuk_design_system_formbuilder/elements/select.rb