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

145 lines
4 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
2016-04-02 18:10:28 +05:30
milestones = @project.milestones.active.reorder(due_date: :asc, title: :asc).to_a
2015-12-23 02:04:40 +05:30
milestones.unshift(Milestone::None)
options_from_collection_for_select(milestones, 'id', 'title', params[:milestone_id])
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
def milestone_options(object)
2016-04-02 18:10:28 +05:30
milestones = object.project.milestones.active.reorder(due_date: :asc, title: :asc).to_a
2015-12-23 02:04:40 +05:30
milestones.unshift(Milestone::None)
options_from_collection_for_select(milestones, 'id', 'title', object.milestone_id)
2014-09-02 18:07:02 +05:30
end
2015-12-23 02:04:40 +05:30
def status_box_class(item)
2014-09-02 18:07:02 +05:30
if item.respond_to?(:expired?) && item.expired?
2015-12-23 02:04:40 +05:30
'status-box-expired'
2014-09-02 18:07:02 +05:30
elsif item.respond_to?(:merged?) && item.merged?
2015-12-23 02:04:40 +05:30
'status-box-merged'
2014-09-02 18:07:02 +05:30
elsif item.closed?
2015-12-23 02:04:40 +05:30
'status-box-closed'
2014-09-02 18:07:02 +05:30
else
2015-12-23 02:04:40 +05:30
'status-box-open'
2014-09-02 18:07:02 +05:30
end
end
2015-04-26 12:48:37 +05:30
2016-04-02 18:10:28 +05:30
def issue_button_visibility(issue, closed)
return 'hidden' if issue.closed? == closed
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.xmlschema
2015-11-26 14:37:03 +05:30
xml.media :thumbnail, width: "40", height: "40", url: image_url(avatar_icon(issue.author_email))
2015-04-26 12:48:37 +05:30
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
2015-10-24 18:46:33 +05:30
def merge_requests_sentence(merge_requests)
2015-12-23 02:04:40 +05:30
# Sorting based on the `!123` or `group/project!123` reference will sort
# local merge requests first.
merge_requests.map do |merge_request|
merge_request.to_reference(@project)
end.sort.to_sentence(last_word_connector: ', or ')
2015-10-24 18:46:33 +05:30
end
def emoji_icon(name, unicode = nil, aliases = [])
unicode ||= Emoji.emoji_filename(name) rescue ""
content_tag :div, "",
class: "icon emoji-icon emoji-#{unicode}",
title: name,
data: {
aliases: aliases.join(' '),
emoji: name,
unicode_name: unicode
}
2015-11-26 14:37:03 +05:30
end
def emoji_author_list(notes, current_user)
list = notes.map do |note|
2015-12-23 02:04:40 +05:30
note.author == current_user ? "me" : note.author.name
2015-11-26 14:37:03 +05:30
end
list.join(", ")
end
def note_active_class(notes, current_user)
if current_user && notes.pluck(:author_id).include?(current_user.id)
"active"
else
""
end
end
def awards_sort(awards)
awards.sort_by do |award, notes|
if award == "thumbsup"
0
elsif award == "thumbsdown"
1
else
2
end
end.to_h
end
2015-12-23 02:04:40 +05:30
# Required for Banzai::Filter::IssueReferenceFilter
2015-09-11 14:41:01 +05:30
module_function :url_for_issue
2014-09-02 18:07:02 +05:30
end