Class: Essence::CardComponent
- Inherits:
-
ApplicationComponent
- Object
- ViewComponent::Base
- ApplicationComponent
- Essence::CardComponent
- Defined in:
- app/components/essence/card_component.rb
Constant Summary
Constants included from FetchOrFallbackHelper
FetchOrFallbackHelper::InvalidValueError
Instance Attribute Summary collapse
-
#headline ⇒ Object
readonly
Returns the value of attribute headline.
-
#html_options ⇒ Object
readonly
Returns the value of attribute html_options.
Instance Method Summary collapse
-
#initialize(headline: nil, **html_options) ⇒ CardComponent
constructor
A new instance of CardComponent.
Methods inherited from ApplicationComponent
#assets_path, assets_path, images_directory
Methods included from Utils
Methods included from FetchOrFallbackHelper
#fetch_or_fallback, #fetch_or_fallback_boolean, #integer_or_fallback
Constructor Details
#initialize(headline: nil, **html_options) ⇒ CardComponent
Returns a new instance of CardComponent.
7 8 9 10 11 |
# File 'app/components/essence/card_component.rb', line 7 def initialize(headline: nil, **) @headline = headline @html_options = end |
Instance Attribute Details
#headline ⇒ Object (readonly)
Returns the value of attribute headline.
5 6 7 |
# File 'app/components/essence/card_component.rb', line 5 def headline @headline end |
#html_options ⇒ Object (readonly)
Returns the value of attribute html_options.
5 6 7 |
# File 'app/components/essence/card_component.rb', line 5 def @html_options end |