Module: IconsHelper

Constant Summary collapse

DEFAULT_ICON_SIZE =
16

Instance Method Summary collapse

Instance Method Details

#audit_icon(name, css_class: nil) ⇒ Object



89
90
91
92
93
94
95
96
97
98
99
100
# File 'app/helpers/icons_helper.rb', line 89

def audit_icon(name, css_class: nil)
  case name
  when "standard"
    name = "key"
  when "two-factor"
    name = "key"
  when "google_oauth2"
    name = "google"
  end

  sprite_icon(name, css_class: css_class)
end

#boolean_to_icon(value) ⇒ Object



102
103
104
105
106
107
108
# File 'app/helpers/icons_helper.rb', line 102

def boolean_to_icon(value)
  if value
    sprite_icon('check', css_class: 'gl-text-green-500')
  else
    sprite_icon('power', css_class: 'gl-text-gray-500')
  end
end

#custom_icon(icon_name, size: DEFAULT_ICON_SIZE) ⇒ Object



10
11
12
13
14
# File 'app/helpers/icons_helper.rb', line 10

def custom_icon(icon_name, size: DEFAULT_ICON_SIZE)
  memoized_icon("#{icon_name}_#{size}") do
    render partial: "shared/icons/#{icon_name}", formats: :svg, locals: { size: size }
  end
end

#external_snippet_icon(name) ⇒ Object



85
86
87
# File 'app/helpers/icons_helper.rb', line 85

def external_snippet_icon(name)
  (:span, "", class: "gl-snippet-icon gl-snippet-icon-#{name}")
end

#file_type_icon_class(type, mode, name) ⇒ Object



126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'app/helpers/icons_helper.rb', line 126

def file_type_icon_class(type, mode, name)
  if type == 'folder'
    'folder-o'
  elsif type == 'archive'
    'archive'
  elsif mode == '120000'
    'share'
  else
    # Guess which icon to choose based on file extension.
    # If you think a file extension is missing, feel free to add it on PR

    case File.extname(name).downcase
    when '.pdf'
      'document'
    when '.jpg', '.jpeg', '.jif', '.jfif',
         '.jp2', '.jpx', '.j2k', '.j2c',
         '.apng', '.png', '.gif', '.tif', '.tiff',
         '.svg', '.ico', '.bmp', '.webp'
      'doc-image'
    when '.zip', '.zipx', '.tar', '.gz', '.gzip', '.tgz', '.bz', '.bzip',
         '.bz2', '.bzip2', '.car', '.tbz', '.xz', 'txz', '.rar', '.7z',
         '.lz', '.lzma', '.tlz'
      'doc-compressed'
    when '.mp3', '.wma', '.ogg', '.oga', '.wav', '.flac', '.aac', '.3ga',
         '.ac3', '.midi', '.m4a', '.ape', '.mpa'
      'volume-up'
    when '.mp4', '.m4p', '.m4v',
         '.mpg', '.mp2', '.mpeg', '.mpe', '.mpv',
         '.mpg', '.mpeg', '.m2v', '.m2ts',
         '.avi', '.mkv', '.flv', '.ogv', '.mov',
         '.3gp', '.3g2'
      'live-preview'
    when '.doc', '.dot', '.docx', '.docm', '.dotx', '.dotm', '.docb',
         '.odt', '.ott', '.uot', '.rtf'
      'doc-text'
    when '.xls', '.xlt', '.xlm', '.xlsx', '.xlsm', '.xltx', '.xltm',
         '.xlsb', '.xla', '.xlam', '.xll', '.xlw', '.ots', '.ods', '.uos'
      'document'
    when '.ppt', '.pot', '.pps', '.pptx', '.pptm', '.potx', '.potm',
         '.ppam', '.ppsx', '.ppsm', '.sldx', '.sldm', '.odp', '.otp', '.uop'
      'doc-chart'
    else
      'doc-text'
    end
  end
end

#gl_loading_icon(inline: false, color: 'dark', size: 'sm', css_class: nil, data: nil) ⇒ Object

Creates a GitLab UI loading icon/spinner.

Examples:

# Default
gl_loading_icon

# Sizes
gl_loading_icon(size: 'md')
gl_loading_icon(size: 'lg')
gl_loading_icon(size: 'xl')

# Colors
gl_loading_icon(color: 'light')

# Block/Inline
gl_loading_icon(inline: true)

# Custom classes
gl_loading_icon(css_class: "foo-bar")

See also gitlab-org.gitlab.io/gitlab-ui/?path=/story/base-loading-icon–default



75
76
77
78
79
80
81
82
83
# File 'app/helpers/icons_helper.rb', line 75

def gl_loading_icon(inline: false, color: 'dark', size: 'sm', css_class: nil, data: nil)
  render Pajamas::SpinnerComponent.new(
    inline: inline,
    color: color,
    size: size,
    class: css_class,
    data: data
  )
end

#sprite_file_icons_pathObject



25
26
27
28
29
30
# File 'app/helpers/icons_helper.rb', line 25

def sprite_file_icons_path
  # SVG Sprites currently don't work across domains, so in the case of a CDN
  # we have to set the current path deliberately to prevent addition of asset_host
  sprite_base_url = Gitlab.config.gitlab.url if ActionController::Base.asset_host
  ActionController::Base.helpers.image_path('file_icons/file_icons.svg', host: sprite_base_url)
end

#sprite_icon(icon_name, size: DEFAULT_ICON_SIZE, css_class: nil, file_icon: false) ⇒ Object



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'app/helpers/icons_helper.rb', line 32

def sprite_icon(icon_name, size: DEFAULT_ICON_SIZE, css_class: nil, file_icon: false)
  memoized_icon("#{icon_name}_#{size}_#{css_class}") do
    unknown_icon = file_icon ? unknown_file_icon_sprite(icon_name) : unknown_icon_sprite(icon_name)
    if unknown_icon
      exception = ArgumentError.new("#{icon_name} is not a known icon in @gitlab-org/gitlab-svg")
      Gitlab::ErrorTracking.track_and_raise_for_dev_exception(exception)
    end

    css_classes = []
    css_classes << "s#{size}" if size
    css_classes << css_class.to_s unless css_class.blank?
    sprite_path = file_icon ? sprite_file_icons_path : sprite_icon_path

    (
      :svg,
      (:use, '', { 'href' => "#{sprite_path}##{icon_name}" }),
      class: css_classes.empty? ? nil : css_classes.join(' '),
      data: { testid: "#{icon_name}-icon" }
    )
  end
end

#sprite_icon_pathObject



16
17
18
19
20
21
22
23
# File 'app/helpers/icons_helper.rb', line 16

def sprite_icon_path
  @sprite_icon_path ||= begin
    # SVG Sprites currently don't work across domains, so in the case of a CDN
    # we have to set the current path deliberately to prevent addition of asset_host
    sprite_base_url = Gitlab.config.gitlab.url if ActionController::Base.asset_host
    ActionController::Base.helpers.image_path('icons.svg', host: sprite_base_url)
  end
end

#visibility_level_icon(level, options: {}) ⇒ Object



110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# File 'app/helpers/icons_helper.rb', line 110

def visibility_level_icon(level, options: {})
  name =
    case level
    when Gitlab::VisibilityLevel::PRIVATE
      'lock'
    when Gitlab::VisibilityLevel::INTERNAL
      'shield'
    else # Gitlab::VisibilityLevel::PUBLIC
      'earth'
    end

  css_class = options.delete(:class)

  sprite_icon(name, size: DEFAULT_ICON_SIZE, css_class: css_class)
end