BigW Consortium Gitlab

_label.html.haml 5.13 KB
Newer Older
1
- label_css_id = dom_id(label)
2
- status = label_subscription_status(label, @project).inquiry if current_user
3
- subject = local_assigns[:subject]
4

5
%li{ id: label_css_id, data: { id: label.id } }
Tap committed
6
  = render "shared/label_row", label: label
7

Phil Hughes committed
8 9 10
  .visible-xs.visible-sm-inline-block.visible-md-inline-block.dropdown
    %button.btn.btn-default.label-options-toggle{ data: { toggle: "dropdown" } }
      Options
11
      = icon('caret-down')
Phil Hughes committed
12 13 14
    .dropdown-menu.dropdown-menu-align-right
      %ul
        %li
15
          = link_to_label(label, subject: subject, type: :merge_request) do
16
            view merge requests
Phil Hughes committed
17
        %li
18
          = link_to_label(label, subject: subject) do
19
            view open issues
20
        - if current_user && defined?(@project)
21
          %li.label-subscription
22
            - if label.is_a?(ProjectLabel)
23
              %a.js-subscribe-button.label-subscribe-button{ role: 'button', href: '#', data: { status: status, url: toggle_subscription_namespace_project_label_path(@project.namespace, @project, label) } }
24 25 26 27 28 29 30 31 32
                %span= label_subscription_toggle_button_text(label, @project)
            - else
              %a.js-unsubscribe-button.label-subscribe-button{ role: 'button', href: '#', class: ('hidden' if status.unsubscribed?), data: { url: group_label_unsubscribe_path(label, @project) } }
                %span Unsubscribe
              %a.js-subscribe-button.label-subscribe-button{ role: 'button', href: '#', class: ('hidden' unless status.unsubscribed?), data: { url: toggle_subscription_namespace_project_label_path(@project.namespace, @project, label) } }
                %span Subscribe at project level
              %a.js-subscribe-button.label-subscribe-button{ role: 'button', href: '#', class: ('hidden' unless status.unsubscribed?), data: { url: toggle_subscription_group_label_path(label.group, label) } }
                %span Subscribe at group level

33
        - if can?(current_user, :admin_label, label)
Phil Hughes committed
34
          %li
35
            = link_to 'Edit', edit_label_path(label)
Phil Hughes committed
36
          %li
37
            = link_to 'Delete', destroy_label_path(label), title: 'Delete', method: :delete, data: {confirm: 'Remove this label? Are you sure?'}
Tap committed
38

Phil Hughes committed
39
  .pull-right.hidden-xs.hidden-sm.hidden-md
40
    = link_to_label(label, subject: subject, type: :merge_request, css_class: 'btn btn-transparent btn-action') do
41
      view merge requests
42
    = link_to_label(label, subject: subject, css_class: 'btn btn-transparent btn-action') do
43
      view open issues
44

45
    - if current_user && defined?(@project)
46
      .label-subscription.inline
47
        - if label.is_a?(ProjectLabel)
48
          %button.js-subscribe-button.label-subscribe-button.btn.btn-default{ type: 'button', data: { status: status, url: toggle_subscription_namespace_project_label_path(@project.namespace, @project, label) } }
49 50 51
            %span= label_subscription_toggle_button_text(label, @project)
            = icon('spinner spin', class: 'label-subscribe-button-loading')
        - else
52
          %button.js-unsubscribe-button.label-subscribe-button.btn.btn-default{ type: 'button', class: ('hidden' if status.unsubscribed?), data: { url: group_label_unsubscribe_path(label, @project) } }
53 54 55 56
            %span Unsubscribe
            = icon('spinner spin', class: 'label-subscribe-button-loading')

          .dropdown.dropdown-group-label{ class: ('hidden' unless status.unsubscribed?) }
57
            %button.dropdown-menu-toggle{ type: 'button', 'data-toggle' => 'dropdown' }
58 59 60 61 62 63 64 65
              %span Subscribe
              = icon('chevron-down')
            %ul.dropdown-menu
              %li
                %a.js-subscribe-button{ data: { url: toggle_subscription_namespace_project_label_path(@project.namespace, @project, label) } }
                  Project level
                %a.js-subscribe-button{ data: { url: toggle_subscription_group_label_path(label.group, label) } }
                  Group level
66

67 68 69 70
    - if label.is_a?(ProjectLabel) && label.project.group && can?(current_user, :admin_group, label.project.group)
      = link_to promote_namespace_project_label_path(label.project.namespace, label.project, label), title: "Promote to Group Label", class: 'btn btn-transparent btn-action', data: {confirm: "Promoting this label will make this label available to all projects inside this group. Existing project labels with the same name will be merged. Are you sure?", toggle: "tooltip"}, method: :post do
        %span.sr-only Promote to Group
        = icon('level-up')
71
    - if can?(current_user, :admin_label, label)
72
      = link_to edit_label_path(label), title: "Edit", class: 'btn btn-transparent btn-action', data: {toggle: "tooltip"} do
Phil Hughes committed
73
        %span.sr-only Edit
Phil Hughes committed
74
        = icon('pencil-square-o')
75
      = link_to destroy_label_path(label), title: "Delete", class: 'btn btn-transparent btn-action remove-row', method: :delete, data: {confirm: label_deletion_confirm_text(label), toggle: "tooltip"} do
Phil Hughes committed
76
        %span.sr-only Delete
Phil Hughes committed
77
        = icon('trash-o')
78

79
  - if current_user && defined?(@project)
80 81
    - if label.is_a?(ProjectLabel)
      :javascript
82
        new gl.ProjectLabelSubscription('##{dom_id(label)} .label-subscription');
83 84 85
    - else
      :javascript
        new gl.GroupLabelSubscription('##{dom_id(label)} .label-subscription');