Class: GovukComponent::SummaryListComponent

Inherits:
Base
  • Object
show all
Defined in:
app/components/govuk_component/summary_list_component.rb

Defined Under Namespace

Classes: ActionComponent, KeyComponent, RowComponent, ValueComponent

Instance Attribute Summary collapse

Attributes inherited from Base

#html_attributes

Instance Method Summary collapse

Constructor Details

#initialize(rows: nil, actions: true, borders: config.default_summary_list_borders, classes: [], html_attributes: {}) ⇒ SummaryListComponent

Returns a new instance of SummaryListComponent.



14
15
16
17
18
19
20
21
22
23
# File 'app/components/govuk_component/summary_list_component.rb', line 14

def initialize(rows: nil, actions: true, borders: config.default_summary_list_borders, classes: [], html_attributes: {})
  @borders             = borders
  @show_actions_column = actions

  super(classes: classes, html_attributes: html_attributes)

  return unless rows.presence

  build(rows)
end

Instance Attribute Details

#actionsObject (readonly)

Returns the value of attribute actions.



3
4
5
# File 'app/components/govuk_component/summary_list_component.rb', line 3

def actions
  @actions
end

#bordersObject (readonly)

Returns the value of attribute borders.



3
4
5
# File 'app/components/govuk_component/summary_list_component.rb', line 3

def borders
  @borders
end