Class: FoxTail::TooltipTriggerComponent::StimulusController

Inherits:
StimulusController show all
Defined in:
app/components/fox_tail/tooltip_trigger_component.rb

Constant Summary collapse

TRIGGER_TYPES =
{
  hover: {
    show: %i[mouseenter focus],
    hide: %i[mouseleave blur]
  },
  click: {
    toggle: :click,
    hide: %i[focusout blur]
  }
}.freeze

Instance Attribute Summary

Attributes inherited from StimulusController

#identifier

Instance Method Summary collapse

Methods inherited from StimulusController

#action, #action_param_key, #build_actions, #classes_key, #config, #event, #initialize, #merge, #merge!, #outlet_key, #target_key, #to_s, #to_sym, #value_key

Constructor Details

This class inherits a constructor from FoxTail::StimulusController

Instance Method Details

#attributes(options = nil) ⇒ Object



24
25
26
27
28
29
30
# File 'app/components/fox_tail/tooltip_trigger_component.rb', line 24

def attributes(options = nil)
  trigger_type = options[:trigger_type]&.to_sym
  attributes = super
  attributes[:data][outlet_key(tooltip_identifier)] = options[:selector]
  attributes[:data][:action] = build_actions TRIGGER_TYPES[trigger_type]
  attributes
end

#tooltip_identifierObject



20
21
22
# File 'app/components/fox_tail/tooltip_trigger_component.rb', line 20

def tooltip_identifier
  FoxTail::TooltipComponent.stimulus_controller_identifier
end