Class: Primer::OcticonSymbolsComponent
- Defined in:
- app/components/primer/octicon_symbols_component.rb
Overview
OcticonSymbols renders a symbol dictionary using a list of <%= link_to_octicons %>.
Constant Summary
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
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(icons: []) ⇒ OcticonSymbolsComponent
constructor
A new instance of OcticonSymbolsComponent.
- #render? ⇒ Boolean
- #symbol_tags ⇒ 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(icons: []) ⇒ OcticonSymbolsComponent
Returns a new instance of OcticonSymbolsComponent.
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'app/components/primer/octicon_symbols_component.rb', line 15 def initialize(icons: []) @icons = {} icons.each do |icon| symbol = icon[:symbol] size = Primer::OcticonComponent::SIZE_MAPPINGS[ fetch_or_fallback(Primer::OcticonComponent::SIZE_OPTIONS, icon[:size] || Primer::OcticonComponent::SIZE_DEFAULT, Primer::OcticonComponent::SIZE_DEFAULT) ] cache_key = Primer::Octicon::Cache.get_key(symbol: symbol, size: size) if (cache_icon = Primer::Octicon::Cache.read(cache_key)) icon_instance = cache_icon else icon_instance = Octicons::Octicon.new(symbol, height: size) Primer::Octicon::Cache.set(cache_key, icon_instance) end # Don't put the same icon twice @icons[[symbol, icon_instance.height]] = icon_instance if @icons[[symbol, icon_instance.height]].nil? end end |
Class Method Details
Instance Method Details
#render? ⇒ Boolean
38 39 40 |
# File 'app/components/primer/octicon_symbols_component.rb', line 38 def render? @icons.any? end |
#symbol_tags ⇒ Object
46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'app/components/primer/octicon_symbols_component.rb', line 46 def safe_join( @icons.values.map do |icon| content_tag( :symbol, icon.path.html_safe, # rubocop:disable Rails/OutputSafety id: "octicon_#{icon.symbol}_#{icon.height}", viewBox: icon.[:viewBox], width: icon.width, height: icon.height ) end ) end |