43 lines
1.8 KiB
Text
43 lines
1.8 KiB
Text
- issuable_type = issuable_sidebar[:type]
|
|
- signed_in = !!issuable_sidebar.dig(:current_user, :id)
|
|
|
|
#js-vue-sidebar-assignees{ data: { field: "#{issuable_type}", signed_in: signed_in } }
|
|
.title.hide-collapsed
|
|
= _('Assignee')
|
|
= icon('spinner spin')
|
|
|
|
.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: { avatar_url: assignee.avatar_url, name: assignee.name, username: assignee.username }
|
|
|
|
- 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' } }
|
|
|
|
- dropdown_options = assignees_dropdown_options(issuable_type)
|
|
- 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)
|
|
|
|
= dropdown_tag(title, options: options)
|