2018-08-18 07:19:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-05-07 12:26:41 -04:00
|
|
|
module LabelsHelper
|
2018-03-05 07:33:03 -05:00
|
|
|
extend self
|
2015-04-16 12:41:59 -04:00
|
|
|
|
2019-07-23 05:30:25 -04:00
|
|
|
def show_label_issuables_link?(label, issuables_type, current_user: nil)
|
2019-05-28 06:05:20 -04:00
|
|
|
return true unless label.project_label?
|
2017-03-30 06:39:02 -04:00
|
|
|
|
2019-07-23 05:30:25 -04:00
|
|
|
label.project.feature_available?(issuables_type, current_user)
|
2017-03-30 06:39:02 -04:00
|
|
|
end
|
|
|
|
|
2015-05-21 23:40:25 -04:00
|
|
|
# Link to a Label
|
|
|
|
#
|
2019-04-23 15:58:20 -04:00
|
|
|
# label - LabelPresenter object to link to
|
2015-12-18 08:20:15 -05:00
|
|
|
# type - The type of item the link will point to (:issue or
|
|
|
|
# :merge_request). If omitted, defaults to :issue.
|
2015-05-21 23:40:25 -04:00
|
|
|
# block - An optional block that will be passed to `link_to`, forming the
|
|
|
|
# body of the link element. If omitted, defaults to
|
|
|
|
# `render_colored_label`.
|
|
|
|
#
|
|
|
|
# Examples:
|
|
|
|
#
|
2016-10-17 15:48:46 -04:00
|
|
|
# # Allow the generated link to use the label's own subject
|
2015-05-21 23:40:25 -04:00
|
|
|
# link_to_label(label)
|
|
|
|
#
|
2016-09-20 12:54:29 -04:00
|
|
|
# # Force the generated link to use a provided group
|
|
|
|
# link_to_label(label, subject: Group.last)
|
2015-05-21 23:40:25 -04:00
|
|
|
#
|
|
|
|
# # Force the generated link to use a provided project
|
2016-09-20 12:54:29 -04:00
|
|
|
# link_to_label(label, subject: Project.last)
|
2015-05-21 23:40:25 -04:00
|
|
|
#
|
2015-12-18 08:20:15 -05:00
|
|
|
# # Force the generated link to point to merge requests instead of issues
|
|
|
|
# link_to_label(label, type: :merge_request)
|
|
|
|
#
|
2015-05-21 23:40:25 -04:00
|
|
|
# # Customize link body with a block
|
|
|
|
# link_to_label(label) { "My Custom Label Text" }
|
|
|
|
#
|
|
|
|
# Returns a String
|
2020-09-30 23:09:55 -04:00
|
|
|
def link_to_label(label, type: :issue, tooltip: true, small: false, css_class: nil, &block)
|
2019-04-23 15:58:20 -04:00
|
|
|
link = label.filter_path(type: type)
|
2015-05-21 23:40:25 -04:00
|
|
|
|
|
|
|
if block_given?
|
2020-09-30 23:09:55 -04:00
|
|
|
link_to link, class: css_class, &block
|
2015-05-21 23:40:25 -04:00
|
|
|
else
|
2020-02-25 10:08:50 -05:00
|
|
|
render_label(label, link: link, tooltip: tooltip, small: small)
|
2015-05-21 23:40:25 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-02-25 10:08:50 -05:00
|
|
|
def render_label(label, link: nil, tooltip: true, dataset: nil, small: false)
|
|
|
|
html = render_colored_label(label)
|
2019-04-02 06:48:20 -04:00
|
|
|
|
2020-02-25 10:08:50 -05:00
|
|
|
if link
|
|
|
|
title = label_tooltip_title(label) if tooltip
|
|
|
|
html = render_label_link(html, link: link, title: title, dataset: dataset)
|
|
|
|
end
|
|
|
|
|
|
|
|
wrap_label_html(html, small: small, label: label)
|
2019-04-02 06:48:20 -04:00
|
|
|
end
|
|
|
|
|
2020-02-25 10:08:50 -05:00
|
|
|
def render_colored_label(label, suffix: '')
|
|
|
|
render_label_text(
|
|
|
|
label.name,
|
|
|
|
suffix: suffix,
|
2020-10-05 14:08:51 -04:00
|
|
|
css_class: "gl-label-text #{text_color_class_for_bg(label.color)}",
|
2020-02-25 10:08:50 -05:00
|
|
|
bg_color: label.color
|
|
|
|
)
|
|
|
|
end
|
2014-07-29 15:19:47 -04:00
|
|
|
|
2020-02-25 10:08:50 -05:00
|
|
|
# We need the `label` argument here for EE
|
|
|
|
def wrap_label_html(label_html, small:, label:)
|
|
|
|
wrapper_classes = %w(gl-label)
|
|
|
|
wrapper_classes << 'gl-label-sm' if small
|
2015-04-02 20:46:43 -04:00
|
|
|
|
2020-02-25 10:08:50 -05:00
|
|
|
%(<span class="#{wrapper_classes.join(' ')}">#{label_html}</span>).html_safe
|
2013-05-07 12:26:41 -04:00
|
|
|
end
|
2014-07-30 06:27:29 -04:00
|
|
|
|
2019-04-02 06:48:20 -04:00
|
|
|
def label_tooltip_title(label)
|
2019-07-15 07:29:56 -04:00
|
|
|
Sanitize.clean(label.description)
|
2019-04-02 06:48:20 -04:00
|
|
|
end
|
|
|
|
|
2014-07-30 06:27:29 -04:00
|
|
|
def suggested_colors
|
2019-05-15 17:23:56 -04:00
|
|
|
{
|
2021-02-16 13:09:24 -05:00
|
|
|
'#009966' => s_('SuggestedColors|Green-cyan'),
|
|
|
|
'#8fbc8f' => s_('SuggestedColors|Dark sea green'),
|
|
|
|
'#3cb371' => s_('SuggestedColors|Medium sea green'),
|
|
|
|
'#00b140' => s_('SuggestedColors|Green screen'),
|
|
|
|
'#013220' => s_('SuggestedColors|Dark green'),
|
|
|
|
'#6699cc' => s_('SuggestedColors|Blue-gray'),
|
|
|
|
'#0000ff' => s_('SuggestedColors|Blue'),
|
|
|
|
'#e6e6fa' => s_('SuggestedColors|Lavendar'),
|
|
|
|
'#9400d3' => s_('SuggestedColors|Dark violet'),
|
|
|
|
'#330066' => s_('SuggestedColors|Deep violet'),
|
|
|
|
'#808080' => s_('SuggestedColors|Gray'),
|
|
|
|
'#36454f' => s_('SuggestedColors|Charcoal grey'),
|
|
|
|
'#f7e7ce' => s_('SuggestedColors|Champagne'),
|
|
|
|
'#c21e56' => s_('SuggestedColors|Rose red'),
|
|
|
|
'#cc338b' => s_('SuggestedColors|Magenta-pink'),
|
|
|
|
'#dc143c' => s_('SuggestedColors|Crimson'),
|
|
|
|
'#ff0000' => s_('SuggestedColors|Red'),
|
|
|
|
'#cd5b45' => s_('SuggestedColors|Dark coral'),
|
|
|
|
'#eee600' => s_('SuggestedColors|Titanium yellow'),
|
|
|
|
'#ed9121' => s_('SuggestedColors|Carrot orange'),
|
|
|
|
'#c39953' => s_('SuggestedColors|Aztec Gold')
|
2019-05-15 17:23:56 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def render_suggested_colors
|
|
|
|
colors_html = suggested_colors.map do |color_hex_value, color_name|
|
|
|
|
link_to('', '#', class: "has-tooltip", style: "background-color: #{color_hex_value}", data: { color: color_hex_value }, title: color_name)
|
|
|
|
end
|
|
|
|
|
|
|
|
content_tag(:div, class: 'suggest-colors') do
|
|
|
|
colors_html.join.html_safe
|
|
|
|
end
|
2014-07-30 06:27:29 -04:00
|
|
|
end
|
2014-07-30 10:17:29 -04:00
|
|
|
|
2020-02-25 10:08:50 -05:00
|
|
|
def text_color_class_for_bg(bg_color)
|
2020-02-27 07:09:12 -05:00
|
|
|
if light_color?(bg_color)
|
2020-02-25 10:08:50 -05:00
|
|
|
'gl-label-text-dark'
|
|
|
|
else
|
|
|
|
'gl-label-text-light'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-07-30 10:17:29 -04:00
|
|
|
def text_color_for_bg(bg_color)
|
2020-02-27 07:09:12 -05:00
|
|
|
if light_color?(bg_color)
|
|
|
|
'#333333'
|
2016-01-24 18:06:46 -05:00
|
|
|
else
|
2020-02-27 07:09:12 -05:00
|
|
|
'#FFFFFF'
|
2016-01-24 18:06:46 -05:00
|
|
|
end
|
2020-02-27 07:09:12 -05:00
|
|
|
end
|
2014-07-30 10:17:29 -04:00
|
|
|
|
2020-02-27 07:09:12 -05:00
|
|
|
def light_color?(color)
|
|
|
|
if color.length == 4
|
|
|
|
r, g, b = color[1, 4].scan(/./).map { |v| (v * 2).hex }
|
2014-07-30 10:17:29 -04:00
|
|
|
else
|
2020-02-27 07:09:12 -05:00
|
|
|
r, g, b = color[1, 7].scan(/.{2}/).map(&:hex)
|
2014-07-30 10:17:29 -04:00
|
|
|
end
|
2020-02-27 07:09:12 -05:00
|
|
|
|
|
|
|
(r + g + b) > 500
|
2014-07-30 10:17:29 -04:00
|
|
|
end
|
2015-03-26 22:13:49 -04:00
|
|
|
|
2018-10-03 06:36:35 -04:00
|
|
|
def labels_filter_path_with_defaults(only_group_labels: false, include_ancestor_groups: true, include_descendant_groups: false)
|
2018-04-04 11:40:29 -04:00
|
|
|
options = {}
|
|
|
|
options[:include_ancestor_groups] = include_ancestor_groups if include_ancestor_groups
|
|
|
|
options[:include_descendant_groups] = include_descendant_groups if include_descendant_groups
|
2018-10-03 06:36:35 -04:00
|
|
|
options[:only_group_labels] = only_group_labels if only_group_labels && @group
|
|
|
|
options[:format] = :json
|
|
|
|
|
|
|
|
labels_filter_path(options)
|
|
|
|
end
|
|
|
|
|
|
|
|
def labels_filter_path(options = {})
|
|
|
|
project = @target_project || @project
|
2018-10-31 10:47:53 -04:00
|
|
|
format = options.delete(:format)
|
2018-04-04 11:40:29 -04:00
|
|
|
|
2016-07-18 12:43:00 -04:00
|
|
|
if project
|
2018-10-03 06:36:35 -04:00
|
|
|
project_labels_path(project, format, options)
|
2017-08-28 17:56:49 -04:00
|
|
|
elsif @group
|
2018-10-03 06:36:35 -04:00
|
|
|
group_labels_path(@group, format, options)
|
2016-03-16 15:14:31 -04:00
|
|
|
else
|
2018-10-03 06:36:35 -04:00
|
|
|
dashboard_labels_path(format, options)
|
2016-03-16 15:14:31 -04:00
|
|
|
end
|
2015-03-26 22:13:49 -04:00
|
|
|
end
|
2015-04-02 20:46:43 -04:00
|
|
|
|
2016-11-15 18:11:13 -05:00
|
|
|
def label_subscription_status(label, project)
|
2021-04-13 11:11:24 -04:00
|
|
|
return 'group-level' if label.subscribed?(current_user)
|
|
|
|
return 'project-level' if label.subscribed?(current_user, project)
|
2016-11-15 16:59:12 -05:00
|
|
|
|
|
|
|
'unsubscribed'
|
|
|
|
end
|
|
|
|
|
2017-06-22 22:11:14 -04:00
|
|
|
def toggle_subscription_label_path(label, project)
|
2017-06-26 16:52:14 -04:00
|
|
|
return toggle_subscription_group_label_path(label.group, label) unless project
|
|
|
|
|
|
|
|
case label_subscription_status(label, project)
|
|
|
|
when 'group-level' then toggle_subscription_group_label_path(label.group, label)
|
2017-06-29 13:06:35 -04:00
|
|
|
when 'project-level' then toggle_subscription_project_label_path(project, label)
|
|
|
|
when 'unsubscribed' then toggle_subscription_project_label_path(project, label)
|
2016-11-15 16:59:12 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-22 22:11:14 -04:00
|
|
|
def label_subscription_toggle_button_text(label, project = nil)
|
2021-04-13 11:11:24 -04:00
|
|
|
label.subscribed?(current_user, project) ? 'Unsubscribe' : 'Subscribe'
|
2016-03-01 11:33:13 -05:00
|
|
|
end
|
|
|
|
|
2018-03-08 07:39:32 -05:00
|
|
|
def create_label_title(subject)
|
|
|
|
case subject
|
|
|
|
when Group
|
|
|
|
_('Create group label')
|
|
|
|
when Project
|
|
|
|
_('Create project label')
|
|
|
|
else
|
|
|
|
_('Create new label')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def manage_labels_title(subject)
|
|
|
|
case subject
|
|
|
|
when Group
|
|
|
|
_('Manage group labels')
|
|
|
|
when Project
|
|
|
|
_('Manage project labels')
|
|
|
|
else
|
|
|
|
_('Manage labels')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def view_labels_title(subject)
|
|
|
|
case subject
|
|
|
|
when Group
|
|
|
|
_('View group labels')
|
|
|
|
when Project
|
|
|
|
_('View project labels')
|
|
|
|
else
|
|
|
|
_('View labels')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-29 05:35:26 -04:00
|
|
|
def label_status_tooltip(label, status)
|
2019-05-28 06:05:20 -04:00
|
|
|
type = label.project_label? ? 'project' : 'group'
|
2018-05-29 05:35:26 -04:00
|
|
|
level = status.unsubscribed? ? type : status.sub('-level', '')
|
|
|
|
action = status.unsubscribed? ? 'Subscribe' : 'Unsubscribe'
|
2018-05-29 05:25:45 -04:00
|
|
|
|
2018-05-29 05:35:26 -04:00
|
|
|
"#{action} at #{level} level"
|
2018-05-29 05:25:45 -04:00
|
|
|
end
|
|
|
|
|
2019-04-23 15:58:20 -04:00
|
|
|
def presented_labels_sorted_by_title(labels, subject)
|
|
|
|
labels.sort_by(&:title).map { |label| label.present(issuable_subject: subject) }
|
2019-02-21 11:06:14 -05:00
|
|
|
end
|
|
|
|
|
2019-04-02 06:48:20 -04:00
|
|
|
def label_dropdown_data(project, opts = {})
|
|
|
|
{
|
|
|
|
toggle: "dropdown",
|
|
|
|
field_name: opts[:field_name] || "label_name[]",
|
|
|
|
show_no: "true",
|
|
|
|
show_any: "true",
|
|
|
|
project_id: project&.try(:id),
|
|
|
|
namespace_path: project&.try(:namespace)&.try(:full_path),
|
|
|
|
project_path: project&.try(:path)
|
|
|
|
}.merge(opts)
|
|
|
|
end
|
|
|
|
|
2019-04-22 01:54:23 -04:00
|
|
|
def issuable_types
|
|
|
|
['issues', 'merge requests']
|
|
|
|
end
|
2020-02-25 10:08:50 -05:00
|
|
|
|
2020-10-15 14:08:43 -04:00
|
|
|
def show_labels_full_path?(project, group)
|
|
|
|
project || group&.subgroup?
|
|
|
|
end
|
|
|
|
|
2020-02-25 10:08:50 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def render_label_link(label_html, link:, title:, dataset:)
|
|
|
|
classes = %w(gl-link gl-label-link)
|
|
|
|
dataset ||= {}
|
|
|
|
|
|
|
|
if title.present?
|
|
|
|
classes << 'has-tooltip'
|
|
|
|
dataset.merge!(html: true, title: title)
|
|
|
|
end
|
|
|
|
|
|
|
|
link_to(label_html, link, class: classes.join(' '), data: dataset)
|
|
|
|
end
|
|
|
|
|
|
|
|
def render_label_text(name, suffix: '', css_class: nil, bg_color: nil)
|
|
|
|
<<~HTML.chomp.html_safe
|
|
|
|
<span
|
2020-10-05 14:08:51 -04:00
|
|
|
class="#{css_class}"
|
2020-02-25 10:08:50 -05:00
|
|
|
data-container="body"
|
|
|
|
data-html="true"
|
|
|
|
#{"style=\"background-color: #{bg_color}\"" if bg_color}
|
|
|
|
>#{ERB::Util.html_escape_once(name)}#{suffix}</span>
|
|
|
|
HTML
|
|
|
|
end
|
2013-05-07 12:26:41 -04:00
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
LabelsHelper.prepend_mod_with('LabelsHelper')
|