2011-10-08 17:36:38 -04:00
|
|
|
module IssuesHelper
|
2014-09-25 18:07:40 -04:00
|
|
|
def issue_css_classes(issue)
|
2012-06-21 01:29:53 -04:00
|
|
|
classes = "issue"
|
2013-02-18 04:10:58 -05:00
|
|
|
classes << " closed" if issue.closed?
|
2012-06-21 01:29:53 -04:00
|
|
|
classes << " today" if issue.today?
|
|
|
|
classes
|
|
|
|
end
|
2012-06-27 14:20:35 -04:00
|
|
|
|
2012-08-16 18:13:22 -04:00
|
|
|
# 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
|
2013-06-22 11:19:00 -04:00
|
|
|
OpenStruct.new(id: 0, title: 'None (backlog)', name: 'Unassigned')
|
2012-08-13 20:49:18 -04:00
|
|
|
end
|
2012-10-09 15:09:46 -04:00
|
|
|
|
2015-03-25 05:03:55 -04:00
|
|
|
def url_for_project_issues(project = @project, options = {})
|
2014-05-26 08:40:10 -04:00
|
|
|
return '' if project.nil?
|
2013-02-19 08:06:40 -05:00
|
|
|
|
2015-03-25 05:03:55 -04:00
|
|
|
if options[:only_path]
|
|
|
|
project.issues_tracker.project_path
|
|
|
|
else
|
|
|
|
project.issues_tracker.project_url
|
|
|
|
end
|
2013-02-19 08:06:40 -05:00
|
|
|
end
|
|
|
|
|
2015-03-25 05:03:55 -04:00
|
|
|
def url_for_new_issue(project = @project, options = {})
|
2014-05-26 08:40:10 -04:00
|
|
|
return '' if project.nil?
|
2013-03-26 04:27:34 -04:00
|
|
|
|
2015-03-25 05:03:55 -04:00
|
|
|
if options[:only_path]
|
|
|
|
project.issues_tracker.new_issue_path
|
|
|
|
else
|
|
|
|
project.issues_tracker.new_issue_url
|
|
|
|
end
|
2013-03-26 04:27:34 -04:00
|
|
|
end
|
|
|
|
|
2015-03-25 05:03:55 -04:00
|
|
|
def url_for_issue(issue_iid, project = @project, options = {})
|
2014-05-26 08:40:10 -04:00
|
|
|
return '' if project.nil?
|
2013-02-11 08:32:29 -05:00
|
|
|
|
2015-03-25 05:03:55 -04:00
|
|
|
if options[:only_path]
|
|
|
|
project.issues_tracker.issue_path(issue_iid)
|
|
|
|
else
|
|
|
|
project.issues_tracker.issue_url(issue_iid)
|
|
|
|
end
|
2013-01-23 09:13:28 -05:00
|
|
|
end
|
|
|
|
|
2013-11-25 11:57:44 -05:00
|
|
|
def bulk_update_milestone_options
|
2015-03-24 11:52:02 -04:00
|
|
|
options_for_select([['None (backlog)', -1]]) +
|
2014-05-26 08:40:10 -04:00
|
|
|
options_from_collection_for_select(project_active_milestones, 'id',
|
|
|
|
'title', params[:milestone_id])
|
2013-11-25 11:57:44 -05:00
|
|
|
end
|
|
|
|
|
2014-09-25 18:07:40 -04:00
|
|
|
def milestone_options(object)
|
2014-05-26 08:40:10 -04:00
|
|
|
options_from_collection_for_select(object.project.milestones.active,
|
|
|
|
'id', 'title', object.milestone_id)
|
2013-12-19 12:54:57 -05:00
|
|
|
end
|
2014-02-18 15:05:44 -05:00
|
|
|
|
2014-02-27 14:04:44 -05:00
|
|
|
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'
|
2014-02-18 15:05:44 -05:00
|
|
|
else
|
2014-02-27 14:04:44 -05:00
|
|
|
'issue-box-open'
|
2014-02-18 15:05:44 -05:00
|
|
|
end
|
|
|
|
end
|
2014-12-04 15:14:20 -05:00
|
|
|
|
|
|
|
def issue_to_atom(xml, issue)
|
|
|
|
xml.entry do
|
2015-01-24 13:02:58 -05:00
|
|
|
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)
|
2014-12-04 15:14:20 -05:00
|
|
|
xml.title truncate(issue.title, length: 80)
|
|
|
|
xml.updated issue.created_at.strftime("%Y-%m-%dT%H:%M:%SZ")
|
2015-11-10 10:52:35 -05:00
|
|
|
xml.media :thumbnail, width: "40", height: "40", url: image_url(avatar_icon(issue.author_email))
|
2014-12-04 15:14:20 -05:00
|
|
|
xml.author do |author|
|
|
|
|
xml.name issue.author_name
|
|
|
|
xml.email issue.author_email
|
|
|
|
end
|
|
|
|
xml.summary issue.title
|
|
|
|
end
|
|
|
|
end
|
2015-04-02 20:46:43 -04:00
|
|
|
|
2015-10-12 06:04:20 -04:00
|
|
|
def merge_requests_sentence(merge_requests)
|
2015-10-13 03:41:46 -04:00
|
|
|
merge_requests.map(&:to_reference).to_sentence(last_word_connector: ', or ')
|
2015-10-12 06:04:20 -04:00
|
|
|
end
|
|
|
|
|
2015-11-11 08:12:51 -05:00
|
|
|
def url_to_emoji(name)
|
2015-11-18 16:59:58 -05:00
|
|
|
emoji_path = ::AwardEmoji.path_to_emoji_image(name)
|
2015-11-11 08:12:51 -05:00
|
|
|
url_to_image(emoji_path)
|
2015-11-20 04:13:43 -05:00
|
|
|
rescue StandardError
|
|
|
|
""
|
2015-11-11 08:12:51 -05:00
|
|
|
end
|
|
|
|
|
2015-11-18 08:43:53 -05:00
|
|
|
def emoji_author_list(notes, current_user)
|
|
|
|
list = notes.map do |note|
|
|
|
|
note.author == current_user ? "me" : note.author.username
|
|
|
|
end
|
|
|
|
|
|
|
|
list.join(", ")
|
|
|
|
end
|
|
|
|
|
2015-11-18 10:38:15 -05:00
|
|
|
def emoji_list
|
|
|
|
::AwardEmoji::EMOJI_LIST
|
|
|
|
end
|
|
|
|
|
2015-11-18 17:59:07 -05:00
|
|
|
def note_active_class(notes, current_user)
|
2015-11-19 06:20:09 -05:00
|
|
|
if current_user && notes.pluck(:author_id).include?(current_user.id)
|
|
|
|
"active"
|
|
|
|
else
|
|
|
|
""
|
|
|
|
end
|
2015-11-18 17:59:07 -05:00
|
|
|
end
|
|
|
|
|
2015-04-16 12:41:59 -04:00
|
|
|
# Required for Gitlab::Markdown::IssueReferenceFilter
|
2015-04-30 17:27:33 -04:00
|
|
|
module_function :url_for_issue
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|