Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_label.html.haml « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4ef0a52eba2589c79f09c04faeefc4e89a69800 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
- label = label.present(issuable_subject: local_assigns[:subject])
- label_css_id = dom_id(label)
- status = label_subscription_status(label, @project).inquiry if current_user
- use_label_priority = local_assigns.fetch(:use_label_priority, false)
- force_priority = local_assigns.fetch(:force_priority, use_label_priority ? label.priority.present? : false)
- toggle_subscription_path = toggle_subscription_label_path(label, @project) if current_user
- tooltip_title = label_status_tooltip(label, status) if status

%li.label-list-item{ id: label_css_id, data: { id: label.id } }
  = render "shared/label_row", label: label, force_priority: force_priority
  %ul.label-actions-list
    - if can?(current_user, :admin_label, @project)
      %li.inline.js-toggle-priority{ data: { url: remove_priority_project_label_path(@project, label),
        dom_id: dom_id(label), type: label.type } }
        %button.add-priority.btn.gl-button.btn-default-tertiary.btn-sm.has-tooltip.gl-ml-3{ title: _('Prioritize'), type: 'button', data: { placement: 'bottom' }, aria_label: _('Prioritize label') }
          = sprite_icon('star-o')
        %button.remove-priority.btn.gl-button.btn-default-tertiary.btn-sm.has-tooltip.gl-ml-3{ title: _('Remove priority'), type: 'button', data: { placement: 'bottom' }, aria_label: _('Deprioritize label') }
          = sprite_icon('star')
    - if can?(current_user, :admin_label, label)
      %li.inline
        = link_to label.edit_path, class: 'btn gl-button btn-default-tertiary btn-sm edit has-tooltip', title: _('Edit'), data: { placement: 'bottom' }, aria_label: _('Edit') do
          = sprite_icon('pencil')
    - if can?(current_user, :admin_label, label)
      %li.inline
        .dropdown
          %button{ type: 'button', class: 'btn gl-button btn-default-tertiary btn-sm js-label-options-dropdown', data: { toggle: 'dropdown' }, aria_label: _('Label actions dropdown') }
            = sprite_icon('ellipsis_v')
          .dropdown-menu.dropdown-open-left
            %ul
              - if label.project_label? && label.project.group && can?(current_user, :admin_label, label.project.group)
                %li
                  %button.js-promote-project-label-button.gl-button.btn.btn-default-tertiary{ disabled: true, type: 'button',
                    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 } }
                    = _('Promote to group label')
              %li
                %span
                  %button.text-danger.js-delete-label-modal-button{ type: 'button', data: { label_name: label.name, subject_name: label.subject_name, destroy_path: label.destroy_path } }
                    = _('Delete')
    - if current_user
      %li.inline.label-subscription
        - if label.can_subscribe_to_label_in_different_levels?
          %button.js-unsubscribe-button.gl-button.label-subscribe-button.btn.btn-default.gl-ml-3{ class: ('hidden' if status.unsubscribed?), data: { url: toggle_subscription_path, toggle: 'tooltip' }, title: tooltip_title }
            %span= _('Unsubscribe')
          .dropdown.dropdown-group-label{ class: ('hidden' unless status.unsubscribed?) }
            %button.gl-button.label-subscribe-button.btn.btn-default.gl-ml-3{ data: { toggle: 'dropdown' } }
              %span
                = _('Subscribe')
                = sprite_icon('chevron-down')
            .dropdown-menu.dropdown-open-left
              %ul
                %li
                  %button.js-subscribe-button.label-subscribe-button.gl-button.btn.btn-default{ class: ('hidden' unless status.unsubscribed?), data: { status: status, url: toggle_subscription_project_label_path(@project, label) } }
                    %span= _('Subscribe at project level')
                %li
                  %button.js-subscribe-button.js-group-level.label-subscribe-button.gl-button.btn.btn-default{ class: ('hidden' unless status.unsubscribed?), data: { status: status, url: toggle_subscription_group_label_path(label.group, label) } }
                    %span= _('Subscribe at group level')
        - else
          %button.gl-button.js-subscribe-button.label-subscribe-button.btn.btn-default.gl-ml-3{ data: { status: status, url: toggle_subscription_path, toggle: 'tooltip' }, title: tooltip_title }
            %span= label_subscription_toggle_button_text(label, @project)