Class: Primer::AvatarStackComponent
- Defined in:
- app/components/primer/avatar_stack_component.rb
Overview
Use AvatarStack to stack multiple avatars together.
Constant Summary collapse
- ALIGN_DEFAULT =
:left- ALIGN_OPTIONS =
[ALIGN_DEFAULT, :right].freeze
Constants included from Status::Dsl
Constants included from ViewHelper
Constants included from TestSelectorHelper
TestSelectorHelper::TEST_SELECTOR_TAG
Constants included from FetchOrFallbackHelper
FetchOrFallbackHelper::InvalidValueError
Instance Method Summary collapse
- #before_render ⇒ Object
- #body_component ⇒ Object
-
#initialize(align: ALIGN_DEFAULT, tooltipped: false, body_arguments: {}, **system_arguments) ⇒ AvatarStackComponent
constructor
A new instance of AvatarStackComponent.
- #render? ⇒ Boolean
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(align: ALIGN_DEFAULT, tooltipped: false, body_arguments: {}, **system_arguments) ⇒ AvatarStackComponent
Returns a new instance of AvatarStackComponent.
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'app/components/primer/avatar_stack_component.rb', line 41 def initialize(align: ALIGN_DEFAULT, tooltipped: false, body_arguments: {}, **system_arguments) @align = fetch_or_fallback(ALIGN_OPTIONS, align, ALIGN_DEFAULT) @system_arguments = system_arguments @tooltipped = tooltipped @body_arguments = body_arguments @body_arguments[:tag] ||= :div @body_arguments[:classes] = class_names( "AvatarStack-body", @body_arguments[:classes] ) @system_arguments[:tag] ||= :div @system_arguments[:classes] = class_names( "AvatarStack", system_arguments[:classes], "AvatarStack--right" => @align == :right ) end |
Instance Method Details
#before_render ⇒ Object
69 70 71 72 73 74 75 |
# File 'app/components/primer/avatar_stack_component.rb', line 69 def before_render @system_arguments[:classes] = class_names( @system_arguments[:classes], "AvatarStack--two" => avatars.size == 2, "AvatarStack--three-plus" => avatars.size > 2 ) end |
#body_component ⇒ Object
61 62 63 64 65 66 67 |
# File 'app/components/primer/avatar_stack_component.rb', line 61 def body_component if @tooltipped Primer::TooltipComponent.new(**@body_arguments) else Primer::BaseComponent.new(**@body_arguments) end end |
#render? ⇒ Boolean
77 78 79 |
# File 'app/components/primer/avatar_stack_component.rb', line 77 def render? avatars.any? end |