debian-mirror-gitlab/app/assets/javascripts/pages/search/show/search.js

127 lines
3.1 KiB
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2020-11-24 15:15:51 +05:30
import initDeprecatedJQueryDropdown from '~/deprecated_jquery_dropdown';
2020-10-24 23:57:45 +05:30
import { deprecatedCreateFlash as Flash } from '~/flash';
2018-03-17 18:26:18 +05:30
import Api from '~/api';
2019-07-31 22:56:46 +05:30
import { __ } from '~/locale';
2019-10-12 21:52:04 +05:30
import Project from '~/pages/projects/project';
import refreshCounts from './refresh_counts';
2020-04-22 19:07:51 +05:30
import setHighlightClass from './highlight_blob_search_result';
2018-03-17 18:26:18 +05:30
export default class Search {
constructor() {
2020-04-22 19:07:51 +05:30
setHighlightClass();
2018-03-17 18:26:18 +05:30
const $groupDropdown = $('.js-search-group-dropdown');
const $projectDropdown = $('.js-search-project-dropdown');
this.searchInput = '.js-search-input';
this.searchClear = '.js-search-clear';
2018-03-27 19:54:05 +05:30
this.groupId = $groupDropdown.data('groupId');
2018-03-17 18:26:18 +05:30
this.eventListeners();
2019-10-12 21:52:04 +05:30
refreshCounts();
2018-03-17 18:26:18 +05:30
2020-11-24 15:15:51 +05:30
initDeprecatedJQueryDropdown($groupDropdown, {
2018-03-17 18:26:18 +05:30
selectable: true,
filterable: true,
filterRemote: true,
fieldName: 'group_id',
search: {
fields: ['full_name'],
},
data(term, callback) {
2018-12-13 13:39:08 +05:30
return Api.groups(term, {}, data => {
2018-03-17 18:26:18 +05:30
data.unshift({
2019-07-31 22:56:46 +05:30
full_name: __('Any'),
2018-03-17 18:26:18 +05:30
});
2019-12-04 20:38:33 +05:30
data.splice(1, 0, { type: 'divider' });
2018-03-17 18:26:18 +05:30
return callback(data);
});
},
id(obj) {
return obj.id;
},
text(obj) {
return obj.full_name;
},
clicked: () => Search.submitSearch(),
});
2020-11-24 15:15:51 +05:30
initDeprecatedJQueryDropdown($projectDropdown, {
2018-03-17 18:26:18 +05:30
selectable: true,
filterable: true,
filterRemote: true,
fieldName: 'project_id',
search: {
fields: ['name'],
},
data: (term, callback) => {
this.getProjectsData(term)
2018-12-13 13:39:08 +05:30
.then(data => {
2018-03-17 18:26:18 +05:30
data.unshift({
2019-07-31 22:56:46 +05:30
name_with_namespace: __('Any'),
2018-03-17 18:26:18 +05:30
});
2019-12-04 20:38:33 +05:30
data.splice(1, 0, { type: 'divider' });
2018-03-17 18:26:18 +05:30
return data;
})
.then(data => callback(data))
2019-07-31 22:56:46 +05:30
.catch(() => new Flash(__('Error fetching projects')));
2018-03-17 18:26:18 +05:30
},
id(obj) {
return obj.id;
},
text(obj) {
return obj.name_with_namespace;
},
clicked: () => Search.submitSearch(),
});
2019-10-12 21:52:04 +05:30
Project.initRefSwitcher();
2018-03-17 18:26:18 +05:30
}
eventListeners() {
$(document)
.off('keyup', this.searchInput)
.on('keyup', this.searchInput, this.searchKeyUp);
$(document)
.off('click', this.searchClear)
.on('click', this.searchClear, this.clearSearchField.bind(this));
}
static submitSearch() {
return $('.js-search-form').submit();
}
searchKeyUp() {
const $input = $(this);
if ($input.val() === '') {
$('.js-search-clear').addClass('hidden');
} else {
$('.js-search-clear').removeClass('hidden');
}
}
clearSearchField() {
2018-12-13 13:39:08 +05:30
return $(this.searchInput)
.val('')
.trigger('keyup')
.focus();
2018-03-17 18:26:18 +05:30
}
getProjectsData(term) {
2018-12-13 13:39:08 +05:30
return new Promise(resolve => {
2018-03-17 18:26:18 +05:30
if (this.groupId) {
2018-11-08 19:23:39 +05:30
Api.groupProjects(this.groupId, term, {}, resolve);
2018-03-17 18:26:18 +05:30
} else {
2018-12-13 13:39:08 +05:30
Api.projects(
term,
{
order_by: 'id',
},
resolve,
);
2018-03-17 18:26:18 +05:30
}
});
}
}