summaryrefslogtreecommitdiff
path: root/app/views/ci/status/_graph_badge.html.haml
blob: 839b4334713f379499fca6529247dc8933c18289 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
-# Renders the graph node with both the status icon, status name and action icon

- detailed_status = subject.detailed_status(current_user)
- details_path = detailed_status.details_path if detailed_status.has_details?
- klass = "ci-status-icon ci-status-icon-#{detailed_status}"

- if details_path
  = link_to details_path, data: { toggle: 'tooltip', title: "#{subject.name} - #{detailed_status}" } do
    %span{ class: klass }= custom_icon(detailed_status.icon)
    .ci-status-text= subject.name
- else
  %span{ class: klass }= custom_icon(detailed_status.icon)
  .ci-status-text= subject.name

- if detailed_status.has_action?
  = link_to detailed_status.action_path, method: detailed_status.action_method,
    title: "#{subject.name}: #{detailed_status.action_title}", class: 'ci-action-icon-container' do
    %i.ci-action-icon-wrapper
      = icon(detailed_status.action_icon, class: detailed_status.action_class)