debian-mirror-gitlab/app/helpers/issues_helper.rb

158 lines
4.2 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
module IssuesHelper
2015-04-26 12:48:37 +05:30
def issue_css_classes(issue)
2018-12-05 23:21:45 +05:30
classes = ["issue"]
classes << "closed" if issue.closed?
2020-11-24 15:15:51 +05:30
classes << "today" if issue.new?
2019-09-30 21:07:59 +05:30
classes << "user-can-drag" if @sort == 'relative_position'
2018-12-05 23:21:45 +05:30
classes.join(' ')
2014-09-02 18:07:02 +05:30
end
2015-12-23 02:04:40 +05:30
def status_box_class(item)
2017-08-17 22:00:37 +05:30
if item.try(:expired?)
2015-12-23 02:04:40 +05:30
'status-box-expired'
2017-08-17 22:00:37 +05:30
elsif item.try(:merged?)
2018-03-17 18:26:18 +05:30
'status-box-mr-merged'
2014-09-02 18:07:02 +05:30
elsif item.closed?
2018-03-17 18:26:18 +05:30
'status-box-mr-closed'
2017-08-17 22:00:37 +05:30
elsif item.try(:upcoming?)
'status-box-upcoming'
2014-09-02 18:07:02 +05:30
else
2015-12-23 02:04:40 +05:30
'status-box-open'
2014-09-02 18:07:02 +05:30
end
end
2015-04-26 12:48:37 +05:30
2019-12-04 20:38:33 +05:30
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-04-02 18:10:28 +05:30
def issue_button_visibility(issue, closed)
2018-12-05 23:21:45 +05:30
return 'hidden' if issue_button_hidden?(issue, closed)
end
def issue_button_hidden?(issue, closed)
issue.closed? == closed || (!closed && issue.discussion_locked)
end
2016-06-02 11:05:42 +05:30
def confidential_icon(issue)
2020-10-24 23:57:45 +05:30
sprite_icon('eye-slash', css_class: 'gl-vertical-align-text-bottom') if issue.confidential?
2016-06-02 11:05:42 +05:30
end
2016-11-03 12:29:30 +05:30
def award_user_list(awards, current_user, limit: 10)
2016-09-29 09:46:39 +05:30
names = awards.map do |award|
award.user == current_user ? 'You' : award.user.name
end
current_user_name = names.delete('You')
2016-11-03 12:29:30 +05:30
names = names.insert(0, current_user_name).compact.first(limit)
2016-09-29 09:46:39 +05:30
names << "#{awards.size - names.size} more." if awards.size > names.size
names.to_sentence
2015-11-26 14:37:03 +05:30
end
2018-05-09 12:01:36 +05:30
def award_state_class(awardable, awards, current_user)
if !can?(current_user, :award_emoji, awardable)
2017-08-17 22:00:37 +05:30
"disabled"
elsif current_user && awards.find { |a| a.user_id == current_user.id }
2015-11-26 14:37:03 +05:30
"active"
else
""
end
end
def awards_sort(awards)
2018-03-17 18:26:18 +05:30
awards.sort_by do |award, award_emojis|
if award == "thumbsup"
0
elsif award == "thumbsdown"
1
else
2
end
end.to_h
end
2017-08-17 22:00:37 +05:30
def link_to_discussions_to_resolve(merge_request, single_discussion = nil)
2018-12-05 23:21:45 +05:30
link_text = [merge_request.to_reference]
link_text << "(discussion #{single_discussion.first_note.id})" if single_discussion
2017-08-17 22:00:37 +05:30
path = if single_discussion
Gitlab::UrlBuilder.build(single_discussion.first_note)
else
project = merge_request.project
2017-09-10 17:25:29 +05:30
project_merge_request_path(project, merge_request)
2017-08-17 22:00:37 +05:30
end
2018-12-05 23:21:45 +05:30
link_to link_text.join(' '), path
2017-08-17 22:00:37 +05:30
end
2018-05-09 12:01:36 +05:30
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-09-30 21:07:59 +05:30
def show_new_branch_button?
can_create_confidential_merge_request? || !@issue.confidential?
end
def can_create_confidential_merge_request?
@issue.confidential? && !@project.private? &&
can?(current_user, :create_merge_request_in, @project)
end
2019-12-04 20:38:33 +05:30
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-05-24 23:13:21 +05:30
def show_moved_service_desk_issue_warning?(issue)
2020-07-28 23:09:34 +05:30
return false unless issue.moved_from
return false unless issue.from_service_desk?
issue.moved_from.project.service_desk_enabled? && !issue.project.service_desk_enabled?
2020-05-24 23:13:21 +05:30
end
2021-01-03 14:25:43 +05:30
def use_startup_call?
request.query_parameters.empty? && @sort == 'created_date'
end
def startup_call_params
{
state: 'opened',
with_labels_details: 'true',
page: 1,
per_page: 20,
order_by: 'created_at',
sort: 'desc'
}
end
2014-09-02 18:07:02 +05:30
end
2019-12-04 20:38:33 +05:30
2020-01-01 13:55:28 +05:30
IssuesHelper.prepend_if_ee('EE::IssuesHelper')