Class: NfgUi::Components::Elements::Badge
- Inherits:
-
Bootstrap::Components::Badge
- Object
- Bootstrap::Components::Base
- Bootstrap::Components::Badge
- NfgUi::Components::Elements::Badge
- Includes:
- Bootstrap::Utilities::Tooltipable, Traits::Pill, Traits::Theme, Utilities::Describable, Utilities::Iconable, Utilities::Renderable, Utilities::Traitable
- Defined in:
- lib/nfg_ui/components/elements/badge.rb
Overview
Badge doesn’t have any customizations unique to the design system yet As such, the NFG UI badge is simply a bootstrap badge behind the scenes. Traits will eventually be connected here.
Constant Summary
Constants included from Traits::Pill
Constants included from Traits::Theme
Traits::Theme::COLOR_TRAITS, Traits::Theme::TRAITS
Constants included from Traits
Traits::REGISTERED_TRAITS, Traits::TRAIT_MODULES
Instance Attribute Summary
Attributes included from Bootstrap::Utilities::Disableable
Attributes included from Bootstrap::Utilities::Wrappable
Attributes inherited from Bootstrap::Components::Base
#body, #options, #view_context
Instance Method Summary collapse
Methods included from Traits::Pill
Methods included from Traits::Theme
#danger_trait, #dark_trait, #info_trait, #light_trait, #outlined_trait, #primary_trait, #secondary_trait, #success_trait, #warning_trait, #white_trait
Methods included from Utilities::Renderable
Methods included from Utilities::Describable
Methods included from Utilities::Traitable
Methods included from Utilities::Iconable
Methods included from Bootstrap::Utilities::Tooltipable
#data, #disabled_component_tooltip_wrapper_html_options, #html_options, #tooltip
Methods included from Bootstrap::Utilities::Disableable
Methods inherited from Bootstrap::Components::Badge
Methods included from Bootstrap::Utilities::Wrappable
Methods included from Bootstrap::Utilities::Themeable
Methods inherited from Bootstrap::Components::Base
#component_family, #data, #href, #html_options, #id, #initialize, #style
Constructor Details
This class inherits a constructor from NfgUi::Bootstrap::Components::Base
Instance Method Details
#render ⇒ Object
20 21 22 23 24 25 26 27 28 |
# File 'lib/nfg_ui/components/elements/badge.rb', line 20 def render super do if icon NfgUi::Components::Foundations::Icon.new({ traits: [icon], text: body }, view_context).render else (block_given? ? yield : body) end end end |