labels_helper.rb 3.54 KB
Newer Older
1
module LabelsHelper
2 3
  include ActionView::Helpers::TagHelper

Robert Speicher's avatar
Robert Speicher committed
4 5 6 7 8 9
  # Link to a Label
  #
  # label   - Label object to link to
  # project - Project object which will be used as the context for the label's
  #           link. If omitted, defaults to `@project`, or the label's own
  #           project.
10 11
  # type    - The type of item the link will point to (:issue or
  #           :merge_request). If omitted, defaults to :issue.
Robert Speicher's avatar
Robert Speicher committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
  # 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 project
  #   link_to_label(label)
  #
  #   # Force the generated link to use @project
  #   @project = Project.first
  #   link_to_label(label)
  #
  #   # Force the generated link to use a provided project
  #   link_to_label(label, project: Project.last)
  #
28 29 30
  #   # Force the generated link to point to merge requests instead of issues
  #   link_to_label(label, type: :merge_request)
  #
Robert Speicher's avatar
Robert Speicher committed
31 32 33 34
  #   # Customize link body with a block
  #   link_to_label(label) { "My Custom Label Text" }
  #
  # Returns a String
35
  def link_to_label(label, project: nil, type: :issue, &block)
Robert Speicher's avatar
Robert Speicher committed
36
    project ||= @project || label.project
37 38 39 40
    link = send("namespace_project_#{type.to_s.pluralize}_path",
                project.namespace,
                project,
                label_name: label.name)
Robert Speicher's avatar
Robert Speicher committed
41 42 43 44 45 46 47 48

    if block_given?
      link_to link, &block
    else
      link_to render_colored_label(label), link
    end
  end

49
  def project_label_names
50
    @project.labels.pluck(:title)
51 52
  end

53
  def render_colored_label(label, label_suffix = '')
54
    label_color = label.color || Label::DEFAULT_COLOR
55
    text_color = text_color_for_bg(label_color)
56

57 58 59
    # Intentionally not using content_tag here so that this method can be called
    # by LabelReferenceFilter
    span = %(<span class="label color-label") +
60 61
      %(style="background-color: #{label_color}; color: #{text_color}">) +
      %(#{escape_once(label.name)}#{label_suffix}</span>)
62 63

    span.html_safe
64
  end
65

66
  def render_colored_cross_project_label(label)
67
    label_suffix = label.project.name_with_namespace
68
    label_suffix = " <i>in #{escape_once(label_suffix)}</i>"
69
    render_colored_label(label, label_suffix)
70 71
  end

72 73
  def suggested_colors
    [
phortx's avatar
phortx committed
74
      '#0033CC',
75
      '#428BCA',
phortx's avatar
phortx committed
76 77
      '#44AD8E',
      '#A8D695',
78
      '#5CB85C',
phortx's avatar
phortx committed
79 80
      '#69D100',
      '#004E00',
81 82
      '#34495E',
      '#7F8C8D',
phortx's avatar
phortx committed
83 84
      '#A295D6',
      '#5843AD',
85
      '#8E44AD',
phortx's avatar
phortx committed
86
      '#FFECDB',
87 88 89 90 91 92 93 94
      '#AD4363',
      '#D10069',
      '#CC0033',
      '#FF0000',
      '#D9534F',
      '#D1D100',
      '#F0AD4E',
      '#AD8D43'
95 96
    ]
  end
97 98

  def text_color_for_bg(bg_color)
99 100 101 102 103
    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
104 105

    if (r + g + b) > 500
106
      '#333333'
107
    else
108
      '#FFFFFF'
109 110
    end
  end
111

112 113 114 115 116 117
  def labels_filter_path
    if @project
      namespace_project_labels_path(@project.namespace, @project, :json)
    else
      labels_dashboard_path(:json)
    end
118
  end
119

120 121 122 123 124 125 126 127
  def label_subscription_status(label)
    label.subscribed?(current_user) ? 'subscribed' : 'unsubscribed'
  end

  def label_subscription_toggle_button_text(label)
    label.subscribed?(current_user) ? 'Unsubscribe' : 'Subscribe'
  end

128
  # Required for Banzai::Filter::LabelReferenceFilter
129 130
  module_function :render_colored_label, :render_colored_cross_project_label,
                  :text_color_for_bg, :escape_once
131
end