2015-09-23 06:18:16 -04:00
|
|
|
module CiStatusHelper
|
2016-06-03 10:27:50 -04:00
|
|
|
def ci_status_path(pipeline)
|
|
|
|
project = pipeline.project
|
2016-11-29 08:02:28 -05:00
|
|
|
namespace_project_pipeline_path(project.namespace, project, pipeline)
|
2016-04-13 09:58:22 -04:00
|
|
|
end
|
|
|
|
|
2016-12-08 05:03:01 -05:00
|
|
|
# Is used by Commit and Merge Request Widget
|
2015-12-02 08:59:25 -05:00
|
|
|
def ci_label_for_status(status)
|
2016-12-05 08:19:12 -05:00
|
|
|
if detailed_status?(status)
|
|
|
|
return status.label
|
|
|
|
end
|
|
|
|
|
2016-07-15 16:08:27 -04:00
|
|
|
case status
|
|
|
|
when 'success'
|
2015-12-02 08:59:25 -05:00
|
|
|
'passed'
|
2016-12-06 05:00:52 -05:00
|
|
|
when 'success_with_warnings'
|
|
|
|
'passed with warnings'
|
2015-12-02 08:59:25 -05:00
|
|
|
else
|
|
|
|
status
|
2015-09-29 10:26:40 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-15 17:48:43 -04:00
|
|
|
def ci_status_for_statuseable(subject)
|
|
|
|
status = subject.try(:status) || 'not found'
|
|
|
|
status.humanize
|
|
|
|
end
|
|
|
|
|
2015-09-29 10:26:40 -04:00
|
|
|
def ci_icon_for_status(status)
|
2016-12-06 05:05:01 -05:00
|
|
|
if detailed_status?(status)
|
|
|
|
return custom_icon(status.icon)
|
|
|
|
end
|
|
|
|
|
2015-09-29 10:26:40 -04:00
|
|
|
icon_name =
|
2016-12-06 05:05:01 -05:00
|
|
|
case status
|
|
|
|
when 'success'
|
|
|
|
'icon_status_success'
|
|
|
|
when 'success_with_warnings'
|
|
|
|
'icon_status_warning'
|
|
|
|
when 'failed'
|
|
|
|
'icon_status_failed'
|
|
|
|
when 'pending'
|
|
|
|
'icon_status_pending'
|
|
|
|
when 'running'
|
|
|
|
'icon_status_running'
|
|
|
|
when 'play'
|
|
|
|
'icon_play'
|
|
|
|
when 'created'
|
|
|
|
'icon_status_created'
|
|
|
|
when 'skipped'
|
|
|
|
'icon_status_skipped'
|
2015-09-29 10:26:40 -04:00
|
|
|
else
|
2016-12-06 05:05:01 -05:00
|
|
|
'icon_status_canceled'
|
2015-09-29 10:26:40 -04:00
|
|
|
end
|
|
|
|
|
2016-08-17 11:20:46 -04:00
|
|
|
custom_icon(icon_name)
|
2015-09-29 10:26:40 -04:00
|
|
|
end
|
2015-10-23 11:32:52 -04:00
|
|
|
|
2016-10-26 12:48:32 -04:00
|
|
|
def render_commit_status(commit, ref: nil, tooltip_placement: 'auto left')
|
2016-04-13 10:51:52 -04:00
|
|
|
project = commit.project
|
2016-10-26 12:48:32 -04:00
|
|
|
path = pipelines_namespace_project_commit_path(
|
|
|
|
project.namespace,
|
|
|
|
project,
|
|
|
|
commit)
|
|
|
|
|
|
|
|
render_status_with_link(
|
|
|
|
'commit',
|
2016-11-03 11:39:37 -04:00
|
|
|
commit.status(ref),
|
2016-10-26 12:48:32 -04:00
|
|
|
path,
|
|
|
|
tooltip_placement: tooltip_placement)
|
2016-04-13 10:51:52 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def render_pipeline_status(pipeline, tooltip_placement: 'auto left')
|
|
|
|
project = pipeline.project
|
|
|
|
path = namespace_project_pipeline_path(project.namespace, project, pipeline)
|
2016-08-17 07:08:45 -04:00
|
|
|
render_status_with_link('pipeline', pipeline.status, path, tooltip_placement: tooltip_placement)
|
2016-04-13 10:51:52 -04:00
|
|
|
end
|
|
|
|
|
2016-05-09 19:26:13 -04:00
|
|
|
def no_runners_for_project?(project)
|
|
|
|
project.runners.blank? &&
|
|
|
|
Ci::Runner.shared.blank?
|
|
|
|
end
|
|
|
|
|
2016-08-23 09:45:18 -04:00
|
|
|
def render_status_with_link(type, status, path = nil, tooltip_placement: 'auto left', cssclass: '', container: 'body')
|
2016-08-17 07:08:45 -04:00
|
|
|
klass = "ci-status-link ci-status-icon-#{status.dasherize} #{cssclass}"
|
|
|
|
title = "#{type.titleize}: #{ci_label_for_status(status)}"
|
2016-08-23 09:45:18 -04:00
|
|
|
data = { toggle: 'tooltip', placement: tooltip_placement, container: container }
|
2016-05-09 19:26:13 -04:00
|
|
|
|
2016-08-17 07:08:45 -04:00
|
|
|
if path
|
|
|
|
link_to ci_icon_for_status(status), path,
|
|
|
|
class: klass, title: title, data: data
|
|
|
|
else
|
|
|
|
content_tag :span, ci_icon_for_status(status),
|
|
|
|
class: klass, title: title, data: data
|
|
|
|
end
|
2015-10-23 11:32:52 -04:00
|
|
|
end
|
2016-12-05 08:19:12 -05:00
|
|
|
|
|
|
|
def detailed_status?(status)
|
|
|
|
status.respond_to?(:text) &&
|
|
|
|
status.respond_to?(:label) &&
|
|
|
|
status.respond_to?(:icon)
|
|
|
|
end
|
2015-09-23 06:18:16 -04:00
|
|
|
end
|