runners_helper.rb 590 Bytes
module Ci
  module RunnersHelper
    def runner_status_icon(runner)
      unless runner.contacted_at
        return content_tag :i, nil,
          class: "fa fa-warning-sign",
          title: "New runner. Has not connected yet"
      end

      status =
        if runner.active?
          runner.contacted_at > 3.hour.ago ? :online : :offline
        else
          :paused
        end

      content_tag :i, nil,
        class: "fa fa-circle runner-status-#{status}",
        title: "Runner is #{status}, last contact was #{time_ago_in_words(runner.contacted_at)} ago"
    end
  end
end