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_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
|
|
|
|
2016-04-21 11:13:14 -04:00
|
|
|
url =
|
2017-07-10 03:38:42 -04:00
|
|
|
if options[:internal]
|
|
|
|
url_for_internal_issue(issue_iid, project, options)
|
2016-04-21 11:13:14 -04:00
|
|
|
else
|
2017-07-10 03:38:42 -04:00
|
|
|
url_for_tracker_issue(issue_iid, project, options)
|
2016-04-21 11:13:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Ensure we return a valid URL to prevent possible XSS.
|
|
|
|
URI.parse(url).to_s
|
|
|
|
rescue URI::InvalidURIError
|
|
|
|
''
|
2013-01-23 09:13:28 -05:00
|
|
|
end
|
|
|
|
|
2017-07-10 03:38:42 -04:00
|
|
|
def url_for_tracker_issue(issue_iid, project, options)
|
|
|
|
if options[:only_path]
|
|
|
|
project.issues_tracker.issue_path(issue_iid)
|
|
|
|
else
|
|
|
|
project.issues_tracker.issue_url(issue_iid)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def url_for_internal_issue(issue_iid, project = @project, options = {})
|
|
|
|
helpers = Gitlab::Routing.url_helpers
|
|
|
|
|
|
|
|
if options[:only_path]
|
|
|
|
helpers.namespace_project_issue_path(namespace_id: project.namespace, project_id: project, id: issue_iid)
|
|
|
|
else
|
|
|
|
helpers.namespace_project_issue_url(namespace_id: project.namespace, project_id: project, id: issue_iid)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-09-25 18:07:40 -04:00
|
|
|
def milestone_options(object)
|
2016-01-23 17:31:46 -05:00
|
|
|
milestones = object.project.milestones.active.reorder(due_date: :asc, title: :asc).to_a
|
2016-04-06 10:02:22 -04:00
|
|
|
milestones.unshift(object.milestone) if object.milestone.present? && object.milestone.closed?
|
2015-12-02 08:20:43 -05:00
|
|
|
milestones.unshift(Milestone::None)
|
|
|
|
|
|
|
|
options_from_collection_for_select(milestones, 'id', 'title', object.milestone_id)
|
2013-12-19 12:54:57 -05:00
|
|
|
end
|
2014-02-18 15:05:44 -05:00
|
|
|
|
2016-03-15 10:01:26 -04:00
|
|
|
def project_options(issuable, current_user, ability: :read_project)
|
2017-08-15 06:27:37 -04:00
|
|
|
projects = current_user.authorized_projects.order_id_desc
|
2016-03-15 10:01:26 -04:00
|
|
|
projects = projects.select do |project|
|
2016-03-16 05:24:44 -04:00
|
|
|
current_user.can?(ability, project)
|
2016-03-15 10:01:26 -04:00
|
|
|
end
|
|
|
|
|
2016-03-16 05:24:44 -04:00
|
|
|
no_project = OpenStruct.new(id: 0, name_with_namespace: 'No project')
|
|
|
|
projects.unshift(no_project)
|
|
|
|
projects.delete(issuable.project)
|
2016-03-15 10:01:26 -04:00
|
|
|
|
2016-03-16 05:24:44 -04:00
|
|
|
options_from_collection_for_select(projects, :id, :name_with_namespace)
|
2016-03-15 10:01:26 -04:00
|
|
|
end
|
|
|
|
|
2015-12-16 10:13:22 -05:00
|
|
|
def status_box_class(item)
|
2017-01-03 05:30:58 -05:00
|
|
|
if item.try(:expired?)
|
2015-12-16 10:13:22 -05:00
|
|
|
'status-box-expired'
|
2017-01-03 05:30:58 -05:00
|
|
|
elsif item.try(:merged?)
|
2015-12-16 10:13:22 -05:00
|
|
|
'status-box-merged'
|
2014-02-27 14:04:44 -05:00
|
|
|
elsif item.closed?
|
2015-12-16 10:13:22 -05:00
|
|
|
'status-box-closed'
|
2017-01-03 05:30:58 -05:00
|
|
|
elsif item.try(:upcoming?)
|
2016-11-15 12:48:30 -05:00
|
|
|
'status-box-upcoming'
|
2014-02-18 15:05:44 -05:00
|
|
|
else
|
2015-12-16 10:13:22 -05:00
|
|
|
'status-box-open'
|
2014-02-18 15:05:44 -05:00
|
|
|
end
|
|
|
|
end
|
2014-12-04 15:14:20 -05:00
|
|
|
|
2016-01-23 17:31:46 -05:00
|
|
|
def issue_button_visibility(issue, closed)
|
2015-12-21 13:06:09 -05:00
|
|
|
return 'hidden' if issue.closed? == closed
|
|
|
|
end
|
|
|
|
|
2016-03-17 17:00:03 -04:00
|
|
|
def confidential_icon(issue)
|
|
|
|
icon('eye-slash') if issue.confidential?
|
|
|
|
end
|
|
|
|
|
2016-10-06 14:00:51 -04:00
|
|
|
def award_user_list(awards, current_user, limit: 10)
|
2016-06-21 18:22:03 -04:00
|
|
|
names = awards.map do |award|
|
2016-07-11 14:53:07 -04:00
|
|
|
award.user == current_user ? 'You' : award.user.name
|
2016-06-19 19:06:57 -04:00
|
|
|
end
|
|
|
|
|
2016-07-11 14:53:07 -04:00
|
|
|
current_user_name = names.delete('You')
|
2016-10-06 14:00:51 -04:00
|
|
|
names = names.insert(0, current_user_name).compact.first(limit)
|
2016-06-21 18:22:03 -04:00
|
|
|
|
2016-06-23 15:02:11 -04:00
|
|
|
names << "#{awards.size - names.size} more." if awards.size > names.size
|
2016-06-19 19:06:57 -04:00
|
|
|
|
2016-06-23 15:02:11 -04:00
|
|
|
names.to_sentence
|
2015-11-18 08:43:53 -05:00
|
|
|
end
|
|
|
|
|
2016-12-30 09:44:21 -05:00
|
|
|
def award_state_class(awards, current_user)
|
|
|
|
if !current_user
|
|
|
|
"disabled"
|
|
|
|
elsif current_user && awards.find { |a| a.user_id == current_user.id }
|
2015-11-19 06:20:09 -05:00
|
|
|
"active"
|
|
|
|
else
|
|
|
|
""
|
|
|
|
end
|
2015-11-18 17:59:07 -05:00
|
|
|
end
|
|
|
|
|
2016-09-08 06:08:09 -04:00
|
|
|
def award_user_authored_class(award)
|
|
|
|
if award == 'thumbsdown' || award == 'thumbsup'
|
|
|
|
'user-authored js-user-authored'
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-25 05:08:53 -05:00
|
|
|
def awards_sort(awards)
|
2017-06-09 17:24:54 -04:00
|
|
|
awards.sort_by do |award, award_emojis|
|
2015-12-25 05:08:53 -05:00
|
|
|
if award == "thumbsup"
|
|
|
|
0
|
|
|
|
elsif award == "thumbsdown"
|
|
|
|
1
|
|
|
|
else
|
|
|
|
2
|
|
|
|
end
|
|
|
|
end.to_h
|
|
|
|
end
|
|
|
|
|
2017-03-09 08:28:57 -05:00
|
|
|
def link_to_discussions_to_resolve(merge_request, single_discussion = nil)
|
2017-03-08 10:39:20 -05:00
|
|
|
link_text = merge_request.to_reference
|
|
|
|
link_text += " (discussion #{single_discussion.first_note.id})" if single_discussion
|
|
|
|
|
|
|
|
path = if single_discussion
|
|
|
|
Gitlab::UrlBuilder.build(single_discussion.first_note)
|
|
|
|
else
|
|
|
|
project = merge_request.project
|
2017-06-29 13:06:35 -04:00
|
|
|
project_merge_request_path(project, merge_request)
|
2017-03-08 10:39:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
link_to link_text, path
|
|
|
|
end
|
|
|
|
|
2015-12-15 10:10:32 -05:00
|
|
|
# Required for Banzai::Filter::IssueReferenceFilter
|
2015-04-30 17:27:33 -04:00
|
|
|
module_function :url_for_issue
|
2017-07-10 03:38:42 -04:00
|
|
|
module_function :url_for_internal_issue
|
|
|
|
module_function :url_for_tracker_issue
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|