debian-mirror-gitlab/app/assets/javascripts/header_search/components/app.vue

193 lines
6 KiB
Vue
Raw Normal View History

2021-11-11 11:23:49 +05:30
<script>
import { GlSearchBoxByType, GlOutsideDirective as Outside } from '@gitlab/ui';
import { mapState, mapActions, mapGetters } from 'vuex';
2022-01-26 12:08:38 +05:30
import { debounce } from 'lodash';
2021-11-11 11:23:49 +05:30
import { visitUrl } from '~/lib/utils/url_utility';
2022-01-26 12:08:38 +05:30
import { DEFAULT_DEBOUNCE_AND_THROTTLE_MS } from '~/lib/utils/constants';
import { s__, sprintf } from '~/locale';
import DropdownKeyboardNavigation from '~/vue_shared/components/dropdown_keyboard_navigation.vue';
import {
FIRST_DROPDOWN_INDEX,
SEARCH_BOX_INDEX,
SEARCH_INPUT_DESCRIPTION,
SEARCH_RESULTS_DESCRIPTION,
} from '../constants';
2021-11-18 22:05:49 +05:30
import HeaderSearchAutocompleteItems from './header_search_autocomplete_items.vue';
2021-11-11 11:23:49 +05:30
import HeaderSearchDefaultItems from './header_search_default_items.vue';
import HeaderSearchScopedItems from './header_search_scoped_items.vue';
export default {
name: 'HeaderSearchApp',
i18n: {
2022-01-26 12:08:38 +05:30
searchPlaceholder: s__('GlobalSearch|Search or jump to...'),
searchAria: s__('GlobalSearch|Search GitLab'),
searchInputDescribeByNoDropdown: s__(
'GlobalSearch|Type and press the enter key to submit search.',
),
searchInputDescribeByWithDropdown: s__(
'GlobalSearch|Type for new suggestions to appear below.',
),
searchDescribedByDefault: s__(
'GlobalSearch|%{count} default results provided. Use the up and down arrow keys to navigate search results list.',
),
searchDescribedByUpdated: s__(
'GlobalSearch|Results updated. %{count} results available. Use the up and down arrow keys to navigate search results list, or ENTER to submit.',
),
searchResultsLoading: s__('GlobalSearch|Search results are loading'),
2021-11-11 11:23:49 +05:30
},
directives: { Outside },
components: {
GlSearchBoxByType,
HeaderSearchDefaultItems,
HeaderSearchScopedItems,
2021-11-18 22:05:49 +05:30
HeaderSearchAutocompleteItems,
2022-01-26 12:08:38 +05:30
DropdownKeyboardNavigation,
2021-11-11 11:23:49 +05:30
},
data() {
return {
showDropdown: false,
2022-01-26 12:08:38 +05:30
currentFocusIndex: SEARCH_BOX_INDEX,
2021-11-11 11:23:49 +05:30
};
},
computed: {
2022-01-26 12:08:38 +05:30
...mapState(['search', 'loading']),
...mapGetters(['searchQuery', 'searchOptions']),
2021-11-11 11:23:49 +05:30
searchText: {
get() {
return this.search;
},
set(value) {
this.setSearch(value);
},
},
2022-01-26 12:08:38 +05:30
currentFocusedOption() {
return this.searchOptions[this.currentFocusIndex];
},
currentFocusedId() {
return this.currentFocusedOption?.html_id;
},
isLoggedIn() {
return gon?.current_username;
},
2021-11-11 11:23:49 +05:30
showSearchDropdown() {
2022-01-26 12:08:38 +05:30
return this.showDropdown && this.isLoggedIn;
2021-11-11 11:23:49 +05:30
},
showDefaultItems() {
return !this.searchText;
},
2022-01-26 12:08:38 +05:30
defaultIndex() {
if (this.showDefaultItems) {
return SEARCH_BOX_INDEX;
}
return FIRST_DROPDOWN_INDEX;
},
searchInputDescribeBy() {
if (this.isLoggedIn) {
return this.$options.i18n.searchInputDescribeByWithDropdown;
}
return this.$options.i18n.searchInputDescribeByNoDropdown;
},
dropdownResultsDescription() {
if (!this.showSearchDropdown) {
return ''; // This allows aria-live to see register an update when the dropdown is shown
}
if (this.showDefaultItems) {
return sprintf(this.$options.i18n.searchDescribedByDefault, {
count: this.searchOptions.length,
});
}
return this.loading
? this.$options.i18n.searchResultsLoading
: sprintf(this.$options.i18n.searchDescribedByUpdated, {
count: this.searchOptions.length,
});
},
2021-11-11 11:23:49 +05:30
},
methods: {
2022-01-26 12:08:38 +05:30
...mapActions(['setSearch', 'fetchAutocompleteOptions', 'clearAutocomplete']),
2021-11-11 11:23:49 +05:30
openDropdown() {
this.showDropdown = true;
},
closeDropdown() {
this.showDropdown = false;
},
submitSearch() {
2022-01-26 12:08:38 +05:30
return visitUrl(this.currentFocusedOption?.url || this.searchQuery);
2021-11-11 11:23:49 +05:30
},
2022-01-26 12:08:38 +05:30
getAutocompleteOptions: debounce(function debouncedSearch(searchTerm) {
2021-11-18 22:05:49 +05:30
if (!searchTerm) {
2022-01-26 12:08:38 +05:30
this.clearAutocomplete();
} else {
this.fetchAutocompleteOptions();
2021-11-18 22:05:49 +05:30
}
2022-01-26 12:08:38 +05:30
}, DEFAULT_DEBOUNCE_AND_THROTTLE_MS),
2021-11-11 11:23:49 +05:30
},
2022-01-26 12:08:38 +05:30
SEARCH_BOX_INDEX,
SEARCH_INPUT_DESCRIPTION,
SEARCH_RESULTS_DESCRIPTION,
2021-11-11 11:23:49 +05:30
};
</script>
<template>
2022-01-26 12:08:38 +05:30
<form
v-outside="closeDropdown"
role="search"
:aria-label="$options.i18n.searchAria"
class="header-search gl-relative"
>
2021-11-11 11:23:49 +05:30
<gl-search-box-by-type
2022-01-26 12:08:38 +05:30
id="search"
2021-11-11 11:23:49 +05:30
v-model="searchText"
2022-01-26 12:08:38 +05:30
role="searchbox"
class="gl-z-index-1"
2021-11-11 11:23:49 +05:30
autocomplete="off"
:placeholder="$options.i18n.searchPlaceholder"
2022-01-26 12:08:38 +05:30
:aria-activedescendant="currentFocusedId"
:aria-describedby="$options.SEARCH_INPUT_DESCRIPTION"
2021-11-11 11:23:49 +05:30
@focus="openDropdown"
@click="openDropdown"
2021-11-18 22:05:49 +05:30
@input="getAutocompleteOptions"
2022-01-26 12:08:38 +05:30
@keydown.enter.stop.prevent="submitSearch"
2021-11-11 11:23:49 +05:30
/>
2022-01-26 12:08:38 +05:30
<span :id="$options.SEARCH_INPUT_DESCRIPTION" role="region" class="gl-sr-only">{{
searchInputDescribeBy
}}</span>
<span
role="region"
:data-testid="$options.SEARCH_RESULTS_DESCRIPTION"
class="gl-sr-only"
aria-live="polite"
aria-atomic="true"
>
{{ dropdownResultsDescription }}
</span>
2021-11-11 11:23:49 +05:30
<div
v-if="showSearchDropdown"
data-testid="header-search-dropdown-menu"
2021-11-18 22:05:49 +05:30
class="header-search-dropdown-menu gl-absolute gl-w-full gl-bg-white gl-border-1 gl-rounded-base gl-border-solid gl-border-gray-200 gl-shadow-x0-y2-b4-s0"
2021-11-11 11:23:49 +05:30
>
<div class="header-search-dropdown-content gl-overflow-y-auto gl-py-2">
2022-01-26 12:08:38 +05:30
<dropdown-keyboard-navigation
v-model="currentFocusIndex"
:max="searchOptions.length - 1"
:min="$options.SEARCH_BOX_INDEX"
:default-index="defaultIndex"
@tab="closeDropdown"
/>
<header-search-default-items
v-if="showDefaultItems"
:current-focused-option="currentFocusedOption"
/>
2021-11-11 11:23:49 +05:30
<template v-else>
2022-01-26 12:08:38 +05:30
<header-search-scoped-items :current-focused-option="currentFocusedOption" />
<header-search-autocomplete-items :current-focused-option="currentFocusedOption" />
2021-11-11 11:23:49 +05:30
</template>
</div>
</div>
2022-01-26 12:08:38 +05:30
</form>
2021-11-11 11:23:49 +05:30
</template>