gitlab-org--gitlab-foss/app/assets/javascripts/header_search/components/header_search_default_items...

59 lines
1.4 KiB
Vue

<script>
import { GlDropdownItem, GlDropdownSectionHeader } from '@gitlab/ui';
import { mapState, mapGetters } from 'vuex';
import { __ } from '~/locale';
export default {
name: 'HeaderSearchDefaultItems',
i18n: {
allGitLab: __('All GitLab'),
},
components: {
GlDropdownSectionHeader,
GlDropdownItem,
},
props: {
currentFocusedOption: {
type: Object,
required: false,
default: () => null,
},
},
computed: {
...mapState(['searchContext']),
...mapGetters(['defaultSearchOptions']),
sectionHeader() {
return (
this.searchContext?.project?.name ||
this.searchContext?.group?.name ||
this.$options.i18n.allGitLab
);
},
},
methods: {
isOptionFocused(option) {
return this.currentFocusedOption?.html_id === option.html_id;
},
},
};
</script>
<template>
<div>
<gl-dropdown-section-header>{{ sectionHeader }}</gl-dropdown-section-header>
<gl-dropdown-item
v-for="option in defaultSearchOptions"
:id="option.html_id"
:ref="option.html_id"
:key="option.html_id"
:class="{ 'gl-bg-gray-50': isOptionFocused(option) }"
:aria-selected="isOptionFocused(option)"
:aria-label="option.title"
tabindex="-1"
:href="option.url"
>
<span aria-hidden="true">{{ option.title }}</span>
</gl-dropdown-item>
</div>
</template>