issuables_helper.rb 6.2 KB
Newer Older
1 2 3 4 5 6 7 8 9
module IssuablesHelper
  def sidebar_gutter_toggle_icon
    sidebar_gutter_collapsed? ? icon('angle-double-left') : icon('angle-double-right')
  end

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

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

J
Jacob Schatz 已提交
23 24 25 26 27 28 29 30 31 32
  def issuable_json_path(issuable)
    project = issuable.project

    if issuable.kind_of?(MergeRequest)
      namespace_project_merge_request_path(project.namespace, project, issuable.iid, :json)
    else
      namespace_project_issue_path(project.namespace, project, issuable.iid, :json)
    end
  end

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
  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,
        namespace_path: ref_project.namespace.path
      }
    }

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

55
  def user_dropdown_label(user_id, default_label)
P
Phil Hughes 已提交
56
    return default_label if user_id.nil?
57 58
    return "Unassigned" if user_id == "0"

P
Phil Hughes 已提交
59
    user = User.find_by(id: user_id)
60 61 62 63 64 65 66 67

    if user
      user.name
    else
      default_label
    end
  end

68 69 70 71 72 73 74
  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
75
      project.name_with_namespace
76 77 78 79 80
    else
      default_label
    end
  end

P
Phil Hughes 已提交
81
  def milestone_dropdown_label(milestone_title, default_label = "Milestone")
P
Phil Hughes 已提交
82 83
    if milestone_title == Milestone::Upcoming.name
      milestone_title = Milestone::Upcoming.title
84
    end
P
Phil Hughes 已提交
85 86

    h(milestone_title.presence || default_label)
87 88
  end

89 90
  def issuable_meta(issuable, project, text)
    output = content_tag :strong, "#{text} #{issuable.to_reference}", class: "identifier"
91
    output << " opened #{time_ago_with_tooltip(issuable.created_at)} by ".html_safe
92
    output << content_tag(:strong) do
93
      author_output = link_to_member(project, issuable.author, size: 24, mobile_classes: "hidden-xs", tooltip: true)
94 95
      author_output << link_to_member(project, issuable.author, size: 24, by_username: true, avatar: false, mobile_classes: "hidden-sm hidden-md hidden-lg")
    end
96 97 98

    if issuable.tasks?
      output << "&ensp;".html_safe
99 100
      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")
101 102 103
    end

    output
104 105
  end

P
Phil Hughes 已提交
106
  def issuable_todo(issuable)
107
    if current_user
P
Phil Hughes 已提交
108
      current_user.todos.find_by(target: issuable, state: :pending)
109
    end
P
Phil Hughes 已提交
110 111
  end

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

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

P
Phil Hughes 已提交
118
    label_names.join(', ')
119 120
  end

121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
  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

139
  def cached_assigned_issuables_count(assignee, issuable_type, state)
L
Lucas Deschamps 已提交
140
    cache_key = hexdigest(['assigned_issuables_count', assignee.id, issuable_type, state].join('-'))
141 142 143 144 145
    Rails.cache.fetch(cache_key, expires_in: 2.minutes) do
      assigned_issuables_count(assignee, issuable_type, state)
    end
  end

146 147 148 149 150 151 152 153 154 155 156 157 158 159
  def issuable_filter_params
    [
      :search,
      :author_id,
      :assignee_id,
      :milestone_title,
      :label_name
    ]
  end

  def issuable_filter_present?
    issuable_filter_params.any? { |k| params.key?(k) }
  end

160 161
  private

162
  def assigned_issuables_count(assignee, issuable_type, state)
L
Lucas Deschamps 已提交
163
    assignee.public_send("assigned_#{issuable_type}").public_send(state).count
164 165
  end

166 167 168 169 170
  def sidebar_gutter_collapsed?
    cookies[:collapsed_gutter] == 'true'
  end

  def base_issuable_scope(issuable)
171
    issuable.project.send(issuable.class.table_name).send(issuable_state_scope(issuable))
172 173 174
  end

  def issuable_state_scope(issuable)
175 176 177 178 179
    if issuable.respond_to?(:merged?) && issuable.merged?
      :merged
    else
      issuable.open? ? :opened : :closed
    end
180
  end
181 182

  def issuables_count_for_state(issuable_type, state)
S
Sean McGivern 已提交
183 184 185
    @counts ||= {}
    @counts[issuable_type] ||= public_send("#{issuable_type}_finder").count_by_state
    @counts[issuable_type][state]
186 187
  end

188
  IRRELEVANT_PARAMS_FOR_CACHE_KEY = %i[utf8 sort page]
189 190 191
  private_constant :IRRELEVANT_PARAMS_FOR_CACHE_KEY

  def issuables_state_counter_cache_key(issuable_type, state)
192 193 194
    opts = params.with_indifferent_access
    opts[:state] = state
    opts.except!(*IRRELEVANT_PARAMS_FOR_CACHE_KEY)
195
    opts.delete_if { |_, value| value.blank? }
196 197 198

    hexdigest(['issuables_count', issuable_type, opts.sort].flatten.join('-'))
  end
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222

  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
223
end