Class: GOVUKDesignSystemFormBuilder::Elements::File

Inherits:
Base
  • Object
show all
Includes:
Traits::Error, Traits::HTMLAttributes, Traits::HTMLClasses, Traits::Hint, Traits::Label, Traits::Supplemental
Defined in:
lib/govuk_design_system_formbuilder/elements/file.rb

Instance Method Summary collapse

Methods included from Traits::HTMLClasses

#build_classes

Methods included from Traits::HTMLAttributes

#attributes

Methods included from Traits::Supplemental

#supplemental_id

Methods included from Traits::Hint

#hint_id

Methods included from Traits::Error

#error_id

Methods inherited from Base

#field_id, #to_s

Constructor Details

#initialize(builder, object_name, attribute_name, hint:, label:, caption:, form_group:, **kwargs, &block) ⇒ File

Returns a new instance of File.



13
14
15
16
17
18
19
20
21
# File 'lib/govuk_design_system_formbuilder/elements/file.rb', line 13

def initialize(builder, object_name, attribute_name, hint:, label:, caption:, form_group:, **kwargs, &block)
  super(builder, object_name, attribute_name, &block)

  @label           = label
  @caption         = caption
  @hint            = hint
  @html_attributes = kwargs
  @form_group      = form_group
end

Instance Method Details

#htmlObject



23
24
25
26
27
# File 'lib/govuk_design_system_formbuilder/elements/file.rb', line 23

def html
  Containers::FormGroup.new(*bound, **@form_group).html do
    safe_join([label_element, supplemental_content, hint_element, error_element, file])
  end
end