summaryrefslogtreecommitdiff
path: root/app/views/ci/status/_badge.html.haml
blob: e3b409dea762e840e9c0b94b538da748ba4f978c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- status = local_assigns.fetch(:status)
- link   = local_assigns.fetch(:link, true)
- title  = local_assigns.fetch(:title, nil)
- css_classes = "gl-display-inline-flex gl-align-items-center gl-gap-2 gl-line-height-0 gl-px-3 gl-py-2 gl-rounded-base ci-status ci-#{status.group} #{'has-tooltip' if title.present?}"

- if link && status.has_details?
  = link_to status.details_path, class: css_classes, title: title, data: { html: title.present? } do
    = sprite_icon(status.icon)
    = status.text
- else
  %span{ class: css_classes, title: title, data: { html: title.present? } }
    = sprite_icon(status.icon)
    = status.text