Class: FoxTail::CollapsibleTriggerComponent

Inherits:
TriggerBaseComponent show all
Defined in:
app/components/fox_tail/collapsible_trigger_component.rb

Defined Under Namespace

Classes: StimulusController

Instance Attribute Summary

Attributes inherited from TriggerBaseComponent

#block, #selector

Attributes inherited from BaseComponent

#html_attributes

Instance Method Summary collapse

Methods inherited from TriggerBaseComponent

#block?, #call, #initialize, #render?

Methods inherited from BaseComponent

classname_merger, #initialize, stimulus_merger, use_stimulus?, #with_html_attributes, #with_html_class

Methods inherited from Base

fox_tail_config

Constructor Details

This class inherits a constructor from FoxTail::TriggerBaseComponent

Instance Method Details

#before_renderObject



10
11
12
13
14
15
16
17
# File 'app/components/fox_tail/collapsible_trigger_component.rb', line 10

def before_render
  super

  html_attributes[:class] = classnames theme.classname("root.base"),
    open? && theme.classname("root.expanded"),
    !open? && theme.classname("root.collapsed"),
    html_class
end

#stimulus_controller_optionsObject



19
20
21
22
23
# File 'app/components/fox_tail/collapsible_trigger_component.rb', line 19

def stimulus_controller_options
  super.merge open: open?,
    collapsed_classes: theme.classname("root.collapsed"),
    expanded_classes: theme.classname("root.expanded")
end

#trigger_typeObject



6
7
8
# File 'app/components/fox_tail/collapsible_trigger_component.rb', line 6

def trigger_type
  options[:trigger_type] ||= :click
end