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)
|
|
|
|
label_color = label.color || "#428bca"
|
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
|
|
|
|
[
|
|
|
|
'#d9534f',
|
|
|
|
'#f0ad4e',
|
|
|
|
'#428bca',
|
|
|
|
'#5cb85c',
|
|
|
|
'#34495e',
|
|
|
|
'#7f8c8d',
|
|
|
|
'#8e44ad',
|
|
|
|
'#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
|