2013-05-07 12:26:41 -04:00
|
|
|
module LabelsHelper
|
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
|
|
|
|
2014-07-30 08:15:39 -04:00
|
|
|
content_tag :span, class: 'label color-label', style: "background:#{label_color};color:#{text_color}" do
|
2014-07-29 15:19:47 -04:00
|
|
|
label.name
|
2013-05-07 12:26:41 -04:00
|
|
|
end
|
|
|
|
end
|
2014-07-30 06:27:29 -04:00
|
|
|
|
|
|
|
def suggested_colors
|
|
|
|
[
|
2014-08-15 05:02:05 -04:00
|
|
|
'#D9534F',
|
|
|
|
'#F0AD4E',
|
|
|
|
'#428BCA',
|
|
|
|
'#5CB85C',
|
|
|
|
'#34495E',
|
|
|
|
'#7F8C8D',
|
|
|
|
'#8E44AD',
|
2014-07-30 06:27:29 -04:00
|
|
|
'#FFECDB'
|
|
|
|
]
|
|
|
|
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
|
|
|
|
"#333"
|
|
|
|
else
|
|
|
|
"#FFF"
|
|
|
|
end
|
|
|
|
end
|
2013-05-07 12:26:41 -04:00
|
|
|
end
|