2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
module LabelsHelper
|
2018-03-27 19:54:05 +05:30
|
|
|
extend self
|
2015-09-11 14:41:01 +05:30
|
|
|
include ActionView::Helpers::TagHelper
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def show_label_issuables_link?(label, issuables_type, current_user: nil, project: nil)
|
2019-07-31 22:56:46 +05:30
|
|
|
return true unless label.project_label?
|
2018-03-17 18:26:18 +05:30
|
|
|
return true unless project
|
|
|
|
|
|
|
|
project.feature_available?(issuables_type, current_user)
|
|
|
|
end
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
# Link to a Label
|
|
|
|
#
|
2019-07-31 22:56:46 +05:30
|
|
|
# label - LabelPresenter object to link to
|
2016-04-02 18:10:28 +05:30
|
|
|
# type - The type of item the link will point to (:issue or
|
|
|
|
# :merge_request). If omitted, defaults to :issue.
|
2015-09-11 14:41:01 +05:30
|
|
|
# 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-11-03 12:29:30 +05:30
|
|
|
# # Allow the generated link to use the label's own subject
|
2015-09-11 14:41:01 +05:30
|
|
|
# link_to_label(label)
|
|
|
|
#
|
2016-11-03 12:29:30 +05:30
|
|
|
# # Force the generated link to use a provided group
|
|
|
|
# link_to_label(label, subject: Group.last)
|
2015-09-11 14:41:01 +05:30
|
|
|
#
|
|
|
|
# # Force the generated link to use a provided project
|
2016-11-03 12:29:30 +05:30
|
|
|
# link_to_label(label, subject: Project.last)
|
2015-09-11 14:41:01 +05:30
|
|
|
#
|
2016-04-02 18:10:28 +05:30
|
|
|
# # Force the generated link to point to merge requests instead of issues
|
|
|
|
# link_to_label(label, type: :merge_request)
|
|
|
|
#
|
2015-09-11 14:41:01 +05:30
|
|
|
# # Customize link body with a block
|
|
|
|
# link_to_label(label) { "My Custom Label Text" }
|
|
|
|
#
|
|
|
|
# Returns a String
|
2019-07-31 22:56:46 +05:30
|
|
|
def link_to_label(label, type: :issue, tooltip: true, css_class: nil, &block)
|
|
|
|
link = label.filter_path(type: type)
|
2015-09-11 14:41:01 +05:30
|
|
|
|
|
|
|
if block_given?
|
2016-06-16 23:09:34 +05:30
|
|
|
link_to link, class: css_class, &block
|
2015-09-11 14:41:01 +05:30
|
|
|
else
|
2019-07-07 11:18:12 +05:30
|
|
|
render_label(label, tooltip: tooltip, link: link, css: css_class)
|
2015-09-11 14:41:01 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
def render_label(label, tooltip: true, link: nil, css: nil)
|
|
|
|
# if scoped label is used then EE wraps label tag with scoped label
|
|
|
|
# doc link
|
|
|
|
html = render_colored_label(label, tooltip: tooltip)
|
|
|
|
html = link_to(html, link, class: css) if link
|
|
|
|
|
|
|
|
html
|
|
|
|
end
|
|
|
|
|
|
|
|
def render_colored_label(label, label_suffix: '', tooltip: true, title: nil)
|
2017-08-17 22:00:37 +05:30
|
|
|
text_color = text_color_for_bg(label.color)
|
2019-07-07 11:18:12 +05:30
|
|
|
title ||= tooltip ? label_tooltip_title(label) : label.name
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
# Intentionally not using content_tag here so that this method can be called
|
|
|
|
# by LabelReferenceFilter
|
2018-11-08 19:23:39 +05:30
|
|
|
span = %(<span class="badge color-label #{"has-tooltip" if tooltip}" ) +
|
2019-07-07 11:18:12 +05:30
|
|
|
%(data-html="true" style="background-color: #{label.color}; color: #{text_color}" ) +
|
|
|
|
%(title="#{escape_once(title)}" data-container="body">) +
|
2016-06-02 11:05:42 +05:30
|
|
|
%(#{escape_once(label.name)}#{label_suffix}</span>)
|
2015-09-11 14:41:01 +05:30
|
|
|
|
|
|
|
span.html_safe
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
def label_tooltip_title(label)
|
2019-09-04 21:01:54 +05:30
|
|
|
Sanitize.clean(label.description)
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
def suggested_colors
|
2019-09-04 21:01:54 +05:30
|
|
|
{
|
|
|
|
'#0033CC' => s_('SuggestedColors|UA blue'),
|
|
|
|
'#428BCA' => s_('SuggestedColors|Moderate blue'),
|
|
|
|
'#44AD8E' => s_('SuggestedColors|Lime green'),
|
|
|
|
'#A8D695' => s_('SuggestedColors|Feijoa'),
|
|
|
|
'#5CB85C' => s_('SuggestedColors|Slightly desaturated green'),
|
|
|
|
'#69D100' => s_('SuggestedColors|Bright green'),
|
|
|
|
'#004E00' => s_('SuggestedColors|Very dark lime green'),
|
|
|
|
'#34495E' => s_('SuggestedColors|Very dark desaturated blue'),
|
|
|
|
'#7F8C8D' => s_('SuggestedColors|Dark grayish cyan'),
|
|
|
|
'#A295D6' => s_('SuggestedColors|Slightly desaturated blue'),
|
|
|
|
'#5843AD' => s_('SuggestedColors|Dark moderate blue'),
|
|
|
|
'#8E44AD' => s_('SuggestedColors|Dark moderate violet'),
|
|
|
|
'#FFECDB' => s_('SuggestedColors|Very pale orange'),
|
|
|
|
'#AD4363' => s_('SuggestedColors|Dark moderate pink'),
|
|
|
|
'#D10069' => s_('SuggestedColors|Strong pink'),
|
|
|
|
'#CC0033' => s_('SuggestedColors|Strong red'),
|
|
|
|
'#FF0000' => s_('SuggestedColors|Pure red'),
|
|
|
|
'#D9534F' => s_('SuggestedColors|Soft red'),
|
|
|
|
'#D1D100' => s_('SuggestedColors|Strong yellow'),
|
|
|
|
'#F0AD4E' => s_('SuggestedColors|Soft orange'),
|
|
|
|
'#AD8D43' => s_('SuggestedColors|Dark moderate orange')
|
|
|
|
}
|
|
|
|
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-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def text_color_for_bg(bg_color)
|
2016-04-02 18:10:28 +05:30
|
|
|
if bg_color.length == 4
|
|
|
|
r, g, b = bg_color[1, 4].scan(/./).map { |v| (v * 2).hex }
|
|
|
|
else
|
|
|
|
r, g, b = bg_color[1, 7].scan(/.{2}/).map(&:hex)
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
if (r + g + b) > 500
|
2015-09-11 14:41:01 +05:30
|
|
|
'#333333'
|
2014-09-02 18:07:02 +05:30
|
|
|
else
|
2015-09-11 14:41:01 +05:30
|
|
|
'#FFFFFF'
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
def labels_filter_path_with_defaults(only_group_labels: false, include_ancestor_groups: true, include_descendant_groups: false)
|
2018-05-09 12:01:36 +05:30
|
|
|
options = {}
|
|
|
|
options[:include_ancestor_groups] = include_ancestor_groups if include_ancestor_groups
|
|
|
|
options[:include_descendant_groups] = include_descendant_groups if include_descendant_groups
|
2018-12-05 23:21:45 +05:30
|
|
|
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-12-13 13:39:08 +05:30
|
|
|
format = options.delete(:format)
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
if project
|
2018-12-05 23:21:45 +05:30
|
|
|
project_labels_path(project, format, options)
|
2018-03-17 18:26:18 +05:30
|
|
|
elsif @group
|
2018-12-05 23:21:45 +05:30
|
|
|
group_labels_path(@group, format, options)
|
2016-06-02 11:05:42 +05:30
|
|
|
else
|
2018-12-05 23:21:45 +05:30
|
|
|
dashboard_labels_path(format, options)
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
end
|
2015-10-24 18:46:33 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def label_subscription_status(label, project)
|
|
|
|
return 'group-level' if label.subscribed?(current_user)
|
2017-09-10 17:25:29 +05:30
|
|
|
return 'project-level' if label.subscribed?(current_user, project)
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
'unsubscribed'
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
2015-10-24 18:46:33 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def toggle_subscription_label_path(label, project)
|
|
|
|
return toggle_subscription_group_label_path(label.group, label) unless project
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
case label_subscription_status(label, project)
|
|
|
|
when 'group-level' then toggle_subscription_group_label_path(label.group, label)
|
2017-09-10 17:25:29 +05:30
|
|
|
when 'project-level' then toggle_subscription_project_label_path(project, label)
|
|
|
|
when 'unsubscribed' then toggle_subscription_project_label_path(project, label)
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def label_subscription_toggle_button_text(label, project = nil)
|
2017-08-17 22:00:37 +05:30
|
|
|
label.subscribed?(current_user, project) ? 'Unsubscribe' : 'Subscribe'
|
|
|
|
end
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
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-11-08 19:23:39 +05:30
|
|
|
def label_status_tooltip(label, status)
|
2019-07-31 22:56:46 +05:30
|
|
|
type = label.project_label? ? 'project' : 'group'
|
2018-11-08 19:23:39 +05:30
|
|
|
level = status.unsubscribed? ? type : status.sub('-level', '')
|
|
|
|
action = status.unsubscribed? ? 'Subscribe' : 'Unsubscribe'
|
|
|
|
|
|
|
|
"#{action} at #{level} level"
|
|
|
|
end
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
def presented_labels_sorted_by_title(labels, subject)
|
|
|
|
labels.sort_by(&:title).map { |label| label.present(issuable_subject: subject) }
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
def sidebar_label_dropdown_data(issuable_type, issuable_sidebar)
|
|
|
|
label_dropdown_data(nil, {
|
|
|
|
default_label: "Labels",
|
|
|
|
field_name: "#{issuable_type}[label_names][]",
|
|
|
|
ability_name: issuable_type,
|
|
|
|
namespace_path: issuable_sidebar[:namespace_path],
|
|
|
|
project_path: issuable_sidebar[:project_path],
|
|
|
|
issue_update: issuable_sidebar[:issuable_json_path],
|
|
|
|
labels: issuable_sidebar[:project_labels_path],
|
|
|
|
display: 'static'
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
def label_from_hash(hash)
|
|
|
|
klass = hash[:group_id] ? GroupLabel : ProjectLabel
|
|
|
|
|
|
|
|
klass.new(hash.slice(:color, :description, :title, :group_id, :project_id))
|
|
|
|
end
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
def issuable_types
|
|
|
|
['issues', 'merge requests']
|
|
|
|
end
|
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
# Required for Banzai::Filter::LabelReferenceFilter
|
2019-07-07 11:18:12 +05:30
|
|
|
module_function :render_colored_label, :text_color_for_bg, :escape_once, :label_tooltip_title
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|