Class: FoxTail::ButtonGroupComponent

Inherits:
BaseComponent show all
Includes:
Concerns::Formable
Defined in:
app/components/fox_tail/button_group_component.rb

Instance Attribute Summary

Attributes inherited from BaseComponent

#html_attributes

Instance Method Summary collapse

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::BaseComponent

Instance Method Details

#before_renderObject



42
43
44
45
46
# File 'app/components/fox_tail/button_group_component.rb', line 42

def before_render
  super

  html_attributes[:class] = classnames theme.apply(:root, self), html_class
end

#callObject



48
49
50
51
52
# File 'app/components/fox_tail/button_group_component.rb', line 48

def call
   :div, html_attributes do
    buttons.each { |btn| concat btn }
  end
end

#render?Boolean

Returns:

  • (Boolean)


38
39
40
# File 'app/components/fox_tail/button_group_component.rb', line 38

def render?
  buttons?
end