BigW Consortium Gitlab

_label.html.haml 3.03 KB
Newer Older
1
- label_css_id = dom_id(label)
Alfredo Sumaran committed
2
%li{id: label_css_id, data: { id: label.id } }
Tap committed
3
  = render "shared/label_row", label: label
4

Phil Hughes committed
5 6 7
  .visible-xs.visible-sm-inline-block.visible-md-inline-block.dropdown
    %button.btn.btn-default.label-options-toggle{ data: { toggle: "dropdown" } }
      Options
8
      = icon('caret-down')
Phil Hughes committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
    .dropdown-menu.dropdown-menu-align-right
      %ul
        %li
          = link_to_label(label, type: :merge_request) do
            = pluralize label.open_merge_requests_count, 'merge request'
        %li
          = link_to_label(label) do
            = pluralize label.open_issues_count(current_user), 'open issue'
        - if current_user
          %li.label-subscription{ data: { url: toggle_subscription_namespace_project_label_path(@project.namespace, @project, label) } }
            %a.js-subscribe-button.label-subscribe-button.subscription-status{ role: "button", href: "#", data: { toggle: "tooltip", status: label_subscription_status(label) } }
              %span= label_subscription_toggle_button_text(label)
        - if can? current_user, :admin_label, @project
          %li
            = link_to "Edit", edit_namespace_project_label_path(@project.namespace, @project, label)
          %li
            = link_to "Delete", namespace_project_label_path(@project.namespace, @project, label), title: "Delete", method: :delete, remote: true, data: {confirm: "Remove this label? Are you sure?"}
Tap committed
26

Phil Hughes committed
27 28 29 30 31
  .pull-right.hidden-xs.hidden-sm.hidden-md
    = link_to_label(label, type: :merge_request, css_class: 'btn btn-transparent btn-action') do
      = pluralize label.open_merge_requests_count, 'merge request'
    = link_to_label(label, css_class: 'btn btn-transparent btn-action') do
      = pluralize label.open_issues_count(current_user), 'open issue'
32

Phil Hughes committed
33 34
    - if current_user
      .label-subscription.inline{ data: { url: toggle_subscription_namespace_project_label_path(@project.namespace, @project, label) } }
Phil Hughes committed
35 36 37 38
        %button.js-subscribe-button.label-subscribe-button.btn.btn-transparent.btn-action.subscription-status{ type: "button", title: label_subscription_toggle_button_text(label), data: { toggle: "tooltip", status: label_subscription_status(label) } }
          %span.sr-only= label_subscription_toggle_button_text(label)
          = icon('eye', class: 'label-subscribe-button-icon')
          = icon('spinner spin', class: 'label-subscribe-button-loading')
39

Phil Hughes committed
40 41 42
    - if can? current_user, :admin_label, @project
      = link_to edit_namespace_project_label_path(@project.namespace, @project, label), title: "Edit", class: 'btn btn-transparent btn-action', data: {toggle: "tooltip"} do
        %span.sr-only Edit
Phil Hughes committed
43
        = icon('pencil-square-o')
Phil Hughes committed
44 45
      = link_to namespace_project_label_path(@project.namespace, @project, label), title: "Delete", class: 'btn btn-transparent btn-action remove-row', method: :delete, remote: true, data: {confirm: "Remove this label? Are you sure?", toggle: "tooltip"} do
        %span.sr-only Delete
Phil Hughes committed
46
        = icon('trash-o')
47

Phil Hughes committed
48 49 50
  - if current_user
    :javascript
      new Subscription('##{dom_id(label)} .label-subscription');