Class: Primer::Navigation::TabComponent
- Defined in:
- app/components/primer/navigation/tab_component.rb
Overview
This component is part of navigation components such as ‘Primer::TabNavComponent` and `Primer::UnderlineNavComponent` and should not be used by itself.
Constant Summary
Constants included from Status::Dsl
Constants included from ViewHelper
Constants included from TestSelectorHelper
TestSelectorHelper::TEST_SELECTOR_TAG
Constants included from FetchOrFallbackHelper
FetchOrFallbackHelper::InvalidValueError
Instance Attribute Summary collapse
-
#selected ⇒ Object
readonly
Returns the value of attribute selected.
Instance Method Summary collapse
-
#initialize(list: false, selected: false, with_panel: false, icon_classes: "", wrapper_arguments: {}, **system_arguments) ⇒ TabComponent
constructor
A new instance of TabComponent.
- #wrapper ⇒ Object
Methods included from JoinStyleArgumentsHelper
Methods included from TestSelectorHelper
Methods included from FetchOrFallbackHelper
#fetch_or_fallback, #fetch_or_fallback_boolean, #silence_deprecations?
Methods included from ClassNameHelper
Constructor Details
#initialize(list: false, selected: false, with_panel: false, icon_classes: "", wrapper_arguments: {}, **system_arguments) ⇒ TabComponent
Returns a new instance of TabComponent.
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'app/components/primer/navigation/tab_component.rb', line 86 def initialize(list: false, selected: false, with_panel: false, icon_classes: "", wrapper_arguments: {}, **system_arguments) @selected = selected @icon_classes = icon_classes @list = list @system_arguments = system_arguments if with_panel @system_arguments[:tag] ||= :button @system_arguments[:type] = :button @system_arguments[:role] = :tab else @system_arguments[:tag] ||= :a end @wrapper_arguments = wrapper_arguments @wrapper_arguments[:tag] = :li @wrapper_arguments[:display] ||= :flex return unless @selected if @system_arguments[:tag] == :a @system_arguments[:"aria-current"] = :page else @system_arguments[:"aria-selected"] = true end end |
Instance Attribute Details
#selected ⇒ Object (readonly)
Returns the value of attribute selected.
43 44 45 |
# File 'app/components/primer/navigation/tab_component.rb', line 43 def selected @selected end |
Instance Method Details
#wrapper ⇒ Object
114 115 116 117 118 119 120 121 122 123 |
# File 'app/components/primer/navigation/tab_component.rb', line 114 def wrapper unless @list yield return # returning `yield` caused a double render end render(Primer::BaseComponent.new(**@wrapper_arguments)) do yield end end |