Class: Primer::Alpha::Dropdown::Menu
- Defined in:
- app/components/primer/alpha/dropdown/menu.rb
Overview
This component is part of ‘Dropdown` and should not be used as a standalone component.
Defined Under Namespace
Classes: Item
Constant Summary collapse
- AS_DEFAULT =
:default
- AS_OPTIONS =
[AS_DEFAULT, :list].freeze
- SCHEME_DEFAULT =
:default
- SCHEME_MAPPINGS =
{ SCHEME_DEFAULT => "", :dark => "dropdown-menu-dark" }.freeze
- DIRECTION_DEFAULT =
:se
- DIRECTION_OPTIONS =
[DIRECTION_DEFAULT, :sw, :w, :e, :ne, :s].freeze
Constants inherited from Component
Component::INVALID_ARIA_LABEL_TAGS
Constants included from Status::Dsl
Constants included from ViewHelper
Constants included from TestSelectorHelper
TestSelectorHelper::TEST_SELECTOR_TAG
Constants included from FetchOrFallbackHelper
FetchOrFallbackHelper::InvalidValueError
Constants included from Primer::AttributesHelper
Primer::AttributesHelper::PLURAL_ARIA_ATTRIBUTES, Primer::AttributesHelper::PLURAL_DATA_ATTRIBUTES
Instance Method Summary collapse
-
#initialize(as: AS_DEFAULT, direction: DIRECTION_DEFAULT, scheme: SCHEME_DEFAULT, header: nil, **system_arguments) ⇒ Menu
constructor
A new instance of Menu.
Methods inherited from Component
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
Methods included from Primer::AttributesHelper
#aria, #data, #extract_data, #merge_aria, #merge_data, #merge_prefixed_attribute_hashes
Methods included from ExperimentalSlotHelpers
Methods included from ExperimentalRenderHelpers
Constructor Details
#initialize(as: AS_DEFAULT, direction: DIRECTION_DEFAULT, scheme: SCHEME_DEFAULT, header: nil, **system_arguments) ⇒ Menu
Returns a new instance of Menu.
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'app/components/primer/alpha/dropdown/menu.rb', line 34 def initialize(as: AS_DEFAULT, direction: DIRECTION_DEFAULT, scheme: SCHEME_DEFAULT, header: nil, **system_arguments) @header = header @direction = direction @as = fetch_or_fallback(AS_OPTIONS, as, AS_DEFAULT) @system_arguments = deny_tag_argument(**system_arguments) @system_arguments[:tag] = "details-menu" @system_arguments[:role] = "menu" @system_arguments[:classes] = class_names( @system_arguments[:classes], "dropdown-menu", "dropdown-menu-#{fetch_or_fallback(DIRECTION_OPTIONS, direction, DIRECTION_DEFAULT)}", SCHEME_MAPPINGS[fetch_or_fallback(SCHEME_MAPPINGS.keys, scheme, SCHEME_DEFAULT)] ) end |