summaryrefslogtreecommitdiff
path: root/app/views/shared/issuable/_sidebar_assignees.html.haml
blob: 86369b32e98cfad97a3262f7d34d21bed6c2f3de (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
- issuable_type = issuable_sidebar[:type]
- dropdown_options = assignees_dropdown_options(issuable_type)

#js-vue-sidebar-assignees{ data: { field: issuable_type,
  signed_in: signed_in,
  max_assignees: dropdown_options[:data][:"max-select"],
  directly_invite_members: directly_invite_members? } }
  .title.hide-collapsed
    = _('Assignee')
    = loading_icon(css_class: 'gl-vertical-align-text-bottom')

.js-sidebar-assignee-data.selectbox.hide-collapsed
  - if assignees.none?
    = hidden_field_tag "#{issuable_type}[assignee_ids][]", 0, id: nil
  - else
    - assignees.each do |assignee|
      = hidden_field_tag "#{issuable_type}[assignee_ids][]", assignee.id, id: nil, data: assignee_sidebar_data(assignee, merge_request: @merge_request)

  - options = { toggle_class: 'js-user-search js-author-search',
    title: _('Assign to'),
    filter: true,
    dropdown_class: 'dropdown-menu-user dropdown-menu-selectable dropdown-menu-author',
    placeholder: _('Search users'),
    data: { first_user: issuable_sidebar.dig(:current_user, :username),
      current_user: true,
      iid: issuable_sidebar[:iid],
      issuable_type: issuable_type,
      project_id: issuable_sidebar[:project_id],
      author_id: issuable_sidebar[:author_id],
      field_name: "#{issuable_type}[assignee_ids][]",
      issue_update: issuable_sidebar[:issuable_json_path],
      ability_name: issuable_type,
      null_user: true,
      display: 'static' } }

  - title = dropdown_options[:title]
  - options[:toggle_class] += ' js-multiselect js-save-user-data'
  - data = { field_name: "#{issuable_type}[assignee_ids][]" }
  - data[:multi_select] = true
  - data['dropdown-title'] = title
  - data['dropdown-header'] = dropdown_options[:data][:'dropdown-header']
  - data['max-select'] = dropdown_options[:data][:'max-select'] if dropdown_options[:data][:'max-select']
  - options[:data].merge!(data)

  - if directly_invite_members?
    - options[:dropdown_class] += ' dropdown-extended-height'
    - options[:footer_content] = true
    - options[:wrapper_class] = 'js-sidebar-assignee-dropdown'
    - options[:toggle_class] += ' js-invite-members-track'
    - data['track-event'] = 'show_invite_members'
    - options[:data].merge!(data)
    - invite_text = _('Invite Members')
    - track_label = 'edit_assignee'

    = dropdown_tag(title, options: options) do
      %ul.dropdown-footer-list
        %li
          .js-invite-members-trigger{ data: { trigger_element: 'anchor',
            display_text: invite_text,
            event: 'click_invite_members',
            label: track_label } }
  - else
    = dropdown_tag(title, options: options)