2013-11-20 06:41:41 -05:00
|
|
|
module IconsHelper
|
2015-05-21 17:49:06 -04:00
|
|
|
include FontAwesome::Rails::IconHelper
|
|
|
|
|
2015-01-28 02:41:36 -05:00
|
|
|
# Creates an icon tag given icon name(s) and possible icon modifiers.
|
|
|
|
#
|
|
|
|
# Right now this method simply delegates directly to `fa_icon` from the
|
|
|
|
# font-awesome-rails gem, but should we ever use a different icon pack in the
|
|
|
|
# future we won't have to change hundreds of method calls.
|
|
|
|
def icon(names, options = {})
|
2016-01-14 21:05:33 -05:00
|
|
|
options.include?(:base) ? fa_stacked_icon(names, options) : fa_icon(names, options)
|
2015-01-28 02:41:36 -05:00
|
|
|
end
|
|
|
|
|
2016-03-01 04:11:46 -05:00
|
|
|
def audit_icon(names, options = {})
|
|
|
|
case names
|
|
|
|
when "standard"
|
|
|
|
names = "key"
|
|
|
|
end
|
|
|
|
|
|
|
|
options.include?(:base) ? fa_stacked_icon(names, options) : fa_icon(names, options)
|
|
|
|
end
|
|
|
|
|
2015-01-28 03:30:27 -05:00
|
|
|
def spinner(text = nil, visible = false)
|
|
|
|
css_class = 'loading'
|
|
|
|
css_class << ' hide' unless visible
|
|
|
|
|
|
|
|
content_tag :div, class: css_class do
|
|
|
|
icon('spinner spin') + text
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-11-20 06:41:41 -05:00
|
|
|
def boolean_to_icon(value)
|
2015-08-20 17:03:09 -04:00
|
|
|
if value
|
2015-01-28 02:41:36 -05:00
|
|
|
icon('circle', class: 'cgreen')
|
2013-11-20 06:41:41 -05:00
|
|
|
else
|
2015-01-28 02:41:36 -05:00
|
|
|
icon('power-off', class: 'clgray')
|
2013-11-20 06:41:41 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-02 08:08:59 -05:00
|
|
|
def visibility_level_icon(level, fw: true)
|
|
|
|
name =
|
|
|
|
case level
|
|
|
|
when Gitlab::VisibilityLevel::PRIVATE
|
|
|
|
'lock'
|
|
|
|
when Gitlab::VisibilityLevel::INTERNAL
|
|
|
|
'shield'
|
|
|
|
else # Gitlab::VisibilityLevel::PUBLIC
|
|
|
|
'globe'
|
|
|
|
end
|
2016-03-01 04:11:46 -05:00
|
|
|
|
2015-12-02 08:08:59 -05:00
|
|
|
name << " fw" if fw
|
|
|
|
|
|
|
|
icon(name)
|
2013-11-20 06:41:41 -05:00
|
|
|
end
|
2014-10-04 06:29:18 -04:00
|
|
|
|
|
|
|
def file_type_icon_class(type, mode, name)
|
|
|
|
if type == 'folder'
|
|
|
|
icon_class = 'folder'
|
2015-04-01 23:32:16 -04:00
|
|
|
elsif mode == '120000'
|
2014-10-04 06:29:18 -04:00
|
|
|
icon_class = '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'
|
|
|
|
icon_class = 'file-pdf-o'
|
|
|
|
when '.jpg', '.jpeg', '.jif', '.jfif',
|
|
|
|
'.jp2', '.jpx', '.j2k', '.j2c',
|
|
|
|
'.png', '.gif', '.tif', '.tiff',
|
|
|
|
'.svg', '.ico', '.bmp'
|
|
|
|
icon_class = 'file-image-o'
|
|
|
|
when '.zip', '.zipx', '.tar', '.gz', '.bz', '.bzip',
|
|
|
|
'.xz', '.rar', '.7z'
|
|
|
|
icon_class = 'file-archive-o'
|
|
|
|
when '.mp3', '.wma', '.ogg', '.oga', '.wav', '.flac', '.aac'
|
|
|
|
icon_class = 'file-audio-o'
|
|
|
|
when '.mp4', '.m4p', '.m4v',
|
|
|
|
'.mpg', '.mp2', '.mpeg', '.mpe', '.mpv',
|
|
|
|
'.mpg', '.mpeg', '.m2v',
|
|
|
|
'.avi', '.mkv', '.flv', '.ogv', '.mov',
|
|
|
|
'.3gp', '.3g2'
|
|
|
|
icon_class = 'file-video-o'
|
|
|
|
when '.doc', '.dot', '.docx', '.docm', '.dotx', '.dotm', '.docb'
|
|
|
|
icon_class = 'file-word-o'
|
|
|
|
when '.xls', '.xlt', '.xlm', '.xlsx', '.xlsm', '.xltx', '.xltm',
|
|
|
|
'.xlsb', '.xla', '.xlam', '.xll', '.xlw'
|
|
|
|
icon_class = 'file-excel-o'
|
|
|
|
when '.ppt', '.pot', '.pps', '.pptx', '.pptm', '.potx', '.potm',
|
|
|
|
'.ppam', '.ppsx', '.ppsm', '.sldx', '.sldm'
|
|
|
|
icon_class = 'file-powerpoint-o'
|
|
|
|
else
|
|
|
|
icon_class = 'file-text-o'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
icon_class
|
|
|
|
end
|
2013-11-20 06:41:41 -05:00
|
|
|
end
|