Class: GovukComponent::TableComponent::HeadComponent
- Inherits:
-
Base
- Object
- ViewComponent::Base
- Base
- GovukComponent::TableComponent::HeadComponent
- Defined in:
- app/components/govuk_component/table_component/head_component.rb
Instance Attribute Summary collapse
-
#row_data ⇒ Object
readonly
Returns the value of attribute row_data.
Attributes inherited from Base
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(rows: nil, classes: [], html_attributes: {}) ⇒ HeadComponent
constructor
A new instance of HeadComponent.
Methods inherited from Base
Constructor Details
#initialize(rows: nil, classes: [], html_attributes: {}) ⇒ HeadComponent
Returns a new instance of HeadComponent.
13 14 15 16 17 |
# File 'app/components/govuk_component/table_component/head_component.rb', line 13 def initialize(rows: nil, classes: [], html_attributes: {}) super(classes:, html_attributes:) build_rows_from_row_data(rows) end |
Instance Attribute Details
#row_data ⇒ Object (readonly)
Returns the value of attribute row_data.
11 12 13 |
# File 'app/components/govuk_component/table_component/head_component.rb', line 11 def row_data @row_data end |
Instance Method Details
#call ⇒ Object
19 20 21 |
# File 'app/components/govuk_component/table_component/head_component.rb', line 19 def call tag.thead(**html_attributes) { safe_join(rows) } end |