summaryrefslogtreecommitdiff
path: root/app/views/projects/issues/_merge_requests_status.html.haml
blob: d2f47b383f7d778562521ef8437d9a8d2321e96a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

- if merge_request.merged?
  - mr_status_date = merge_request.merged_at
  - mr_status_title = 'Merged'
  - mr_status_icon = 'merge'
  - mr_status_class = 'merged'
- elsif merge_request.closed?
  - mr_status_date = merge_request.closed_event&.created_at
  - mr_status_title = 'Closed'
  - mr_status_icon = 'issue-close'
  - mr_status_class = 'closed'
- else
  - mr_status_date = merge_request.created_at
  - mr_status_title = 'Opened'
  - mr_status_icon = 'issue-open-m'
  - mr_status_class = 'open'

- mr_status_tooltip = "<div class=\"bold mb-1\">#{mr_status_title}</div><span class=\"text-tertiary\">#{l(mr_status_date.to_time, format: :timeago_tooltip)}</span>"

%span.suggestion-help-hover{ class: css_class, data: { toggle: 'tooltip', placement: 'bottom', html: 'true', title:  mr_status_tooltip } }
  = sprite_icon(mr_status_icon, size: 16, css_class: "merge-request-status #{mr_status_class}")