Class: NfgUi::Bootstrap::Components::CardHeader

Inherits:
Base
  • Object
show all
Defined in:
lib/nfg_ui/bootstrap/components/card_header.rb

Overview

Direct Known Subclasses

Components::Elements::CardHeader

Instance Attribute Summary

Attributes inherited from Base

#body, #options, #view_context

Instance Method Summary collapse

Methods inherited from Base

#data, #href, #html_options, #id, #initialize, #style

Constructor Details

This class inherits a constructor from NfgUi::Bootstrap::Components::Base

Instance Method Details

#component_familyObject



9
10
11
# File 'lib/nfg_ui/bootstrap/components/card_header.rb', line 9

def component_family
  :card
end

#headingObject



13
14
15
# File 'lib/nfg_ui/bootstrap/components/card_header.rb', line 13

def heading
  options.fetch(:heading, nil)
end

#renderObject



17
18
19
20
21
22
23
24
25
# File 'lib/nfg_ui/bootstrap/components/card_header.rb', line 17

def render
  super do
    if heading.present?
      heading
    else
      (block_given? ? yield : body)
    end
  end
end