Class: GovukComponent::Tag

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

Constant Summary collapse

COLOURS =
%w(grey green turquoise blue red purple pink orange yellow).freeze

Instance Attribute Summary collapse

Attributes included from GovukComponent::Traits::CustomHtmlAttributes

#html_attributes

Instance Method Summary collapse

Methods inherited from Base

wrap_slot

Methods included from GovukComponent::Traits::CustomClasses

#classes

Constructor Details

#initialize(text:, colour: nil, classes: [], html_attributes: {}) ⇒ Tag

Returns a new instance of Tag.



6
7
8
9
10
11
# File 'app/components/govuk_component/tag.rb', line 6

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

  @text   = text
  @colour = colour
end

Instance Attribute Details

#textObject (readonly)

Returns the value of attribute text.



2
3
4
# File 'app/components/govuk_component/tag.rb', line 2

def text
  @text
end

Instance Method Details

#callObject



13
14
15
# File 'app/components/govuk_component/tag.rb', line 13

def call
  tag.strong(@text, class: classes.append(colour_class), **html_attributes)
end