63b2b1b426
Filtering source projects in the merge request creation form would show a flash error because it is trying to filter remotely to an undefined URL. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/52728
85 lines
2.7 KiB
JavaScript
85 lines
2.7 KiB
JavaScript
/* eslint-disable func-names, one-var, no-var, object-shorthand, no-else-return */
|
|
|
|
import $ from 'jquery';
|
|
import { __ } from './locale';
|
|
import axios from './lib/utils/axios_utils';
|
|
import flash from './flash';
|
|
import { capitalizeFirstCharacter } from './lib/utils/text_utility';
|
|
|
|
export default function initCompareAutocomplete(limitTo = null, clickHandler = () => {}) {
|
|
$('.js-compare-dropdown').each(function() {
|
|
var $dropdown, selected;
|
|
$dropdown = $(this);
|
|
selected = $dropdown.data('selected');
|
|
const $dropdownContainer = $dropdown.closest('.dropdown');
|
|
const $fieldInput = $(`input[name="${$dropdown.data('fieldName')}"]`, $dropdownContainer);
|
|
const $filterInput = $('input[type="search"]', $dropdownContainer);
|
|
$dropdown.glDropdown({
|
|
data: function(term, callback) {
|
|
const params = {
|
|
ref: $dropdown.data('ref'),
|
|
search: term,
|
|
};
|
|
|
|
if (limitTo) {
|
|
params.find = limitTo;
|
|
}
|
|
|
|
axios
|
|
.get($dropdown.data('refsUrl'), {
|
|
params,
|
|
})
|
|
.then(({ data }) => {
|
|
if (limitTo) {
|
|
callback(data[capitalizeFirstCharacter(limitTo)] || []);
|
|
} else {
|
|
callback(data);
|
|
}
|
|
})
|
|
.catch(() => flash(__('Error fetching refs')));
|
|
},
|
|
selectable: true,
|
|
filterable: true,
|
|
filterRemote: !!$dropdown.data('refsUrl'),
|
|
fieldName: $dropdown.data('fieldName'),
|
|
filterInput: 'input[type="search"]',
|
|
renderRow: function(ref) {
|
|
var link;
|
|
if (ref.header != null) {
|
|
return $('<li />')
|
|
.addClass('dropdown-header')
|
|
.text(ref.header);
|
|
} else {
|
|
link = $('<a />')
|
|
.attr('href', '#')
|
|
.addClass(ref === selected ? 'is-active' : '')
|
|
.text(ref)
|
|
.attr('data-ref', ref);
|
|
return $('<li />').append(link);
|
|
}
|
|
},
|
|
id: function(obj, $el) {
|
|
return $el.attr('data-ref');
|
|
},
|
|
toggleLabel: function(obj, $el) {
|
|
return $el.text().trim();
|
|
},
|
|
clicked: () => clickHandler($dropdown),
|
|
});
|
|
$filterInput.on('keyup', e => {
|
|
const keyCode = e.keyCode || e.which;
|
|
if (keyCode !== 13) return;
|
|
const text = $filterInput.val();
|
|
$fieldInput.val(text);
|
|
$('.dropdown-toggle-text', $dropdown).text(text);
|
|
$dropdownContainer.removeClass('open');
|
|
});
|
|
|
|
$dropdownContainer.on('click', '.dropdown-content a', e => {
|
|
$dropdown.prop('title', e.target.text.replace(/_+?/g, '-'));
|
|
if ($dropdown.hasClass('has-tooltip')) {
|
|
$dropdown.tooltip('_fixTitle');
|
|
}
|
|
});
|
|
});
|
|
}
|