Class: Polaris::DescriptionListComponent
- Defined in:
- app/components/polaris/description_list_component.rb
Defined Under Namespace
Classes: DescriptionListItemComponent
Constant Summary collapse
- SPACING_DEFAULT =
:loose
- SPACING_MAPPINGS =
{ SPACING_DEFAULT => "", :tight => "Polaris-DescriptionList--spacingTight" }
- SPACING_OPTIONS =
SPACING_MAPPINGS.keys
Constants included from ViewHelper
ViewHelper::POLARIS_HELPERS, ViewHelper::POLARIS_TEXT_STYLES
Constants included from FetchOrFallbackHelper
FetchOrFallbackHelper::InvalidValueError
Instance Method Summary collapse
-
#initialize(spacing: SPACING_DEFAULT, **system_arguments) ⇒ DescriptionListComponent
constructor
A new instance of DescriptionListComponent.
- #renders? ⇒ Boolean
Methods included from ViewHelper
#polaris_body_styles, #polaris_html_classes, #polaris_html_styles, #polaris_icon_source
Methods included from StylesListHelper
Methods included from OptionHelper
#append_option, #prepend_option
Methods included from FetchOrFallbackHelper
#fetch_or_fallback, #fetch_or_fallback_boolean, #fetch_or_fallback_nested
Methods included from ClassNameHelper
Constructor Details
#initialize(spacing: SPACING_DEFAULT, **system_arguments) ⇒ DescriptionListComponent
Returns a new instance of DescriptionListComponent.
14 15 16 17 18 19 20 21 22 |
# File 'app/components/polaris/description_list_component.rb', line 14 def initialize(spacing: SPACING_DEFAULT, **system_arguments) @system_arguments = system_arguments @system_arguments[:tag] = "dl" @system_arguments[:classes] = class_names( @system_arguments[:classes], "Polaris-DescriptionList", SPACING_MAPPINGS[fetch_or_fallback(SPACING_OPTIONS, spacing, SPACING_DEFAULT)] ) end |
Instance Method Details
#renders? ⇒ Boolean
24 25 26 |
# File 'app/components/polaris/description_list_component.rb', line 24 def renders? items.any? end |