gitlab-org--gitlab-foss/app/helpers/ci_status_helper.rb

68 lines
1.9 KiB
Ruby
Raw Normal View History

module CiStatusHelper
def ci_status_path(pipeline)
project = pipeline.project
builds_namespace_project_commit_path(project.namespace, project, pipeline.sha)
2016-04-13 13:58:22 +00:00
end
def ci_status_with_icon(status, target = nil)
content = ci_icon_for_status(status) + ' '.html_safe + ci_label_for_status(status)
2016-03-15 15:08:32 +00:00
klass = "ci-status ci-#{status}"
if target
2016-03-15 15:08:32 +00:00
link_to content, target, class: klass
else
2016-03-15 15:08:32 +00:00
content_tag :span, content, class: klass
end
end
def ci_label_for_status(status)
if status == 'success'
'passed'
else
status
end
end
def ci_icon_for_status(status)
icon_name =
case status
when 'success'
'check'
when 'failed'
'close'
when 'running', 'pending'
'clock-o'
else
'circle'
end
icon(icon_name + ' fw')
end
2016-05-24 07:28:18 +00:00
def render_commit_status(commit, tooltip_placement: 'auto left', cssclass: '')
2016-04-13 14:51:52 +00:00
project = commit.project
path = builds_namespace_project_commit_path(project.namespace, project, commit)
2016-05-24 07:28:18 +00:00
render_status_with_link('commit', commit.status, path, tooltip_placement, cssclass: cssclass)
2016-04-13 14:51:52 +00:00
end
def render_pipeline_status(pipeline, tooltip_placement: 'auto left')
project = pipeline.project
path = namespace_project_pipeline_path(project.namespace, project, pipeline)
render_status_with_link('pipeline', pipeline.status, path, tooltip_placement)
end
2016-05-09 23:26:13 +00:00
def no_runners_for_project?(project)
project.runners.blank? &&
Ci::Runner.shared.blank?
end
private
2016-05-24 07:28:18 +00:00
def render_status_with_link(type, status, path, tooltip_placement, cssclass: '')
2016-04-13 14:51:52 +00:00
link_to ci_icon_for_status(status),
path,
2016-05-24 07:28:18 +00:00
class: "ci-status-link ci-status-icon-#{status.dasherize} #{cssclass}",
2016-04-13 14:51:52 +00:00
title: "#{type.titleize}: #{ci_label_for_status(status)}",
data: { toggle: 'tooltip', placement: tooltip_placement }
end
end