gitlab-org--gitlab-foss/app/views/shared/_label.html.haml

66 lines
3.9 KiB
Plaintext
Raw Normal View History

2016-05-02 23:19:46 +00:00
- label_css_id = dom_id(label)
- status = label_subscription_status(label, @project).inquiry if current_user
- subject = local_assigns[:subject]
- toggle_subscription_path = toggle_subscription_label_path(label, @project) if current_user
- show_label_merge_requests_link = show_label_issuables_link?(label, :merge_requests, project: @project)
- show_label_issues_link = show_label_issuables_link?(label, :issues, project: @project)
2018-04-19 02:44:53 +00:00
%li.label-list-item{ class: ('no-hand' unless label.priority?), id: label_css_id, data: { id: label.id } }
2016-02-19 05:34:45 +00:00
= render "shared/label_row", label: label
%ul.label-actions-list
2018-04-18 23:09:44 +00:00
%li.inline
2018-04-19 02:44:53 +00:00
.label-badge.label-badge-gray= label.model_name.human.capitalize
2018-04-18 23:09:44 +00:00
- if can?(current_user, :admin_label, @project)
%li.inline.js-toggle-priority.toggle-priority{ data: { url: remove_priority_project_label_path(@project, label),
dom_id: dom_id(label), type: label.type } }
%button.add-priority.btn.has-tooltip{ title: 'Prioritize', type: 'button', :'data-placement' => 'top' }
= icon('star-o')
%button.remove-priority.btn.has-tooltip{ title: 'Remove priority', type: 'button', :'data-placement' => 'top' }
= icon('star')
%li.inline
= link_to edit_label_path(label) do
= icon('pencil')
%li.inline
.dropdown
2018-04-19 02:44:53 +00:00
%button{ type: 'button', class: 'btn btn-transparent js-label-options-dropdown', data: { toggle: 'dropdown' } }
2018-04-18 23:09:44 +00:00
= custom_icon('ellipsis_v')
.dropdown-menu.dropdown-menu-align-right
%ul
- if label.is_a?(ProjectLabel) && label.project.group && can?(current_user, :admin_label, label.project.group)
%li
2018-04-19 02:44:53 +00:00
%button.js-promote-project-label-button.btn.btn-transparent.btn-action{ disabled: true, type: 'button',
2018-04-18 23:09:44 +00:00
data: { url: promote_project_label_path(label.project, label),
label_title: label.title,
label_color: label.color,
label_text_color: label.text_color,
group_name: label.project.group.name,
target: '#promote-label-modal',
container: 'body',
toggle: 'modal' } }
2018-04-19 02:44:53 +00:00
Promote to group label
%li
= link_to 'Delete', destroy_label_path(label), title: 'Delete', method: :delete, data: { confirm: 'Remove this label? Are you sure?' }, class: 'text-danger'
- if current_user
2018-04-18 23:09:44 +00:00
%li.inline.label-subscription
- if can_subscribe_to_label_in_different_levels?(label)
2018-04-18 23:09:44 +00:00
%button.js-unsubscribe-button.label-subscribe-button.btn.btn-default{ class: ('hidden' if status.unsubscribed?), data: { url: toggle_subscription_path } }
%span Unsubscribe
2018-04-19 02:44:53 +00:00
.dropdown{ class: ('hidden' unless status.unsubscribed?) }
%button.label-subscribe-button.btn.btn-default{ data: { toggle: 'dropdown' } }
%span
Subscribe
= icon('chevron-down')
.dropdown-menu.dropdown-menu-align-right
%ul
%li
%button.js-subscribe-button.label-subscribe-button.btn.btn-default{ class: ('hidden' unless status.unsubscribed?), data: { url: toggle_subscription_project_label_path(@project, label) } }
%span Subscribe at project level
%li
%button.js-subscribe-button.label-subscribe-button.btn.btn-default{ class: ('hidden' unless status.unsubscribed?), data: { url: toggle_subscription_group_label_path(label.group, label) } }
%span Subscribe at group level
- else
2018-04-18 23:09:44 +00:00
%button.js-subscribe-button.label-subscribe-button.btn.btn-default{ data: { status: status, url: toggle_subscription_path } }
%span= label_subscription_toggle_button_text(label, @project)
2018-01-26 22:42:42 +00:00
= render 'shared/delete_label_modal', label: label