78 lines
2.7 KiB
Ruby
78 lines
2.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Ci
|
|
module RunnersHelper
|
|
include IconsHelper
|
|
|
|
def runner_status_icon(runner, size: 16, icon_class: '')
|
|
status = runner.status
|
|
|
|
title = ''
|
|
icon = 'warning-solid'
|
|
span_class = ''
|
|
|
|
case status
|
|
when :not_connected
|
|
title = s_("Runners|New runner, has not connected yet")
|
|
icon = 'warning-solid'
|
|
when :online
|
|
title = s_("Runners|Runner is online, last contact was %{runner_contact} ago") % { runner_contact: time_ago_in_words(runner.contacted_at) }
|
|
icon = 'status-active'
|
|
span_class = 'gl-text-green-500'
|
|
when :offline
|
|
title = s_("Runners|Runner is offline, last contact was %{runner_contact} ago") % { runner_contact: time_ago_in_words(runner.contacted_at) }
|
|
icon = 'status-failed'
|
|
span_class = 'gl-text-red-500'
|
|
when :paused
|
|
title = s_("Runners|Runner is paused, last contact was %{runner_contact} ago") % { runner_contact: time_ago_in_words(runner.contacted_at) }
|
|
icon = 'status-paused'
|
|
span_class = 'gl-text-gray-600'
|
|
end
|
|
|
|
content_tag(:span, class: span_class, title: title, data: { toggle: 'tooltip', container: 'body', testid: 'runner_status_icon', qa_selector: "runner_status_#{status}_content" }) do
|
|
sprite_icon(icon, size: size, css_class: icon_class)
|
|
end
|
|
end
|
|
|
|
def runner_link(runner)
|
|
display_name = truncate(runner.display_name, length: 15)
|
|
id = "\##{runner.id}"
|
|
|
|
if current_user && current_user.admin
|
|
link_to admin_runner_path(runner) do
|
|
display_name + id
|
|
end
|
|
else
|
|
display_name + id
|
|
end
|
|
end
|
|
|
|
# Due to inability of performing sorting of runners by cached "contacted_at" values we have to show uncached values if sorting by "contacted_asc" is requested.
|
|
# Please refer to the following issue for more details: https://gitlab.com/gitlab-org/gitlab-foss/issues/55920
|
|
def runner_contacted_at(runner)
|
|
if params[:sort] == 'contacted_asc'
|
|
runner.uncached_contacted_at
|
|
else
|
|
runner.contacted_at
|
|
end
|
|
end
|
|
|
|
def group_shared_runners_settings_data(group)
|
|
{
|
|
update_path: api_v4_groups_path(id: group.id),
|
|
shared_runners_availability: group.shared_runners_setting,
|
|
parent_shared_runners_availability: group.parent&.shared_runners_setting
|
|
}
|
|
end
|
|
|
|
def toggle_shared_runners_settings_data(project)
|
|
{
|
|
is_enabled: "#{project.shared_runners_enabled?}",
|
|
is_disabled_and_unoverridable: "#{project.group&.shared_runners_setting == 'disabled_and_unoverridable'}",
|
|
update_path: toggle_shared_runners_project_runners_path(project)
|
|
}
|
|
end
|
|
end
|
|
end
|
|
|
|
Ci::RunnersHelper.prepend_if_ee('EE::Ci::RunnersHelper')
|