summaryrefslogtreecommitdiff
path: root/app/views/projects/stage/_graph.html.haml
blob: 745b6d143f48e6fba96abe0eeb37d2d8a48f948a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- stage = local_assigns.fetch(:stage)
- statuses = stage.statuses.latest
- status_groups = statuses.sort_by(&:name).group_by(&:group_name)
%li.stage-column
  .stage-name
    %a{ name: stage.name }
    = stage.name.titleize
  .builds-container
    %ul
      - status_groups.each do |group_name, grouped_statuses|
        - if grouped_statuses.one?
          - status = grouped_statuses.first
          - is_playable = status.playable? && can?(current_user, :update_build, @project)
          %li.build{ class: ("playable" if is_playable) }
            .curve
            .build-content
              = render 'ci/status/icon_with_name_and_action', subject: status
        - else
          %li.build
            .curve
            .dropdown.inline.build-content
              = render 'projects/stage/in_stage_group', name: group_name, subject: grouped_statuses