Class: Railsboot::Toast::HeaderComponent
- Inherits:
-
Component
- Object
- Component
- Railsboot::Toast::HeaderComponent
- Defined in:
- app/components/railsboot/toast/header_component.rb
Overview
ViewComponent: renders the header block of a Bootstrap toast, including
the close button that dismisses it.
Instance Method Summary collapse
-
#call ⇒ String
Renders the header element wrapping the content and a toast-dismiss close button.
-
#initialize(**html_attributes) ⇒ HeaderComponent
constructor
A new instance of HeaderComponent.
Constructor Details
#initialize(**html_attributes) ⇒ HeaderComponent
Returns a new instance of HeaderComponent.
9 10 11 12 13 14 15 16 17 |
# File 'app/components/railsboot/toast/header_component.rb', line 9 def initialize(**html_attributes) @html_attributes = html_attributes @html_attributes[:tag] = "div" @html_attributes[:class] = class_names( "toast-header", html_attributes.delete(:class) ) end |
Instance Method Details
#call ⇒ String
Renders the header element wrapping the content and a toast-dismiss close button.
22 23 24 25 26 |
# File 'app/components/railsboot/toast/header_component.rb', line 22 def call render(Railsboot::BaseComponent.new(**@html_attributes)) do content.to_s + render(Railsboot::CloseButtonComponent.new(data: { bs_dismiss: "toast" })) end end |