issuables_helper.rb 7.1 KB
Newer Older
1
module IssuablesHelper
2 3
  include GitlabRoutingHelper

4
  def sidebar_gutter_toggle_icon
F
Filipa Lacerda 已提交
5
    sidebar_gutter_collapsed? ? icon('angle-double-left', { 'aria-hidden': 'true' }) : icon('angle-double-right', { 'aria-hidden': 'true' })
6 7 8 9 10 11
  end

  def sidebar_gutter_collapsed_class
    "right-sidebar-#{sidebar_gutter_collapsed? ? 'collapsed' : 'expanded'}"
  end

12
  def multi_label_name(current_labels, default_label)
13
    if current_labels && current_labels.any?
14
      title = current_labels.first.try(:title)
15 16
      if current_labels.size > 1
        "#{title} +#{current_labels.size - 1} more"
J
Jacob Schatz 已提交
17
      else
18
        title
J
Jacob Schatz 已提交
19
      end
A
Arinde Eniola 已提交
20
    else
21
      default_label
J
Jacob Schatz 已提交
22 23 24
    end
  end

J
Jacob Schatz 已提交
25 26 27
  def issuable_json_path(issuable)
    project = issuable.project

D
Douwe Maan 已提交
28
    if issuable.is_a?(MergeRequest)
J
Jacob Schatz 已提交
29 30 31 32 33 34
      namespace_project_merge_request_path(project.namespace, project, issuable.iid, :json)
    else
      namespace_project_issue_path(project.namespace, project, issuable.iid, :json)
    end
  end

35 36 37 38 39 40 41 42 43
  def serialize_issuable(issuable)
    case issuable
    when Issue
      IssueSerializer.new.represent(issuable).to_json
    when MergeRequest
      MergeRequestSerializer.new.represent(issuable).to_json
    end
  end

44 45 46 47 48 49 50 51 52 53 54 55 56
  def template_dropdown_tag(issuable, &block)
    title = selected_template(issuable) || "Choose a template"
    options = {
      toggle_class: 'js-issuable-selector',
      title: title,
      filter: true,
      placeholder: 'Filter',
      footer_content: true,
      data: {
        data: issuable_templates(issuable),
        field_name: 'issuable_template',
        selected: selected_template(issuable),
        project_path: ref_project.path,
57
        namespace_path: ref_project.namespace.full_path
58 59 60 61 62 63 64 65
      }
    }

    dropdown_tag(title, options: options) do
      capture(&block)
    end
  end

66
  def user_dropdown_label(user_id, default_label)
P
Phil Hughes 已提交
67
    return default_label if user_id.nil?
68 69
    return "Unassigned" if user_id == "0"

P
Phil Hughes 已提交
70
    user = User.find_by(id: user_id)
71 72 73 74 75 76 77 78

    if user
      user.name
    else
      default_label
    end
  end

79 80 81 82 83 84 85
  def project_dropdown_label(project_id, default_label)
    return default_label if project_id.nil?
    return "Any project" if project_id == "0"

    project = Project.find_by(id: project_id)

    if project
86
      project.name_with_namespace
87 88 89 90 91
    else
      default_label
    end
  end

P
Phil Hughes 已提交
92
  def milestone_dropdown_label(milestone_title, default_label = "Milestone")
93 94 95 96 97 98
    title =
      case milestone_title
      when Milestone::Upcoming.name then Milestone::Upcoming.title
      when Milestone::Started.name then Milestone::Started.title
      else milestone_title.presence
      end
P
Phil Hughes 已提交
99

100
    h(title || default_label)
101 102
  end

103 104 105 106 107 108 109 110 111 112 113
  def to_url_reference(issuable)
    case issuable
    when Issue
      link_to issuable.to_reference, issue_url(issuable)
    when MergeRequest
      link_to issuable.to_reference, merge_request_url(issuable)
    else
      issuable.to_reference
    end
  end

114
  def issuable_meta(issuable, project, text)
115 116 117 118 119
    output = content_tag(:strong, class: "identifier") do
      concat("#{text} ")
      concat(to_url_reference(issuable))
    end

120
    output << " opened #{time_ago_with_tooltip(issuable.created_at)} by ".html_safe
121
    output << content_tag(:strong) do
122
      author_output = link_to_member(project, issuable.author, size: 24, mobile_classes: "hidden-xs", tooltip: true)
123 124
      author_output << link_to_member(project, issuable.author, size: 24, by_username: true, avatar: false, mobile_classes: "hidden-sm hidden-md hidden-lg")
    end
125 126 127

    if issuable.tasks?
      output << "&ensp;".html_safe
128 129
      output << content_tag(:span, issuable.task_status, id: "task_status", class: "hidden-xs hidden-sm")
      output << content_tag(:span, issuable.task_status_short, id: "task_status_short", class: "hidden-md hidden-lg")
130 131 132
    end

    output
133 134
  end

P
Phil Hughes 已提交
135
  def issuable_todo(issuable)
136
    if current_user
P
Phil Hughes 已提交
137
      current_user.todos.find_by(target: issuable, state: :pending)
138
    end
P
Phil Hughes 已提交
139 140
  end

P
Phil Hughes 已提交
141
  def issuable_labels_tooltip(labels, limit: 5)
P
Phil Hughes 已提交
142
    first, last = labels.partition.with_index{ |_, i| i < limit  }
143

P
Phil Hughes 已提交
144 145
    label_names = first.collect(&:name)
    label_names << "and #{last.size} more" unless last.empty?
146

P
Phil Hughes 已提交
147
    label_names.join(', ')
148 149
  end

150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
  def issuables_state_counter_text(issuable_type, state)
    titles = {
      opened: "Open"
    }

    state_title = titles[state] || state.to_s.humanize

    count =
      Rails.cache.fetch(issuables_state_counter_cache_key(issuable_type, state), expires_in: 2.minutes) do
        issuables_count_for_state(issuable_type, state)
      end

    html = content_tag(:span, state_title)
    html << " " << content_tag(:span, number_with_delimiter(count), class: 'badge')

    html.html_safe
  end

168
  def cached_assigned_issuables_count(assignee, issuable_type, state)
L
Lucas Deschamps 已提交
169
    cache_key = hexdigest(['assigned_issuables_count', assignee.id, issuable_type, state].join('-'))
170 171 172 173 174
    Rails.cache.fetch(cache_key, expires_in: 2.minutes) do
      assigned_issuables_count(assignee, issuable_type, state)
    end
  end

175 176 177 178 179 180 181 182 183 184
  def issuable_filter_params
    [
      :search,
      :author_id,
      :assignee_id,
      :milestone_title,
      :label_name
    ]
  end

185 186 187 188
  def issuable_reference(issuable)
    @show_full_reference ? issuable.to_reference(full: true) : issuable.to_reference(@group || @project)
  end

189 190 191 192
  def issuable_filter_present?
    issuable_filter_params.any? { |k| params.key?(k) }
  end

193 194
  private

195
  def assigned_issuables_count(assignee, issuable_type, state)
L
Lucas Deschamps 已提交
196
    assignee.public_send("assigned_#{issuable_type}").public_send(state).count
197 198
  end

199 200 201 202 203
  def sidebar_gutter_collapsed?
    cookies[:collapsed_gutter] == 'true'
  end

  def base_issuable_scope(issuable)
204
    issuable.project.send(issuable.class.table_name).send(issuable_state_scope(issuable))
205 206 207
  end

  def issuable_state_scope(issuable)
208 209 210 211 212
    if issuable.respond_to?(:merged?) && issuable.merged?
      :merged
    else
      issuable.open? ? :opened : :closed
    end
213
  end
214 215

  def issuables_count_for_state(issuable_type, state)
S
Sean McGivern 已提交
216 217 218
    @counts ||= {}
    @counts[issuable_type] ||= public_send("#{issuable_type}_finder").count_by_state
    @counts[issuable_type][state]
219 220
  end

D
Douwe Maan 已提交
221
  IRRELEVANT_PARAMS_FOR_CACHE_KEY = %i[utf8 sort page].freeze
222 223 224
  private_constant :IRRELEVANT_PARAMS_FOR_CACHE_KEY

  def issuables_state_counter_cache_key(issuable_type, state)
225 226 227
    opts = params.with_indifferent_access
    opts[:state] = state
    opts.except!(*IRRELEVANT_PARAMS_FOR_CACHE_KEY)
228
    opts.delete_if { |_, value| value.blank? }
229 230 231

    hexdigest(['issuables_count', issuable_type, opts.sort].flatten.join('-'))
  end
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255

  def issuable_templates(issuable)
    @issuable_templates ||=
      case issuable
      when Issue
        issue_template_names
      when MergeRequest
        merge_request_template_names
      else
        raise 'Unknown issuable type!'
      end
  end

  def merge_request_template_names
    @merge_request_templates ||= Gitlab::Template::MergeRequestTemplate.dropdown_names(ref_project)
  end

  def issue_template_names
    @issue_templates ||= Gitlab::Template::IssueTemplate.dropdown_names(ref_project)
  end

  def selected_template(issuable)
    params[:issuable_template] if issuable_templates(issuable).include?(params[:issuable_template])
  end
256
end