4df0e2599b
Since label presenter is used in label index view, label class check doesn't work as expected because the class is now LabelPresenter. Also `label.subject` doesn't work as expected now because Label's model `subject` method is shadowed by Gitlab's presenter's method which uses `subject` for referencing the original object. Instead we use a presenter's method for both checks now. `label_deletion_confirm_text` is not used anywhere so it's removed
244 lines
6.9 KiB
Ruby
244 lines
6.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module LabelsHelper
|
|
extend self
|
|
include ActionView::Helpers::TagHelper
|
|
|
|
def show_label_issuables_link?(label, issuables_type, current_user: nil, project: nil)
|
|
return true unless label.project_label?
|
|
return true unless project
|
|
|
|
project.feature_available?(issuables_type, current_user)
|
|
end
|
|
|
|
# Link to a Label
|
|
#
|
|
# label - LabelPresenter object to link to
|
|
# type - The type of item the link will point to (:issue or
|
|
# :merge_request). If omitted, defaults to :issue.
|
|
# 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:
|
|
#
|
|
# # Allow the generated link to use the label's own subject
|
|
# link_to_label(label)
|
|
#
|
|
# # Force the generated link to use a provided group
|
|
# link_to_label(label, subject: Group.last)
|
|
#
|
|
# # Force the generated link to use a provided project
|
|
# link_to_label(label, subject: Project.last)
|
|
#
|
|
# # Force the generated link to point to merge requests instead of issues
|
|
# link_to_label(label, type: :merge_request)
|
|
#
|
|
# # Customize link body with a block
|
|
# link_to_label(label) { "My Custom Label Text" }
|
|
#
|
|
# Returns a String
|
|
def link_to_label(label, type: :issue, tooltip: true, css_class: nil, &block)
|
|
link = label.filter_path(type: type)
|
|
|
|
if block_given?
|
|
link_to link, class: css_class, &block
|
|
else
|
|
render_label(label, tooltip: tooltip, link: link, css: css_class)
|
|
end
|
|
end
|
|
|
|
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)
|
|
text_color = text_color_for_bg(label.color)
|
|
title ||= tooltip ? label_tooltip_title(label) : label.name
|
|
|
|
# Intentionally not using content_tag here so that this method can be called
|
|
# by LabelReferenceFilter
|
|
span = %(<span class="badge color-label #{"has-tooltip" if tooltip}" ) +
|
|
%(data-html="true" style="background-color: #{label.color}; color: #{text_color}" ) +
|
|
%(title="#{escape_once(title)}" data-container="body">) +
|
|
%(#{escape_once(label.name)}#{label_suffix}</span>)
|
|
|
|
span.html_safe
|
|
end
|
|
|
|
def label_tooltip_title(label)
|
|
label.description
|
|
end
|
|
|
|
def suggested_colors
|
|
[
|
|
'#0033CC',
|
|
'#428BCA',
|
|
'#44AD8E',
|
|
'#A8D695',
|
|
'#5CB85C',
|
|
'#69D100',
|
|
'#004E00',
|
|
'#34495E',
|
|
'#7F8C8D',
|
|
'#A295D6',
|
|
'#5843AD',
|
|
'#8E44AD',
|
|
'#FFECDB',
|
|
'#AD4363',
|
|
'#D10069',
|
|
'#CC0033',
|
|
'#FF0000',
|
|
'#D9534F',
|
|
'#D1D100',
|
|
'#F0AD4E',
|
|
'#AD8D43'
|
|
]
|
|
end
|
|
|
|
def text_color_for_bg(bg_color)
|
|
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
|
|
|
|
if (r + g + b) > 500
|
|
'#333333'
|
|
else
|
|
'#FFFFFF'
|
|
end
|
|
end
|
|
|
|
def labels_filter_path_with_defaults(only_group_labels: false, include_ancestor_groups: true, include_descendant_groups: false)
|
|
options = {}
|
|
options[:include_ancestor_groups] = include_ancestor_groups if include_ancestor_groups
|
|
options[:include_descendant_groups] = include_descendant_groups if include_descendant_groups
|
|
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
|
|
format = options.delete(:format)
|
|
|
|
if project
|
|
project_labels_path(project, format, options)
|
|
elsif @group
|
|
group_labels_path(@group, format, options)
|
|
else
|
|
dashboard_labels_path(format, options)
|
|
end
|
|
end
|
|
|
|
def label_subscription_status(label, project)
|
|
return 'group-level' if label.subscribed?(current_user)
|
|
return 'project-level' if label.subscribed?(current_user, project)
|
|
|
|
'unsubscribed'
|
|
end
|
|
|
|
def toggle_subscription_label_path(label, project)
|
|
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)
|
|
when 'project-level' then toggle_subscription_project_label_path(project, label)
|
|
when 'unsubscribed' then toggle_subscription_project_label_path(project, label)
|
|
end
|
|
end
|
|
|
|
def label_subscription_toggle_button_text(label, project = nil)
|
|
label.subscribed?(current_user, project) ? 'Unsubscribe' : 'Subscribe'
|
|
end
|
|
|
|
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
|
|
|
|
def label_status_tooltip(label, status)
|
|
type = label.project_label? ? 'project' : 'group'
|
|
level = status.unsubscribed? ? type : status.sub('-level', '')
|
|
action = status.unsubscribed? ? 'Subscribe' : 'Unsubscribe'
|
|
|
|
"#{action} at #{level} level"
|
|
end
|
|
|
|
def presented_labels_sorted_by_title(labels, subject)
|
|
labels.sort_by(&:title).map { |label| label.present(issuable_subject: subject) }
|
|
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
|
|
|
|
def issuable_types
|
|
['issues', 'merge requests']
|
|
end
|
|
|
|
# Required for Banzai::Filter::LabelReferenceFilter
|
|
module_function :render_colored_label, :text_color_for_bg, :escape_once, :label_tooltip_title
|
|
end
|