Class: NfgUi::Components::Elements::DropdownToggle

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::Theme

Traits::Theme::COLOR_TRAITS, Traits::Theme::TRAITS

Constants included from Traits::Size

Traits::Size::TRAITS

Constants included from Traits::DropdownToggle

Traits::DropdownToggle::TRAITS

Constants included from Traits

Traits::REGISTERED_TRAITS, Traits::TRAIT_MODULES

Instance Attribute Summary

Attributes included from Bootstrap::Utilities::Wrappable

#as

Attributes inherited from Bootstrap::Components::Base

#body, #options, #view_context

Instance Method Summary collapse

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 Traits::Size

#lg_trait, #md_trait, #sm_trait, #xl_trait

Methods included from Traits::DropdownToggle

#split_trait

Methods included from Utilities::Renderable

#render_if, #render_unless

Methods included from Utilities::Describable

#data, #describe

Methods included from Utilities::Traitable

#traits, #utility_initialize

Methods included from Utilities::LeftIconable

#left_icon

Methods inherited from Bootstrap::Components::DropdownToggle

#component_family, #data, #href, #nav_link, #offset, #split, #theme

Methods included from Bootstrap::Utilities::Sizable

#size

Methods included from Bootstrap::Utilities::Wrappable

#utility_initialize

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

#iconObject



20
21
22
# File 'lib/nfg_ui/components/elements/dropdown_toggle.rb', line 20

def icon
  options.fetch(:icon, 'caret-down')
end

#renderObject



24
25
26
27
28
29
30
31
32
33
# File 'lib/nfg_ui/components/elements/dropdown_toggle.rb', line 24

def render
  NfgUi::Components::Elements::Button.new({ as: as, theme: theme, **html_options, remove_component_css_classes: nav_link, icon: icon }, view_context).render do
    capture do
      if left_icon
        concat(NfgUi::Components::Foundations::Icon.new({ traits: [left_icon], class: NfgUi::Components::Foundations::Icon::LEFT_ICON_SPACER_CSS_CLASS }, view_context).render)
      end
      concat(block_given? ? yield : body)
    end
  end
end