debian-mirror-gitlab/app/helpers/issues_helper.rb

89 lines
2.6 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
module IssuesHelper
2015-04-26 12:48:37 +05:30
def issue_css_classes(issue)
2014-09-02 18:07:02 +05:30
classes = "issue"
classes << " closed" if issue.closed?
classes << " today" if issue.today?
classes
end
# 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
OpenStruct.new(id: 0, title: 'None (backlog)', name: 'Unassigned')
end
2015-04-26 12:48:37 +05:30
def url_for_project_issues(project = @project, options = {})
2014-09-02 18:07:02 +05:30
return '' if project.nil?
2015-04-26 12:48:37 +05:30
if options[:only_path]
project.issues_tracker.project_path
2014-09-02 18:07:02 +05:30
else
2015-04-26 12:48:37 +05:30
project.issues_tracker.project_url
2014-09-02 18:07:02 +05:30
end
end
2015-04-26 12:48:37 +05:30
def url_for_new_issue(project = @project, options = {})
2014-09-02 18:07:02 +05:30
return '' if project.nil?
2015-04-26 12:48:37 +05:30
if options[:only_path]
project.issues_tracker.new_issue_path
2014-09-02 18:07:02 +05:30
else
2015-04-26 12:48:37 +05:30
project.issues_tracker.new_issue_url
2014-09-02 18:07:02 +05:30
end
end
2015-04-26 12:48:37 +05:30
def url_for_issue(issue_iid, project = @project, options = {})
2014-09-02 18:07:02 +05:30
return '' if project.nil?
2015-04-26 12:48:37 +05:30
if options[:only_path]
project.issues_tracker.issue_path(issue_iid)
2014-09-02 18:07:02 +05:30
else
2015-04-26 12:48:37 +05:30
project.issues_tracker.issue_url(issue_iid)
2014-09-02 18:07:02 +05:30
end
end
def bulk_update_milestone_options
2015-04-26 12:48:37 +05:30
options_for_select([['None (backlog)', -1]]) +
2014-09-02 18:07:02 +05:30
options_from_collection_for_select(project_active_milestones, 'id',
'title', params[:milestone_id])
end
2015-04-26 12:48:37 +05:30
def milestone_options(object)
2014-09-02 18:07:02 +05:30
options_from_collection_for_select(object.project.milestones.active,
'id', 'title', object.milestone_id)
end
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'
else
'issue-box-open'
end
end
2015-04-26 12:48:37 +05:30
def issue_to_atom(xml, issue)
xml.entry do
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)
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
2015-09-11 14:41:01 +05:30
# Required for Gitlab::Markdown::IssueReferenceFilter
module_function :url_for_issue
2014-09-02 18:07:02 +05:30
end