BigW Consortium Gitlab

issues_helper.rb 3.41 KB
Newer Older
gitlabhq committed
1
module IssuesHelper
2
  def issue_css_classes(issue)
Dmitriy Zaporozhets committed
3
    classes = "issue"
Andrew8xx8 committed
4
    classes << " closed" if issue.closed?
Dmitriy Zaporozhets committed
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

skv committed
16 17
  def url_for_project_issues(project = @project)
    return '' if project.nil?
18

19
    project.issues_tracker.project_url
20 21
  end

skv committed
22 23
  def url_for_new_issue(project = @project)
    return '' if project.nil?
24

25
    project.issues_tracker.new_issue_url
26 27
  end

skv committed
28 29
  def url_for_issue(issue_iid, project = @project)
    return '' if project.nil?
Andrew8xx8 committed
30

31
    project.issues_tracker.issue_url(issue_iid)
32 33
  end

skv committed
34 35
  def title_for_issue(issue_iid, project = @project)
    return '' if project.nil?
Andrew8xx8 committed
36

37
    if project.default_issues_tracker?
skv committed
38 39
      issue = project.issues.where(iid: issue_iid).first
      return issue.title if issue
40
    end
skv committed
41 42

    ''
43
  end
44

45 46 47 48 49
  def issue_timestamp(issue)
    # Shows the created at time and the updated at time if different
    ts = "#{time_ago_with_tooltip(issue.created_at, 'bottom', 'note_created_ago')}"
    if issue.updated_at != issue.created_at
      ts << capture_haml do
50 51
        haml_tag :span do
          haml_concat '&middot;'
52
          haml_concat icon('edit', title: 'edited')
53
          haml_concat time_ago_with_tooltip(issue.updated_at, 'bottom', 'issue_edited_ago')
54 55 56 57 58 59
        end
      end
    end
    ts.html_safe
  end

60
  def bulk_update_milestone_options
skv committed
61 62 63
    options_for_select(['None (backlog)']) +
        options_from_collection_for_select(project_active_milestones, 'id',
                                           'title', params[:milestone_id])
64 65
  end

skv committed
66 67 68 69
  def bulk_update_assignee_options(project = @project)
    options_for_select(['None (unassigned)']) +
        options_from_collection_for_select(project.team.members, 'id',
                                           'name', params[:assignee_id])
70
  end
71

skv committed
72 73 74
  def assignee_options(object, project = @project)
    options_from_collection_for_select(project.team.members.sort_by(&:name),
                                       'id', 'name', object.assignee_id)
75 76
  end

77
  def milestone_options(object)
skv committed
78 79
    options_from_collection_for_select(object.project.milestones.active,
                                       'id', 'title', object.milestone_id)
80
  end
81

Dmitriy Zaporozhets committed
82 83 84 85 86 87 88
  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'
89
    else
Dmitriy Zaporozhets committed
90
      'issue-box-open'
91 92
    end
  end
93 94 95

  def issue_to_atom(xml, issue)
    xml.entry do
Vinnie Okada committed
96 97 98 99
      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)
100 101 102 103 104 105 106 107 108 109
      xml.title   truncate(issue.title, length: 80)
      xml.updated issue.created_at.strftime("%Y-%m-%dT%H:%M:%SZ")
      xml.media   :thumbnail, width: "40", height: "40", url: avatar_icon(issue.author_email)
      xml.author do |author|
        xml.name issue.author_name
        xml.email issue.author_email
      end
      xml.summary issue.title
    end
  end
gitlabhq committed
110
end