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

57 lines
1.4 KiB
Ruby
Raw Normal View History

module CiStatusHelper
2016-04-13 13:58:22 +00:00
def ci_status_path(ci_commit)
project = ci_commit.project
builds_namespace_project_commit_path(project.namespace, project, ci_commit.sha)
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
def render_ci_status(ci_commit, tooltip_placement: 'auto left')
2016-04-13 13:58:22 +00:00
# TODO: split this method into
# - render_commit_status
# - render_pipeline_status
2016-03-31 17:51:28 +00:00
link_to ci_icon_for_status(ci_commit.status),
2016-04-13 13:58:22 +00:00
ci_status_path(ci_commit),
class: "ci-status-link ci-status-icon-#{ci_commit.status.dasherize}",
2016-03-31 17:51:28 +00:00
title: "Build #{ci_label_for_status(ci_commit.status)}",
data: { toggle: 'tooltip', placement: tooltip_placement }
end
2015-12-04 11:55:23 +00:00
def no_runners_for_project?(project)
project.runners.blank? &&
2015-12-04 11:55:23 +00:00
Ci::Runner.shared.blank?
end
end