Class: Ariadne::UI::Badge::Component
- Inherits:
-
BaseComponent
- Object
- ViewComponentContrib::Base
- BaseComponent
- Ariadne::UI::Badge::Component
- Includes:
- Behaviors::Tooltipable
- Defined in:
- app/components/ariadne/ui/badge/component.rb
Overview
Use the Badge component to highlight important information.
Constant Summary collapse
- DEFAULT_SIZE =
:md
- DEFAULT_COLOR =
:none
Constants inherited from BaseComponent
BaseComponent::ACCEPT_ANYTHING
Constants included from ViewHelper
Constants included from AttributesHelper
AttributesHelper::PLURAL_ARIA_ATTRIBUTES, AttributesHelper::PLURAL_DATA_ATTRIBUTES
Instance Method Summary collapse
-
#before_render ⇒ Object
must be done here rather than within an ‘accepts_html_attributes` block because the padding class is dependent on the `with_leading_item` slot’s existence, which isn’t known until now.
Methods included from Behaviors::Tooltipable
Methods inherited from BaseComponent
audited_at, #class_for, #component, component_id, #component_id, component_name, generate_id, #html_attributes, i18n_scope, #merge_data_attributes, #merge_tailwind_classes, #options, stimulus_name, translate, #validate_aria_label!
Methods included from AttributesHelper
#aria, #data, #merge_aria, #merge_data, #merge_prefixed_attribute_hashes, #prepend_action, #prepend_controller, #prepend_data_attribute
Methods included from ViewComponent::StyleVariants
Instance Method Details
#before_render ⇒ Object
must be done here rather than within an ‘accepts_html_attributes` block because the padding class is dependent on the `with_leading_item` slot’s existence, which isn’t known until now
41 42 43 |
# File 'app/components/ariadne/ui/badge/component.rb', line 41 def before_render html_attrs[:class] = merge_tailwind_classes([style(size:, color:, with_leading_item: leading_visual ? :yes : :no), html_attrs[:class]].join(" ")) end |