Class: Yattho::Beta::Text

Inherits:
Component
  • Object
show all
Defined in:
app/components/yattho/beta/text.rb

Overview

‘Text` is a wrapper component that will apply typography styles to the text inside.

Constant Summary collapse

DEFAULT_TAG =
:span

Constants inherited from Component

Component::INVALID_ARIA_LABEL_TAGS

Constants included from Status::Dsl

Status::Dsl::STATUSES

Constants included from ViewHelper

ViewHelper::HELPERS

Constants included from TestSelectorHelper

TestSelectorHelper::TEST_SELECTOR_TAG

Constants included from FetchOrFallbackHelper

FetchOrFallbackHelper::InvalidValueError

Instance Method Summary collapse

Methods inherited from Component

deprecated?, generate_id

Methods included from JoinStyleArgumentsHelper

#join_style_arguments

Methods included from TestSelectorHelper

#add_test_selector

Methods included from FetchOrFallbackHelper

#fetch_or_fallback, #fetch_or_fallback_boolean, #silence_deprecations?

Methods included from ClassNameHelper

#class_names

Constructor Details

#initialize(tag: DEFAULT_TAG, **system_arguments) ⇒ Text

Returns a new instance of Text.

Examples:

Default

<%= render(Yattho::Beta::Text.new(tag: :p, font_weight: :bold)) { "Bold Text" } %>
<%= render(Yattho::Beta::Text.new(tag: :p, color: :danger)) { "Danger Text" } %>

Parameters:

  • tag (Symbol) (defaults to: DEFAULT_TAG)
  • system_arguments (Hash)

    <%= link_to_system_arguments_docs %>



17
18
19
20
# File 'app/components/yattho/beta/text.rb', line 17

def initialize(tag: DEFAULT_TAG, **system_arguments)
  @system_arguments = system_arguments
  @system_arguments[:tag] = tag
end

Instance Method Details

#callObject



22
23
24
# File 'app/components/yattho/beta/text.rb', line 22

def call
  render(Yattho::BaseComponent.new(**@system_arguments)) { content }
end