summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/filtered_search_bar/tokens/iteration_token.vue
blob: ba8b2421726111c7f75dc8fefc77e71a08c9a7fd (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<script>
import {
  GlDropdownDivider,
  GlFilteredSearchSuggestion,
  GlFilteredSearchToken,
  GlLoadingIcon,
} from '@gitlab/ui';
import { debounce } from 'lodash';
import createFlash from '~/flash';
import { getIdFromGraphQLId } from '~/graphql_shared/utils';
import { __ } from '~/locale';
import { DEBOUNCE_DELAY, DEFAULT_ITERATIONS } from '../constants';

export default {
  components: {
    GlDropdownDivider,
    GlFilteredSearchSuggestion,
    GlFilteredSearchToken,
    GlLoadingIcon,
  },
  props: {
    config: {
      type: Object,
      required: true,
    },
    value: {
      type: Object,
      required: true,
    },
  },
  data() {
    return {
      iterations: this.config.initialIterations || [],
      loading: false,
    };
  },
  computed: {
    currentValue() {
      return this.value.data;
    },
    activeIteration() {
      return this.iterations.find(
        (iteration) => getIdFromGraphQLId(iteration.id) === Number(this.currentValue),
      );
    },
    defaultIterations() {
      return this.config.defaultIterations || DEFAULT_ITERATIONS;
    },
  },
  watch: {
    active: {
      immediate: true,
      handler(newValue) {
        if (!newValue && !this.iterations.length) {
          this.fetchIterationBySearchTerm(this.currentValue);
        }
      },
    },
  },
  methods: {
    getValue(iteration) {
      return String(getIdFromGraphQLId(iteration.id));
    },
    fetchIterationBySearchTerm(searchTerm) {
      const fetchPromise = this.config.fetchPath
        ? this.config.fetchIterations(this.config.fetchPath, searchTerm)
        : this.config.fetchIterations(searchTerm);

      this.loading = true;

      fetchPromise
        .then((response) => {
          this.iterations = Array.isArray(response) ? response : response.data;
        })
        .catch(() => createFlash({ message: __('There was a problem fetching iterations.') }))
        .finally(() => {
          this.loading = false;
        });
    },
    searchIterations: debounce(function debouncedSearch({ data }) {
      this.fetchIterationBySearchTerm(data);
    }, DEBOUNCE_DELAY),
  },
};
</script>

<template>
  <gl-filtered-search-token
    :config="config"
    v-bind="{ ...$props, ...$attrs }"
    v-on="$listeners"
    @input="searchIterations"
  >
    <template #view="{ inputValue }">
      {{ activeIteration ? activeIteration.title : inputValue }}
    </template>
    <template #suggestions>
      <gl-filtered-search-suggestion
        v-for="iteration in defaultIterations"
        :key="iteration.value"
        :value="iteration.value"
      >
        {{ iteration.text }}
      </gl-filtered-search-suggestion>
      <gl-dropdown-divider v-if="defaultIterations.length" />
      <gl-loading-icon v-if="loading" size="sm" />
      <template v-else>
        <gl-filtered-search-suggestion
          v-for="iteration in iterations"
          :key="iteration.id"
          :value="getValue(iteration)"
        >
          {{ iteration.title }}
        </gl-filtered-search-suggestion>
      </template>
    </template>
  </gl-filtered-search-token>
</template>