x-govuk/govuk-components

View on GitHub
app/components/govuk_component/table_component/head_component.rb

Summary

Maintainability
A
0 mins
Test Coverage
class GovukComponent::TableComponent::HeadComponent < GovukComponent::Base
  renders_many :rows, ->(cell_data: nil, classes: [], html_attributes: {}, &block) do
    GovukComponent::TableComponent::RowComponent.from_head(
      cell_data:,
      classes:,
      html_attributes:,
      &block
    )
  end

  attr_reader :row_data

  def initialize(rows: nil, classes: [], html_attributes: {})
    super(classes:, html_attributes:)

    build_rows_from_row_data(rows)
  end

  def call
    tag.thead(**html_attributes) { safe_join(rows) }
  end

private

  def build_rows_from_row_data(data)
    return if data.blank?

    data.each { |d| with_row(cell_data: d) }
  end

  def default_attributes
    { class: "#{brand}-table__head" }
  end
end