Merge branch '31057-unnecessary-padding-along-left-side-of-assignees-dropdown' into 'master'
Resolve "Unnecessary padding along left side of assignees dropdown" Closes #31057 See merge request !10767
This commit is contained in:
commit
25094fa5de
8 changed files with 68 additions and 14 deletions
|
@ -27,6 +27,9 @@ gl.issueBoards.BoardSidebar = Vue.extend({
|
|||
computed: {
|
||||
showSidebar () {
|
||||
return Object.keys(this.issue).length;
|
||||
},
|
||||
assigneeId() {
|
||||
return this.issue.assignee ? this.issue.assignee.id : 0;
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
$els.each((function(_this) {
|
||||
return function(i, dropdown) {
|
||||
var options = {};
|
||||
var $block, $collapsedSidebar, $dropdown, $loading, $selectbox, $value, abilityName, assignTo, assigneeTemplate, collapsedAssigneeTemplate, defaultLabel, firstUser, issueURL, selectedId, showAnyUser, showNullUser, showMenuAbove;
|
||||
var $block, $collapsedSidebar, $dropdown, $loading, $selectbox, $value, abilityName, assignTo, assigneeTemplate, collapsedAssigneeTemplate, defaultLabel, defaultNullUser, firstUser, issueURL, selectedId, selectedIdDefault, showAnyUser, showNullUser, showMenuAbove;
|
||||
$dropdown = $(dropdown);
|
||||
options.projectId = $dropdown.data('project-id');
|
||||
options.groupId = $dropdown.data('group-id');
|
||||
|
@ -38,11 +38,11 @@
|
|||
options.todoFilter = $dropdown.data('todo-filter');
|
||||
options.todoStateFilter = $dropdown.data('todo-state-filter');
|
||||
showNullUser = $dropdown.data('null-user');
|
||||
defaultNullUser = $dropdown.data('null-user-default');
|
||||
showMenuAbove = $dropdown.data('showMenuAbove');
|
||||
showAnyUser = $dropdown.data('any-user');
|
||||
firstUser = $dropdown.data('first-user');
|
||||
options.authorId = $dropdown.data('author-id');
|
||||
selectedId = $dropdown.data('selected');
|
||||
defaultLabel = $dropdown.data('default-label');
|
||||
issueURL = $dropdown.data('issueUpdate');
|
||||
$selectbox = $dropdown.closest('.selectbox');
|
||||
|
@ -51,6 +51,8 @@
|
|||
$value = $block.find('.value');
|
||||
$collapsedSidebar = $block.find('.sidebar-collapsed-user');
|
||||
$loading = $block.find('.block-loading').fadeOut();
|
||||
selectedIdDefault = (defaultNullUser && showNullUser) ? 0 : null;
|
||||
selectedId = $dropdown.data('selected') || selectedIdDefault;
|
||||
|
||||
var updateIssueBoardsIssue = function () {
|
||||
$loading.removeClass('hidden').fadeIn();
|
||||
|
@ -186,12 +188,14 @@
|
|||
fieldName: $dropdown.data('field-name'),
|
||||
toggleLabel: function(selected, el) {
|
||||
if (selected && 'id' in selected && $(el).hasClass('is-active')) {
|
||||
$dropdown.find('.dropdown-toggle-text').removeClass('is-default');
|
||||
if (selected.text) {
|
||||
return selected.text;
|
||||
} else {
|
||||
return selected.name;
|
||||
}
|
||||
} else {
|
||||
$dropdown.find('.dropdown-toggle-text').addClass('is-default');
|
||||
return defaultLabel;
|
||||
}
|
||||
},
|
||||
|
@ -204,13 +208,14 @@
|
|||
},
|
||||
vue: $dropdown.hasClass('js-issue-board-sidebar'),
|
||||
clicked: function(user, $el, e) {
|
||||
var isIssueIndex, isMRIndex, page, selected;
|
||||
var isIssueIndex, isMRIndex, page, selected, isSelecting;
|
||||
page = $('body').data('page');
|
||||
isIssueIndex = page === 'projects:issues:index';
|
||||
isMRIndex = (page === page && page === 'projects:merge_requests:index');
|
||||
isSelecting = (user.id !== selectedId);
|
||||
selectedId = isSelecting ? user.id : selectedIdDefault;
|
||||
if ($dropdown.hasClass('js-filter-bulk-update') || $dropdown.hasClass('js-issuable-form-dropdown')) {
|
||||
e.preventDefault();
|
||||
selectedId = user.id;
|
||||
if (selectedId === gon.current_user_id) {
|
||||
$('.assign-to-me-link').hide();
|
||||
} else {
|
||||
|
@ -221,12 +226,11 @@
|
|||
if ($el.closest('.add-issues-modal').length) {
|
||||
gl.issueBoards.ModalStore.store.filter[$dropdown.data('field-name')] = user.id;
|
||||
} else if ($dropdown.hasClass('js-filter-submit') && (isIssueIndex || isMRIndex)) {
|
||||
selectedId = user.id;
|
||||
return Issuable.filterResults($dropdown.closest('form'));
|
||||
} else if ($dropdown.hasClass('js-filter-submit')) {
|
||||
return $dropdown.closest('form').submit();
|
||||
} else if ($dropdown.hasClass('js-issue-board-sidebar')) {
|
||||
if (user.id) {
|
||||
if (user.id && isSelecting) {
|
||||
gl.issueBoards.boardStoreIssueSet('assignee', new ListUser({
|
||||
id: user.id,
|
||||
username: user.username,
|
||||
|
@ -248,6 +252,9 @@
|
|||
},
|
||||
opened: function(e) {
|
||||
const $el = $(e.currentTarget);
|
||||
if ($dropdown.hasClass('js-issue-board-sidebar')) {
|
||||
selectedId = parseInt($dropdown[0].dataset.selected, 10) || selectedIdDefault;
|
||||
}
|
||||
$el.find('.is-active').removeClass('is-active');
|
||||
$el.find(`li[data-user-id="${selectedId}"] .dropdown-menu-user-link`).addClass('is-active');
|
||||
},
|
||||
|
|
|
@ -390,7 +390,8 @@
|
|||
&::before {
|
||||
position: absolute;
|
||||
left: 6px;
|
||||
top: 6px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
font: normal normal normal 14px/1 FontAwesome;
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
|
|
|
@ -28,8 +28,9 @@
|
|||
":value" => "issue.assignee.id",
|
||||
"v-if" => "issue.assignee" }
|
||||
.dropdown
|
||||
%button.dropdown-menu-toggle.js-user-search.js-author-search.js-issue-board-sidebar{ type: "button", data: { toggle: "dropdown", field_name: "issue[assignee_id]", first_user: (current_user.username if current_user), current_user: "true", project_id: @project.id, null_user: "true" },
|
||||
%button.dropdown-menu-toggle.js-user-search.js-author-search.js-issue-board-sidebar{ type: "button", data: { toggle: "dropdown", field_name: "issue[assignee_id]", first_user: (current_user.username if current_user), current_user: "true", project_id: @project.id, null_user: "true", null_user_default: "true" },
|
||||
":data-issuable-id" => "issue.id",
|
||||
":data-selected" => "assigneeId",
|
||||
":data-issue-update" => "'#{namespace_project_issues_path(@project.namespace, @project)}/' + issue.id + '.json'" }
|
||||
Select assignee
|
||||
= icon("chevron-down")
|
||||
|
|
|
@ -117,7 +117,7 @@
|
|||
.issues_bulk_update.hide
|
||||
= form_tag [:bulk_update, @project.namespace.becomes(Namespace), @project, type], method: :post, class: 'bulk-update' do
|
||||
.filter-item.inline
|
||||
= dropdown_tag("Status", options: { toggle_class: "js-issue-status", title: "Change status", dropdown_class: "dropdown-menu-status dropdown-menu-selectable", data: { field_name: "update[state_event]" } } ) do
|
||||
= dropdown_tag("Status", options: { toggle_class: "js-issue-status", title: "Change status", dropdown_class: "dropdown-menu-status dropdown-menu-selectable", data: { field_name: "update[state_event]", default_label: "Status" } } ) do
|
||||
%ul
|
||||
%li
|
||||
%a{ href: "#", data: { id: "reopen" } } Open
|
||||
|
@ -125,13 +125,13 @@
|
|||
%a{ href: "#", data: { id: "close" } } Closed
|
||||
.filter-item.inline
|
||||
= dropdown_tag("Assignee", options: { toggle_class: "js-user-search js-update-assignee js-filter-submit js-filter-bulk-update", title: "Assign to", filter: true, dropdown_class: "dropdown-menu-user dropdown-menu-selectable",
|
||||
placeholder: "Search authors", data: { first_user: (current_user.username if current_user), null_user: true, current_user: true, project_id: @project.id, field_name: "update[assignee_id]" } })
|
||||
placeholder: "Search authors", data: { first_user: (current_user.username if current_user), null_user: true, current_user: true, project_id: @project.id, field_name: "update[assignee_id]", default_label: "Assignee" } })
|
||||
.filter-item.inline
|
||||
= dropdown_tag("Milestone", options: { title: "Assign milestone", toggle_class: 'js-milestone-select js-extra-options js-filter-submit js-filter-bulk-update', filter: true, dropdown_class: "dropdown-menu-selectable dropdown-menu-milestone", placeholder: "Search milestones", data: { show_no: true, field_name: "update[milestone_id]", project_id: @project.id, milestones: namespace_project_milestones_path(@project.namespace, @project, :json), use_id: true } })
|
||||
= dropdown_tag("Milestone", options: { title: "Assign milestone", toggle_class: 'js-milestone-select js-extra-options js-filter-submit js-filter-bulk-update', filter: true, dropdown_class: "dropdown-menu-selectable dropdown-menu-milestone", placeholder: "Search milestones", data: { show_no: true, field_name: "update[milestone_id]", project_id: @project.id, milestones: namespace_project_milestones_path(@project.namespace, @project, :json), use_id: true, default_label: "Milestone" } })
|
||||
.filter-item.inline.labels-filter
|
||||
= render "shared/issuable/label_dropdown", classes: ['js-filter-bulk-update', 'js-multiselect'], dropdown_title: 'Apply a label', show_create: false, show_footer: false, extra_options: false, filter_submit: false, data_options: { persist_when_hide: "true", field_name: "update[label_ids][]", show_no: false, show_any: false, use_id: true }
|
||||
= render "shared/issuable/label_dropdown", classes: ['js-filter-bulk-update', 'js-multiselect'], dropdown_title: 'Apply a label', show_create: false, show_footer: false, extra_options: false, filter_submit: false, data_options: { persist_when_hide: "true", field_name: "update[label_ids][]", show_no: false, show_any: false, use_id: true, default_label: "Labels" }
|
||||
.filter-item.inline
|
||||
= dropdown_tag("Subscription", options: { toggle_class: "js-subscription-event", title: "Change subscription", dropdown_class: "dropdown-menu-selectable", data: { field_name: "update[subscription_event]" } } ) do
|
||||
= dropdown_tag("Subscription", options: { toggle_class: "js-subscription-event", title: "Change subscription", dropdown_class: "dropdown-menu-selectable", data: { field_name: "update[subscription_event]", default_label: "Subscription" } } ) do
|
||||
%ul
|
||||
%li
|
||||
%a{ href: "#", data: { id: "subscribe" } } Subscribe
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
|
||||
.selectbox.hide-collapsed
|
||||
= f.hidden_field 'assignee_id', value: issuable.assignee_id, id: 'issue_assignee_id'
|
||||
= dropdown_tag('Select assignee', 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: (current_user.username if current_user), current_user: true, project_id: (@project.id if @project), author_id: issuable.author_id, field_name: "#{issuable.to_ability_name}[assignee_id]", issue_update: issuable_json_path(issuable), ability_name: issuable.to_ability_name, null_user: true } })
|
||||
= dropdown_tag('Select assignee', 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: (current_user.username if current_user), current_user: true, project_id: (@project.id if @project), author_id: issuable.author_id, field_name: "#{issuable.to_ability_name}[assignee_id]", issue_update: issuable_json_path(issuable), ability_name: issuable.to_ability_name, null_user: true, null_user_default: true, selected: issuable.assignee_id } })
|
||||
|
||||
.block.milestone
|
||||
.sidebar-collapsed-icon
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: Show checkmark on current assignee in assignee dropdown
|
||||
merge_request: 10767
|
||||
author:
|
|
@ -2,6 +2,7 @@ require 'rails_helper'
|
|||
|
||||
describe 'New/edit issue', feature: true, js: true do
|
||||
include GitlabRoutingHelper
|
||||
include ActionView::Helpers::JavaScriptHelper
|
||||
|
||||
let!(:project) { create(:project) }
|
||||
let!(:user) { create(:user)}
|
||||
|
@ -105,6 +106,33 @@ describe 'New/edit issue', feature: true, js: true do
|
|||
|
||||
expect(find('.js-label-select')).to have_content('Labels')
|
||||
end
|
||||
|
||||
it 'correctly updates the selected user when changing assignee' do
|
||||
click_button 'Assignee'
|
||||
page.within '.dropdown-menu-user' do
|
||||
click_link user.name
|
||||
end
|
||||
|
||||
expect(find('input[name="issue[assignee_id]"]', visible: false).value).to match(user.id.to_s)
|
||||
|
||||
click_button user.name
|
||||
|
||||
expect(find('.dropdown-menu-user a.is-active').first(:xpath, '..')['data-user-id']).to eq(user.id.to_s)
|
||||
|
||||
# check the ::before pseudo element to ensure checkmark icon is present
|
||||
expect(before_for_selector('.dropdown-menu-selectable a.is-active')).not_to eq('')
|
||||
expect(before_for_selector('.dropdown-menu-selectable a:not(.is-active)')).to eq('')
|
||||
|
||||
page.within '.dropdown-menu-user' do
|
||||
click_link user2.name
|
||||
end
|
||||
|
||||
expect(find('input[name="issue[assignee_id]"]', visible: false).value).to match(user2.id.to_s)
|
||||
|
||||
click_button user2.name
|
||||
|
||||
expect(find('.dropdown-menu-user a.is-active').first(:xpath, '..')['data-user-id']).to eq(user2.id.to_s)
|
||||
end
|
||||
end
|
||||
|
||||
context 'edit issue' do
|
||||
|
@ -154,4 +182,14 @@ describe 'New/edit issue', feature: true, js: true do
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
def before_for_selector(selector)
|
||||
js = <<-JS.strip_heredoc
|
||||
(function(selector) {
|
||||
var el = document.querySelector(selector);
|
||||
return window.getComputedStyle(el, '::before').getPropertyValue('content');
|
||||
})("#{escape_javascript(selector)}")
|
||||
JS
|
||||
page.evaluate_script(js)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue