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
|
|
|
|
builds_namespace_project_commit_path(project.namespace, project, pipeline.sha)
|
2016-04-13 09:58:22 -04:00
|
|
|
end
|
|
|
|
|
2016-03-15 09:26:15 -04:00
|
|
|
def ci_status_with_icon(status, target = nil)
|
|
|
|
content = ci_icon_for_status(status) + ' '.html_safe + ci_label_for_status(status)
|
2016-03-15 11:08:32 -04:00
|
|
|
klass = "ci-status ci-#{status}"
|
2016-03-15 09:26:15 -04:00
|
|
|
if target
|
2016-03-15 11:08:32 -04:00
|
|
|
link_to content, target, class: klass
|
2016-03-15 09:26:15 -04:00
|
|
|
else
|
2016-03-15 11:08:32 -04:00
|
|
|
content_tag :span, content, class: klass
|
2015-12-02 08:59:25 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def ci_label_for_status(status)
|
2016-07-15 16:08:27 -04:00
|
|
|
case status
|
|
|
|
when 'success'
|
2015-12-02 08:59:25 -05:00
|
|
|
'passed'
|
2016-07-15 16:08:27 -04:00
|
|
|
when 'success_with_warnings'
|
2016-06-29 13:06:41 -04:00
|
|
|
'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)
|
|
|
|
icon_name =
|
|
|
|
case status
|
|
|
|
when 'success'
|
2016-07-19 09:47:26 -04:00
|
|
|
'icon_status_success'
|
2016-06-29 13:06:41 -04:00
|
|
|
when 'success_with_warnings'
|
2016-07-19 09:47:26 -04:00
|
|
|
'icon_status_warning'
|
2015-09-29 10:26:40 -04:00
|
|
|
when 'failed'
|
2016-07-19 09:47:26 -04:00
|
|
|
'icon_status_failed'
|
2016-07-12 16:58:26 -04:00
|
|
|
when 'pending'
|
2016-07-19 09:47:26 -04:00
|
|
|
'icon_status_pending'
|
2016-07-12 16:58:26 -04:00
|
|
|
when 'running'
|
2016-07-19 09:47:26 -04:00
|
|
|
'icon_status_running'
|
2016-08-17 07:08:45 -04:00
|
|
|
when 'play'
|
2016-08-18 10:18:56 -04:00
|
|
|
'icon_play'
|
2016-08-17 07:08:45 -04:00
|
|
|
when 'created'
|
2016-08-30 12:55:57 -04:00
|
|
|
'icon_status_created'
|
2015-09-29 10:26:40 -04:00
|
|
|
else
|
2016-07-19 09:47:26 -04:00
|
|
|
'icon_status_cancel'
|
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-07-21 10:37:31 -04:00
|
|
|
def render_commit_status(commit, tooltip_placement: 'auto left')
|
2016-04-13 10:51:52 -04:00
|
|
|
project = commit.project
|
2016-09-13 20:49:41 -04:00
|
|
|
path = pipelines_namespace_project_commit_path(project.namespace, project, commit)
|
2016-08-17 07:08:45 -04:00
|
|
|
render_status_with_link('commit', commit.status, 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
|
2015-09-23 06:18:16 -04:00
|
|
|
end
|