debian-mirror-gitlab/app/views/shared/_label.html.haml

79 lines
4.8 KiB
Text
Raw Normal View History

2016-11-03 12:29:30 +05:30
- label_css_id = dom_id(label)
2017-08-17 22:00:37 +05:30
- status = label_subscription_status(label, @project).inquiry if current_user
2016-11-24 13:41:30 +05:30
- subject = local_assigns[:subject]
2017-09-10 17:25:29 +05:30
- toggle_subscription_path = toggle_subscription_label_path(label, @project) if current_user
2016-11-03 12:29:30 +05:30
2017-08-17 22:00:37 +05:30
%li{ id: label_css_id, data: { id: label.id } }
2016-11-03 12:29:30 +05:30
= render "shared/label_row", label: label
.visible-xs.visible-sm-inline-block.visible-md-inline-block.dropdown
2017-09-10 17:25:29 +05:30
%button.btn.btn-default.label-options-toggle{ type: 'button', data: { toggle: "dropdown" } }
2016-11-03 12:29:30 +05:30
Options
= icon('caret-down')
.dropdown-menu.dropdown-menu-align-right
%ul
%li
2016-11-24 13:41:30 +05:30
= link_to_label(label, subject: subject, type: :merge_request) do
2017-08-17 22:00:37 +05:30
view merge requests
2016-11-03 12:29:30 +05:30
%li
2016-11-24 13:41:30 +05:30
= link_to_label(label, subject: subject) do
2017-08-17 22:00:37 +05:30
view open issues
2017-09-10 17:25:29 +05:30
- if current_user
2017-08-17 22:00:37 +05:30
%li.label-subscription
2017-09-10 17:25:29 +05:30
- if can_subscribe_to_label_in_different_levels?(label)
%a.js-unsubscribe-button.label-subscribe-button{ role: 'button', href: '#', class: ('hidden' if status.unsubscribed?), data: { url: toggle_subscription_path } }
2017-08-17 22:00:37 +05:30
%span Unsubscribe
2017-09-10 17:25:29 +05:30
%a.js-subscribe-button.label-subscribe-button{ role: 'button', href: '#', class: ('hidden' unless status.unsubscribed?), data: { url: toggle_subscription_project_label_path(@project, label) } }
2017-08-17 22:00:37 +05:30
%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
2017-09-10 17:25:29 +05:30
- else
%a.js-subscribe-button.label-subscribe-button{ role: 'button', href: '#', data: { status: status, url: toggle_subscription_path } }
%span= label_subscription_toggle_button_text(label, @project)
2017-08-17 22:00:37 +05:30
2016-11-03 12:29:30 +05:30
- if can?(current_user, :admin_label, label)
%li
= link_to 'Edit', edit_label_path(label)
%li
2017-08-17 22:00:37 +05:30
= link_to 'Delete', destroy_label_path(label), title: 'Delete', method: :delete, data: {confirm: 'Remove this label? Are you sure?'}
2016-11-03 12:29:30 +05:30
.pull-right.hidden-xs.hidden-sm.hidden-md
2016-11-24 13:41:30 +05:30
= link_to_label(label, subject: subject, type: :merge_request, css_class: 'btn btn-transparent btn-action') do
2017-08-17 22:00:37 +05:30
view merge requests
2016-11-24 13:41:30 +05:30
= link_to_label(label, subject: subject, css_class: 'btn btn-transparent btn-action') do
2017-08-17 22:00:37 +05:30
view open issues
2017-09-10 17:25:29 +05:30
- if current_user
2017-08-17 22:00:37 +05:30
.label-subscription.inline
2017-09-10 17:25:29 +05:30
- if can_subscribe_to_label_in_different_levels?(label)
%button.js-unsubscribe-button.label-subscribe-button.btn.btn-default{ type: 'button', class: ('hidden' if status.unsubscribed?), data: { url: toggle_subscription_path } }
2017-08-17 22:00:37 +05:30
%span Unsubscribe
= icon('spinner spin', class: 'label-subscribe-button-loading')
2016-11-03 12:29:30 +05:30
2017-08-17 22:00:37 +05:30
.dropdown.dropdown-group-label{ class: ('hidden' unless status.unsubscribed?) }
%button.dropdown-menu-toggle{ type: 'button', 'data-toggle' => 'dropdown' }
%span Subscribe
= icon('chevron-down')
%ul.dropdown-menu
%li
2017-09-10 17:25:29 +05:30
%a.js-subscribe-button{ class: ('hidden' unless status.unsubscribed?), data: { url: toggle_subscription_project_label_path(@project, label) } }
2017-08-17 22:00:37 +05:30
Project level
2017-09-10 17:25:29 +05:30
%a.js-subscribe-button{ class: ('hidden' unless status.unsubscribed?), data: { url: toggle_subscription_group_label_path(label.group, label) } }
2017-08-17 22:00:37 +05:30
Group level
2017-09-10 17:25:29 +05:30
- else
%button.js-subscribe-button.label-subscribe-button.btn.btn-default{ type: 'button', data: { status: status, url: toggle_subscription_path } }
%span= label_subscription_toggle_button_text(label, @project)
= icon('spinner spin', class: 'label-subscribe-button-loading')
2016-11-03 12:29:30 +05:30
2017-09-10 17:25:29 +05:30
- if label.is_a?(ProjectLabel) && label.project.group && can?(current_user, :admin_label, label.project.group)
= link_to promote_project_label_path(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
2017-08-17 22:00:37 +05:30
%span.sr-only Promote to Group
= icon('level-up')
2016-11-03 12:29:30 +05:30
- if can?(current_user, :admin_label, label)
= link_to edit_label_path(label), title: "Edit", class: 'btn btn-transparent btn-action', data: {toggle: "tooltip"} do
%span.sr-only Edit
= icon('pencil-square-o')
2017-08-17 22:00:37 +05:30
= 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
2016-11-03 12:29:30 +05:30
%span.sr-only Delete
= icon('trash-o')