Class: Railsboot::ListGroupComponent

Inherits:
Component
  • Object
show all
Defined in:
app/components/railsboot/list_group_component.rb

Constant Summary

Constants inherited from Component

Component::COLORS, Component::DEFAULT_COLOR

Instance Method Summary collapse

Constructor Details

#initialize(flush: false, **html_attributes) ⇒ ListGroupComponent

Returns a new instance of ListGroupComponent.



4
5
6
7
8
9
10
11
12
13
# File 'app/components/railsboot/list_group_component.rb', line 4

def initialize(flush: false, **html_attributes)
  @flush = flush
  @html_attributes = html_attributes

  @html_attributes[:class] = class_names(
    "list-group",
    {"list-group-flush" => @flush},
    html_attributes.delete(:class)
  )
end