issuables_helper.rb 4.4 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
  def user_dropdown_label(user_id, default_label)
P
Phil Hughes 已提交
34
    return default_label if user_id.nil?
35 36
    return "Unassigned" if user_id == "0"

P
Phil Hughes 已提交
37
    user = User.find_by(id: user_id)
38 39 40 41 42 43 44 45

    if user
      user.name
    else
      default_label
    end
  end

46 47 48 49 50 51 52
  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
53
      project.name_with_namespace
54 55 56 57 58
    else
      default_label
    end
  end

P
Phil Hughes 已提交
59
  def milestone_dropdown_label(milestone_title, default_label = "Milestone")
P
Phil Hughes 已提交
60 61
    if milestone_title == Milestone::Upcoming.name
      milestone_title = Milestone::Upcoming.title
62
    end
P
Phil Hughes 已提交
63 64

    h(milestone_title.presence || default_label)
65 66
  end

67 68
  def issuable_meta(issuable, project, text)
    output = content_tag :strong, "#{text} #{issuable.to_reference}", class: "identifier"
69
    output << " opened #{time_ago_with_tooltip(issuable.created_at)} by ".html_safe
70
    output << content_tag(:strong) do
71
      author_output = link_to_member(project, issuable.author, size: 24, mobile_classes: "hidden-xs", tooltip: true)
72 73
      author_output << link_to_member(project, issuable.author, size: 24, by_username: true, avatar: false, mobile_classes: "hidden-sm hidden-md hidden-lg")
    end
74 75 76 77 78 79 80 81

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

    output
82 83
  end

P
Phil Hughes 已提交
84
  def issuable_todo(issuable)
85
    if current_user
P
Phil Hughes 已提交
86
      current_user.todos.find_by(target: issuable, state: :pending)
87
    end
P
Phil Hughes 已提交
88 89
  end

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

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

P
Phil Hughes 已提交
96
    label_names.join(', ')
97 98
  end

99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
  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

117 118 119 120 121 122 123
  private

  def sidebar_gutter_collapsed?
    cookies[:collapsed_gutter] == 'true'
  end

  def base_issuable_scope(issuable)
124
    issuable.project.send(issuable.class.table_name).send(issuable_state_scope(issuable))
125 126 127
  end

  def issuable_state_scope(issuable)
128 129 130 131 132
    if issuable.respond_to?(:merged?) && issuable.merged?
      :merged
    else
      issuable.open? ? :opened : :closed
    end
133
  end
134

135 136 137 138
  def issuable_filters_present
    params[:search] || params[:author_id] || params[:assignee_id] || params[:milestone_title] || params[:label_name]
  end

139 140 141 142 143 144 145
  def issuables_count_for_state(issuable_type, state)
    issuables_finder = public_send("#{issuable_type}_finder")
    issuables_finder.params[:state] = state

    issuables_finder.execute.page(1).total_count
  end

146
  IRRELEVANT_PARAMS_FOR_CACHE_KEY = %i[utf8 sort page]
147 148 149
  private_constant :IRRELEVANT_PARAMS_FOR_CACHE_KEY

  def issuables_state_counter_cache_key(issuable_type, state)
150 151 152
    opts = params.with_indifferent_access
    opts[:state] = state
    opts.except!(*IRRELEVANT_PARAMS_FOR_CACHE_KEY)
153 154 155

    hexdigest(['issuables_count', issuable_type, opts.sort].flatten.join('-'))
  end
156
end