summaryrefslogtreecommitdiff
path: root/app/helpers/runners_helper.rb
blob: 5afebab88e1bfdda1c37a113b4dacf4bb1419c6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module RunnersHelper
  def runner_status_icon(runner)
    status = runner.status
    case status
    when :not_connected
      content_tag :i, nil,
                  class: "fa fa-warning",
                  title: "New runner. Has not connected yet"

    when :online, :offline, :paused
      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