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
Constant Summary
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 dont here rather than within an ‘accepts_html_attributes` block because the padding class is dependent on the slot’s existence, which isn’t known until now.
Methods included from Behaviors::Tooltipable
Methods inherited from BaseComponent
#class_for, #component, component_id, #component_id, component_name, #html_attributes, i18n_scope, #in_turbo_frame, #in_turbo_stream, #options, stimulus_name, #styles, translate, #validate_aria_label!
Methods included from ViewHelper
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 dont here rather than within an ‘accepts_html_attributes` block because the padding class is dependent on the slot’s existence, which isn’t known until now
32 33 34 |
# File 'app/components/ariadne/ui/badge/component.rb', line 32 def before_render html_attrs[:class] = Ariadne::ViewComponents.tailwind_merger.merge([style(size:, with_leading_item: leading_visual ? :yes : :no), html_attrs[:class]].join(" ")) end |