2013-05-07 12:26:41 -04:00
|
|
|
module LabelsHelper
|
2015-04-16 12:41:59 -04:00
|
|
|
include ActionView::Helpers::TagHelper
|
|
|
|
|
2014-07-29 15:19:47 -04:00
|
|
|
def project_label_names
|
2014-07-29 12:19:26 -04:00
|
|
|
@project.labels.pluck(:title)
|
2013-05-07 12:26:41 -04:00
|
|
|
end
|
|
|
|
|
2014-07-29 15:19:47 -04:00
|
|
|
def render_colored_label(label)
|
2014-08-15 03:20:12 -04:00
|
|
|
label_color = label.color || Label::DEFAULT_COLOR
|
2014-07-30 10:17:29 -04:00
|
|
|
text_color = text_color_for_bg(label_color)
|
2014-07-29 15:19:47 -04:00
|
|
|
|
2015-04-02 20:46:43 -04:00
|
|
|
# Intentionally not using content_tag here so that this method can be called
|
|
|
|
# by LabelReferenceFilter
|
|
|
|
span = %(<span class="label color-label") +
|
|
|
|
%( style="background-color: #{label_color}; color: #{text_color}">) +
|
2015-04-16 12:41:59 -04:00
|
|
|
escape_once(label.name) + '</span>'
|
2015-04-02 20:46:43 -04:00
|
|
|
|
|
|
|
span.html_safe
|
2013-05-07 12:26:41 -04:00
|
|
|
end
|
2014-07-30 06:27:29 -04:00
|
|
|
|
|
|
|
def suggested_colors
|
|
|
|
[
|
2015-01-13 08:09:19 -05:00
|
|
|
'#0033CC',
|
2014-08-15 05:02:05 -04:00
|
|
|
'#428BCA',
|
2015-01-13 08:09:19 -05:00
|
|
|
'#44AD8E',
|
|
|
|
'#A8D695',
|
2014-08-15 05:02:05 -04:00
|
|
|
'#5CB85C',
|
2015-01-13 08:09:19 -05:00
|
|
|
'#69D100',
|
|
|
|
'#004E00',
|
2014-08-15 05:02:05 -04:00
|
|
|
'#34495E',
|
|
|
|
'#7F8C8D',
|
2015-01-13 08:09:19 -05:00
|
|
|
'#A295D6',
|
|
|
|
'#5843AD',
|
2014-08-15 05:02:05 -04:00
|
|
|
'#8E44AD',
|
2015-01-13 08:09:19 -05:00
|
|
|
'#FFECDB',
|
2015-01-13 09:47:23 -05:00
|
|
|
'#AD4363',
|
|
|
|
'#D10069',
|
|
|
|
'#CC0033',
|
|
|
|
'#FF0000',
|
|
|
|
'#D9534F',
|
|
|
|
'#D1D100',
|
|
|
|
'#F0AD4E',
|
|
|
|
'#AD8D43'
|
2014-07-30 06:27:29 -04:00
|
|
|
]
|
|
|
|
end
|
2014-07-30 10:17:29 -04:00
|
|
|
|
|
|
|
def text_color_for_bg(bg_color)
|
|
|
|
r, g, b = bg_color.slice(1,7).scan(/.{2}/).map(&:hex)
|
|
|
|
|
|
|
|
if (r + g + b) > 500
|
2015-04-02 20:46:43 -04:00
|
|
|
'#333333'
|
2014-07-30 10:17:29 -04:00
|
|
|
else
|
2015-04-02 20:46:43 -04:00
|
|
|
'#FFFFFF'
|
2014-07-30 10:17:29 -04:00
|
|
|
end
|
|
|
|
end
|
2015-03-26 22:13:49 -04:00
|
|
|
|
|
|
|
def project_labels_options(project)
|
2015-03-27 15:00:31 -04:00
|
|
|
options_from_collection_for_select(project.labels, 'name', 'name', params[:label_name])
|
2015-03-26 22:13:49 -04:00
|
|
|
end
|
2015-04-02 20:46:43 -04:00
|
|
|
|
2015-04-16 12:41:59 -04:00
|
|
|
# Required for Gitlab::Markdown::LabelReferenceFilter
|
|
|
|
module_function :render_colored_label, :text_color_for_bg, :escape_once
|
2013-05-07 12:26:41 -04:00
|
|
|
end
|