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
|
|
|
|
|
2014-11-08 05:54:08 -05:00
|
|
|
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
|
2015-01-18 22:39:29 -05:00
|
|
|
haml_tag :span do
|
|
|
|
haml_concat '·'
|
2015-01-28 03:32:48 -05:00
|
|
|
haml_concat icon('edit', title: 'edited')
|
2015-01-18 22:39:29 -05:00
|
|
|
haml_concat time_ago_with_tooltip(issue.updated_at, 'bottom', 'issue_edited_ago')
|
2014-11-08 05:54:08 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
ts.html_safe
|
|
|
|
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")
|
|
|
|
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-04-02 20:46:43 -04:00
|
|
|
|
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
|