Commit 1edeecb0 authored by Alexis Reigel's avatar Alexis Reigel

inherit DropdownUser from DropdownAjaxFilter

parent 2e052925
import Flash from '../flash';
import AjaxFilter from '../droplab/plugins/ajax_filter';
import FilteredSearchDropdown from './filtered_search_dropdown';
import { addClassIfElementExists } from '../lib/utils/dom_utils'; import { addClassIfElementExists } from '../lib/utils/dom_utils';
import DropdownUtils from './dropdown_utils'; import DropdownAjaxFilter from './dropdown_ajax_filter';
import FilteredSearchTokenizer from './filtered_search_tokenizer';
export default class DropdownUser extends FilteredSearchDropdown { export default class DropdownUser extends DropdownAjaxFilter {
constructor(options = {}) { constructor(options = {}) {
const { tokenKeys } = options; super({
super(options); ...options,
this.config = { endpoint: '/autocomplete/users.json',
AjaxFilter: { symbol: '@',
endpoint: `${gon.relative_url_root || ''}/autocomplete/users.json`, });
searchKey: 'search', }
ajaxFilterConfig() {
return {
...super.ajaxFilterConfig(),
params: { params: {
active: true, active: true,
group_id: this.getGroupId(), group_id: this.getGroupId(),
project_id: this.getProjectId(), project_id: this.getProjectId(),
current_user: true, current_user: true,
}, },
searchValueFunction: this.getSearchInput.bind(this),
loadingTemplate: this.loadingTemplate,
onLoadingFinished: () => { onLoadingFinished: () => {
this.hideCurrentUser(); this.hideCurrentUser();
}, },
onError() {
/* eslint-disable no-new */
new Flash('An error occurred fetching the dropdown data.');
/* eslint-enable no-new */
},
},
}; };
this.tokenKeys = tokenKeys;
} }
hideCurrentUser() { hideCurrentUser() {
addClassIfElementExists(this.dropdown.querySelector('.js-current-user'), 'hidden'); addClassIfElementExists(this.dropdown.querySelector('.js-current-user'), 'hidden');
} }
itemClicked(e) {
super.itemClicked(e, selected =>
selected.querySelector('.dropdown-light-content').innerText.trim(),
);
}
renderContent(forceShowList = false) {
this.droplab.changeHookList(this.hookId, this.dropdown, [AjaxFilter], this.config);
super.renderContent(forceShowList);
}
getGroupId() { getGroupId() {
return this.input.getAttribute('data-group-id'); return this.input.getAttribute('data-group-id');
} }
...@@ -56,27 +36,4 @@ export default class DropdownUser extends FilteredSearchDropdown { ...@@ -56,27 +36,4 @@ export default class DropdownUser extends FilteredSearchDropdown {
getProjectId() { getProjectId() {
return this.input.getAttribute('data-project-id'); return this.input.getAttribute('data-project-id');
} }
getSearchInput() {
const query = DropdownUtils.getSearchInput(this.input);
const { lastToken } = FilteredSearchTokenizer.processTokens(query, this.tokenKeys.get());
let value = lastToken || '';
if (value[0] === '@') {
value = value.slice(1);
}
// Removes the first character if it is a quotation so that we can search
// with multiple words
if (value[0] === '"' || value[0] === "'") {
value = value.slice(1);
}
return value;
}
init() {
this.droplab.addHook(this.input, this.dropdown, [AjaxFilter], this.config).init();
}
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment