Class: Impulse::Popover::HeaderComponent

Inherits:
ApplicationComponent show all
Defined in:
app/components/impulse/popover/header_component.rb

Instance Method Summary collapse

Methods inherited from ApplicationComponent

generate_id

Methods included from Helpers::AttributesHelper

#merge_attributes

Constructor Details

#initialize(title: nil, **system_args) ⇒ HeaderComponent

Returns a new instance of HeaderComponent.



4
5
6
7
8
9
10
11
12
# File 'app/components/impulse/popover/header_component.rb', line 4

def initialize(title: nil, **system_args)
  @title = title
  @system_args = system_args
  @system_args[:tag] = :div
  @system_args[:class] = class_names(
    system_args[:class],
    "popover-header"
  )
end

Instance Method Details

#render?Boolean

Returns:

  • (Boolean)


14
15
16
# File 'app/components/impulse/popover/header_component.rb', line 14

def render?
  content.present? || @title.present?
end