issues_helper.rb 3.3 KB
Newer Older
G
gitlabhq 已提交
1
module IssuesHelper
2
  def issue_css_classes(issue)
D
Dmitriy Zaporozhets 已提交
3
    classes = "issue"
A
Andrew8xx8 已提交
4
    classes << " closed" if issue.closed?
D
Dmitriy Zaporozhets 已提交
5 6 7
    classes << " today" if issue.today?
    classes
  end
8

9 10 11 12
  # Returns an OpenStruct object suitable for use by <tt>options_from_collection_for_select</tt>
  # to allow filtering issues by an unassigned User or Milestone
  def unassigned_filter
    # Milestone uses :title, Issue uses :name
13
    OpenStruct.new(id: 0, title: 'None (backlog)', name: 'Unassigned')
14
  end
15

16
  def url_for_project_issues(project = @project, options = {})
S
skv 已提交
17
    return '' if project.nil?
18

19 20 21 22 23
    if options[:only_path]
      project.issues_tracker.project_path
    else
      project.issues_tracker.project_url
    end
24 25
  end

26
  def url_for_new_issue(project = @project, options = {})
S
skv 已提交
27
    return '' if project.nil?
28

29 30 31 32 33
    if options[:only_path]
      project.issues_tracker.new_issue_path
    else
      project.issues_tracker.new_issue_url
    end
34 35
  end

36
  def url_for_issue(issue_iid, project = @project, options = {})
S
skv 已提交
37
    return '' if project.nil?
A
Andrew8xx8 已提交
38

39 40 41 42 43
    if options[:only_path]
      project.issues_tracker.issue_path(issue_iid)
    else
      project.issues_tracker.issue_url(issue_iid)
    end
44 45
  end

46
  def bulk_update_milestone_options
47
    options_for_select([['None (backlog)', -1]]) +
S
skv 已提交
48 49
        options_from_collection_for_select(project_active_milestones, 'id',
                                           'title', params[:milestone_id])
50 51
  end

52
  def milestone_options(object)
S
skv 已提交
53 54
    options_from_collection_for_select(object.project.milestones.active,
                                       'id', 'title', object.milestone_id)
55
  end
D
Dmitriy Zaporozhets 已提交
56

D
Dmitriy Zaporozhets 已提交
57 58 59 60 61 62 63
  def issue_box_class(item)
    if item.respond_to?(:expired?) && item.expired?
      'issue-box-expired'
    elsif item.respond_to?(:merged?) && item.merged?
      'issue-box-merged'
    elsif item.closed?
      'issue-box-closed'
D
Dmitriy Zaporozhets 已提交
64
    else
D
Dmitriy Zaporozhets 已提交
65
      'issue-box-open'
D
Dmitriy Zaporozhets 已提交
66 67
    end
  end
D
Dmitriy Zaporozhets 已提交
68 69 70

  def issue_to_atom(xml, issue)
    xml.entry do
V
Vinnie Okada 已提交
71 72 73 74
      xml.id      namespace_project_issue_url(issue.project.namespace,
                                              issue.project, issue)
      xml.link    href: namespace_project_issue_url(issue.project.namespace,
                                                    issue.project, issue)
D
Dmitriy Zaporozhets 已提交
75 76
      xml.title   truncate(issue.title, length: 80)
      xml.updated issue.created_at.strftime("%Y-%m-%dT%H:%M:%SZ")
77
      xml.media   :thumbnail, width: "40", height: "40", url: image_url(avatar_icon(issue.author_email))
D
Dmitriy Zaporozhets 已提交
78 79 80 81 82 83 84
      xml.author do |author|
        xml.name issue.author_name
        xml.email issue.author_email
      end
      xml.summary issue.title
    end
  end
R
Robert Speicher 已提交
85

86
  def merge_requests_sentence(merge_requests)
87
    merge_requests.map(&:to_reference).to_sentence(last_word_connector: ', or ')
88 89
  end

V
Valery Sizov 已提交
90
  def url_to_emoji(name)
91
    emoji_path = ::AwardEmoji.path_to_emoji_image(name)
V
Valery Sizov 已提交
92
    url_to_image(emoji_path)
V
Valery Sizov 已提交
93 94
  rescue StandardError
    ""
V
Valery Sizov 已提交
95 96
  end

V
Valery Sizov 已提交
97 98 99 100 101 102 103 104
  def emoji_author_list(notes, current_user)
    list = notes.map do |note|
             note.author == current_user ? "me" : note.author.username
           end

    list.join(", ")
  end

V
Valery Sizov 已提交
105 106 107 108
  def emoji_list
    ::AwardEmoji::EMOJI_LIST
  end

V
Valery Sizov 已提交
109
  def note_active_class(notes, current_user)
V
Valery Sizov 已提交
110 111 112 113 114
    if current_user && notes.pluck(:author_id).include?(current_user.id)
      "active"
    else
      ""
    end
V
Valery Sizov 已提交
115 116
  end

117
  # Required for Gitlab::Markdown::IssueReferenceFilter
R
Robert Speicher 已提交
118
  module_function :url_for_issue
G
gitlabhq 已提交
119
end