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
|
|
|
|
2014-05-26 08:40:10 -04:00
|
|
|
def url_for_project_issues(project = @project)
|
|
|
|
return '' if project.nil?
|
2013-02-19 08:06:40 -05:00
|
|
|
|
2015-01-23 14:01:09 -05:00
|
|
|
if project.using_issue_tracker?
|
2014-05-26 08:40:10 -04:00
|
|
|
project_issues_path(project)
|
2013-02-19 08:06:40 -05:00
|
|
|
else
|
2014-05-26 08:40:10 -04:00
|
|
|
url = Gitlab.config.issues_tracker[project.issues_tracker]['project_url']
|
|
|
|
url.gsub(':project_id', project.id.to_s).
|
|
|
|
gsub(':issues_tracker_id', project.issues_tracker_id.to_s)
|
2013-02-19 08:06:40 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-05-26 08:40:10 -04:00
|
|
|
def url_for_new_issue(project = @project)
|
|
|
|
return '' if project.nil?
|
2013-03-26 04:27:34 -04:00
|
|
|
|
2015-01-23 14:01:09 -05:00
|
|
|
if project.using_issue_tracker?
|
2014-05-26 08:40:10 -04:00
|
|
|
url = new_project_issue_path project_id: project
|
2013-03-26 04:27:34 -04:00
|
|
|
else
|
2014-05-26 08:40:10 -04:00
|
|
|
issues_tracker = Gitlab.config.issues_tracker[project.issues_tracker]
|
|
|
|
url = issues_tracker['new_issue_url']
|
|
|
|
url.gsub(':project_id', project.id.to_s).
|
|
|
|
gsub(':issues_tracker_id', project.issues_tracker_id.to_s)
|
2013-03-26 04:27:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-05-26 08:40:10 -04:00
|
|
|
def url_for_issue(issue_iid, project = @project)
|
|
|
|
return '' if project.nil?
|
2013-02-11 08:32:29 -05:00
|
|
|
|
2015-01-23 14:01:09 -05:00
|
|
|
if project.using_issue_tracker?
|
2014-05-26 08:40:10 -04:00
|
|
|
url = project_issue_url project_id: project, id: issue_iid
|
2013-01-23 09:13:28 -05:00
|
|
|
else
|
2014-05-26 08:40:10 -04:00
|
|
|
url = Gitlab.config.issues_tracker[project.issues_tracker]['issues_url']
|
|
|
|
url.gsub(':id', issue_iid.to_s).
|
|
|
|
gsub(':project_id', project.id.to_s).
|
|
|
|
gsub(':issues_tracker_id', project.issues_tracker_id.to_s)
|
2013-01-23 09:13:28 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-05-26 08:40:10 -04:00
|
|
|
def title_for_issue(issue_iid, project = @project)
|
|
|
|
return '' if project.nil?
|
2013-02-11 08:32:29 -05:00
|
|
|
|
2015-01-23 14:01:09 -05:00
|
|
|
if project.default_issues_tracker?
|
2014-05-26 08:40:10 -04:00
|
|
|
issue = project.issues.where(iid: issue_iid).first
|
|
|
|
return issue.title if issue
|
2013-01-23 09:13:28 -05:00
|
|
|
end
|
2014-05-26 08:40:10 -04:00
|
|
|
|
|
|
|
''
|
2013-01-23 09:13:28 -05:00
|
|
|
end
|
2013-10-17 04:42:39 -04:00
|
|
|
|
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 '·'
|
|
|
|
haml_concat '<i class="fa fa-edit" title="edited"></i> '
|
|
|
|
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
|
2014-05-26 08:40:10 -04:00
|
|
|
options_for_select(['None (backlog)']) +
|
|
|
|
options_from_collection_for_select(project_active_milestones, 'id',
|
|
|
|
'title', params[:milestone_id])
|
2013-11-25 11:57:44 -05:00
|
|
|
end
|
|
|
|
|
2014-05-26 08:40:10 -04:00
|
|
|
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])
|
2013-11-25 11:57:44 -05:00
|
|
|
end
|
2013-12-19 12:54:57 -05:00
|
|
|
|
2014-05-26 08:40:10 -04:00
|
|
|
def assignee_options(object, project = @project)
|
|
|
|
options_from_collection_for_select(project.team.members.sort_by(&:name),
|
|
|
|
'id', 'name', object.assignee_id)
|
2013-12-19 12:54:57 -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
|
|
|
|
xml.id project_issue_url(issue.project, issue)
|
|
|
|
xml.link href: project_issue_url(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
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|