Welcome to mirror list, hosted at ThFree Co, Russian Federation.

filtered_search.vue « components « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8505ea39a6b2fbf15787594348ee8bd81ca93488 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<script>
import { mapActions } from 'vuex';
import { historyPushState } from '~/lib/utils/common_utils';
import { setUrlParams } from '~/lib/utils/url_utility';
import { __ } from '~/locale';
import FilteredSearch from '~/vue_shared/components/filtered_search_bar/filtered_search_bar_root.vue';

export default {
  i18n: {
    search: __('Search'),
  },
  components: { FilteredSearch },
  props: {
    search: {
      type: String,
      required: false,
      default: '',
    },
  },
  computed: {
    initialSearch() {
      return [{ type: 'filtered-search-term', value: { data: this.search } }];
    },
  },
  methods: {
    ...mapActions(['performSearch']),
    handleSearch(filters) {
      let itemValue = '';
      const [item] = filters;

      if (filters.length === 0) {
        itemValue = '';
      } else {
        itemValue = item?.value?.data;
      }

      historyPushState(setUrlParams({ search: itemValue }, window.location.href));

      this.performSearch();
    },
  },
};
</script>

<template>
  <filtered-search
    class="gl-w-full"
    namespace=""
    :tokens="[]"
    :search-input-placeholder="$options.i18n.search"
    :initial-filter-value="initialSearch"
    @onFilter="handleSearch"
  />
</template>