Class: GovukComponent::HeaderComponent::ProductName

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

Instance Attribute Summary collapse

Attributes inherited from Base

#html_attributes

Instance Method Summary collapse

Constructor Details

#initialize(name: nil, html_attributes: {}, classes: []) ⇒ ProductName

Returns a new instance of ProductName.



120
121
122
123
124
# File 'app/components/govuk_component/header_component.rb', line 120

def initialize(name: nil, html_attributes: {}, classes: [])
  @name = name

  super(classes: classes, html_attributes: html_attributes)
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



118
119
120
# File 'app/components/govuk_component/header_component.rb', line 118

def name
  @name
end

Instance Method Details

#callObject



130
131
132
133
134
135
136
# File 'app/components/govuk_component/header_component.rb', line 130

def call
  if content.present?
    tag.div(content, **html_attributes)
  else
    tag.span(name, **html_attributes)
  end
end

#render?Boolean

Returns:

  • (Boolean)


126
127
128
# File 'app/components/govuk_component/header_component.rb', line 126

def render?
  name.present? || content.present?
end