2018-08-18 07:19:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
module IssuesHelper
|
2014-09-25 18:07:40 -04:00
|
|
|
def issue_css_classes(issue)
|
2018-08-18 07:19:57 -04:00
|
|
|
classes = ["issue"]
|
|
|
|
classes << "closed" if issue.closed?
|
|
|
|
classes << "today" if issue.today?
|
2019-06-26 04:29:23 -04:00
|
|
|
classes << "user-can-drag" if @sort == 'relative_position'
|
2018-08-18 07:19:57 -04:00
|
|
|
classes.join(' ')
|
2012-06-21 01:29:53 -04:00
|
|
|
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
|
|
|
|
|
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?)
|
2018-01-17 09:09:59 -05:00
|
|
|
'status-box-mr-merged'
|
2014-02-27 14:04:44 -05:00
|
|
|
elsif item.closed?
|
2017-12-12 22:44:59 -05:00
|
|
|
'status-box-mr-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
|
|
|
|
2019-09-18 10:18:51 -04:00
|
|
|
def issue_status_visibility(issue, status_box:)
|
|
|
|
case status_box
|
|
|
|
when :open
|
|
|
|
'hidden' if issue.closed?
|
|
|
|
when :closed
|
|
|
|
'hidden' unless issue.closed?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-01-23 17:31:46 -05:00
|
|
|
def issue_button_visibility(issue, closed)
|
2018-09-20 10:41:15 -04:00
|
|
|
return 'hidden' if issue_button_hidden?(issue, closed)
|
|
|
|
end
|
|
|
|
|
|
|
|
def issue_button_hidden?(issue, closed)
|
|
|
|
issue.closed? == closed || (!closed && issue.discussion_locked)
|
2015-12-21 13:06:09 -05:00
|
|
|
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
|
|
|
|
|
2018-04-06 14:19:37 -04:00
|
|
|
def award_state_class(awardable, awards, current_user)
|
|
|
|
if !can?(current_user, :award_emoji, awardable)
|
2016-12-30 09:44:21 -05:00
|
|
|
"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
|
|
|
|
|
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)
|
2018-08-18 07:19:57 -04:00
|
|
|
link_text = [merge_request.to_reference]
|
|
|
|
link_text << "(discussion #{single_discussion.first_note.id})" if single_discussion
|
2017-03-08 10:39:20 -05:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2018-08-18 07:19:57 -04:00
|
|
|
link_to link_text.join(' '), path
|
2017-03-08 10:39:20 -05:00
|
|
|
end
|
|
|
|
|
2018-04-10 13:49:26 -04:00
|
|
|
def show_new_issue_link?(project)
|
|
|
|
return false unless project
|
|
|
|
return false if project.archived?
|
|
|
|
|
|
|
|
# We want to show the link to users that are not signed in, that way they
|
|
|
|
# get directed to the sign-in/sign-up flow and afterwards to the new issue page.
|
|
|
|
return true unless current_user
|
|
|
|
|
|
|
|
can?(current_user, :create_issue, project)
|
|
|
|
end
|
|
|
|
|
2019-06-20 13:59:02 -04:00
|
|
|
def create_confidential_merge_request_enabled?
|
2019-07-05 06:14:56 -04:00
|
|
|
Feature.enabled?(:create_confidential_merge_request, @project, default_enabled: true)
|
2019-06-20 13:59:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def show_new_branch_button?
|
|
|
|
can_create_confidential_merge_request? || !@issue.confidential?
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_create_confidential_merge_request?
|
|
|
|
@issue.confidential? && !@project.private? &&
|
|
|
|
create_confidential_merge_request_enabled? &&
|
|
|
|
can?(current_user, :create_merge_request_in, @project)
|
|
|
|
end
|
|
|
|
|
2019-09-13 09:26:31 -04:00
|
|
|
def issue_closed_link(issue, current_user, css_class: '')
|
|
|
|
if issue.moved? && can?(current_user, :read_issue, issue.moved_to)
|
|
|
|
link_to(s_('IssuableStatus|moved'), issue.moved_to, class: css_class)
|
|
|
|
elsif issue.duplicated? && can?(current_user, :read_issue, issue.duplicated_to)
|
|
|
|
link_to(s_('IssuableStatus|duplicated'), issue.duplicated_to, class: css_class)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def issue_closed_text(issue, current_user)
|
|
|
|
link = issue_closed_link(issue, current_user, css_class: 'text-white text-underline')
|
|
|
|
|
|
|
|
if link
|
|
|
|
s_('IssuableStatus|Closed (%{link})').html_safe % { link: link }
|
|
|
|
else
|
|
|
|
s_('IssuableStatus|Closed')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-23 14:09:46 -04:00
|
|
|
def show_moved_service_desk_issue_warning?(issue)
|
|
|
|
false
|
|
|
|
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
|
2019-09-13 09:26:31 -04:00
|
|
|
|
2019-11-20 19:06:02 -05:00
|
|
|
IssuesHelper.prepend_if_ee('EE::IssuesHelper')
|