Class: Primer::Alpha::OcticonSymbols

Inherits:
Component
  • Object
show all
Defined in:
app/components/primer/alpha/octicon_symbols.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

Status::Dsl::STATUSES

Constants included from ViewHelper

ViewHelper::HELPERS

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

Methods inherited from Component

deprecated?, generate_id

Methods included from JoinStyleArgumentsHelper

#join_style_arguments

Methods included from TestSelectorHelper

#add_test_selector

Methods included from FetchOrFallbackHelper

#fetch_or_fallback, #fetch_or_fallback_boolean, #silence_deprecations?

Methods included from ClassNameHelper

#class_names

Methods included from Primer::AttributesHelper

#aria, #data, #merge_aria, #merge_data, #merge_prefixed_attribute_hashes

Constructor Details

#initialize(icons: []) ⇒ OcticonSymbols

Returns a new instance of OcticonSymbols.

Parameters:

  • icons (Array<Hash>) (defaults to: [])

    List of icons to render, in the format { symbol: :icon_name, size: :small }



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'app/components/primer/alpha/octicon_symbols.rb', line 10

def initialize(icons: [])
  @icons = {}
  icons.each do |icon|
    symbol = icon[:symbol]
    size = Primer::Beta::Octicon::SIZE_MAPPINGS[
      fetch_or_fallback(Primer::Beta::Octicon::SIZE_OPTIONS, icon[:size] || Primer::Beta::Octicon::SIZE_DEFAULT, Primer::Beta::Octicon::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

Instance Method Details

#render?Boolean

Returns:

  • (Boolean)


33
34
35
# File 'app/components/primer/alpha/octicon_symbols.rb', line 33

def render?
  @icons.any?
end

#symbol_tagsObject



37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'app/components/primer/alpha/octicon_symbols.rb', line 37

def symbol_tags
  safe_join(
    @icons.values.map do |icon|
      (
        :symbol,
        icon.path.html_safe, # rubocop:disable Rails/OutputSafety
        id: "octicon_#{icon.symbol}_#{icon.height}",
        viewBox: icon.options[:viewBox],
        width: icon.width,
        height: icon.height
      )
    end
  )
end