Sha256: a68647c1ff1614b30177c6866167d826d28ca5d74cbe129bfd279e03f788adee
Contents?: true
Size: 1.7 KB
Versions: 1
Compression:
Stored size: 1.7 KB
Contents
module GOVUKDesignSystemFormBuilder module Elements module Radios class FieldsetRadioButton < Base def initialize(builder, object_name, attribute_name, value, label:, hint_text:, link_errors:, &block) super(builder, object_name, attribute_name) @value = value @label = label @hint_text = hint_text @link_errors = has_errors? && link_errors if block_given? @conditional_content = wrap_conditional(block) @conditional_id = conditional_id end end def html @builder.content_tag('div', class: 'govuk-radios__item') do @builder.safe_join( [ input, label_element.html, hint_element.html, @conditional_content ] ) end end private def label_element @label_element ||= Elements::Label.new(@builder, @object_name, @attribute_name, radio: true, value: @value, **@label, link_errors: @link_errors) end def hint_element @hint_element ||= Elements::Hint.new(@builder, @object_name, @attribute_name, @hint_text, radio: true) end def input @builder.radio_button( @attribute_name, @value, id: field_id(link_errors: @link_errors), aria: { describedby: hint_id }, data: { 'aria-controls' => @conditional_id }, class: %w(govuk-radios__input) ) end def conditional_classes %w(govuk-radios__conditional govuk-radios__conditional--hidden) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
govuk_design_system_formbuilder-0.9.6 | lib/govuk_design_system_formbuilder/elements/radios/fieldset_radio_button.rb |