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

55 lines
1.6 KiB
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2021-01-29 00:20:46 +05:30
import setHighlightClass from 'ee_else_ce/search/highlight_blob_search_result';
2019-10-12 21:52:04 +05:30
import Project from '~/pages/projects/project';
2021-02-22 17:27:13 +05:30
import { visitUrl } from '~/lib/utils/url_utility';
2019-10-12 21:52:04 +05:30
import refreshCounts from './refresh_counts';
2018-03-17 18:26:18 +05:30
export default class Search {
constructor() {
this.searchInput = '.js-search-input';
this.searchClear = '.js-search-clear';
2021-02-22 17:27:13 +05:30
setHighlightClass(); // Code Highlighting
this.eventListeners(); // Search Form Actions
refreshCounts(); // Other Scope Tab Counts
Project.initRefSwitcher(); // Code Search Branch Picker
2018-03-17 18:26:18 +05:30
}
eventListeners() {
2021-03-08 18:12:59 +05:30
$(document).off('keyup', this.searchInput).on('keyup', this.searchInput, this.searchKeyUp);
2018-03-17 18:26:18 +05:30
$(document)
.off('click', this.searchClear)
.on('click', this.searchClear, this.clearSearchField.bind(this));
2021-01-03 14:25:43 +05:30
2021-03-08 18:12:59 +05:30
$('a.js-search-clear').off('click', this.clearSearchFilter).on('click', this.clearSearchFilter);
2018-03-17 18:26:18 +05:30
}
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() {
2021-03-08 18:12:59 +05:30
return $(this.searchInput).val('').trigger('keyup').focus();
2018-03-17 18:26:18 +05:30
}
2021-01-03 14:25:43 +05:30
// We need to manually follow the link on the anchors
// that have this event bound, as their `click` default
// behavior is prevented by the toggle logic.
/* eslint-disable-next-line class-methods-use-this */
clearSearchFilter(ev) {
const $target = $(ev.currentTarget);
visitUrl($target.href);
ev.stopPropagation();
}
2018-03-17 18:26:18 +05:30
}