summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/filtered_search_bar/tokens/milestone_token.vue
blob: 66ad5ef5b4eec945daa2901e290f1bbf684a22a4 (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
<script>
import {
  GlFilteredSearchToken,
  GlFilteredSearchSuggestion,
  GlDropdownDivider,
  GlLoadingIcon,
} from '@gitlab/ui';
import { debounce } from 'lodash';

import createFlash from '~/flash';
import { __ } from '~/locale';
import { sortMilestonesByDueDate } from '~/milestones/milestone_utils';

import { DEFAULT_MILESTONES, DEBOUNCE_DELAY } from '../constants';
import { stripQuotes } from '../filtered_search_utils';

export default {
  components: {
    GlFilteredSearchToken,
    GlFilteredSearchSuggestion,
    GlDropdownDivider,
    GlLoadingIcon,
  },
  props: {
    config: {
      type: Object,
      required: true,
    },
    value: {
      type: Object,
      required: true,
    },
  },
  data() {
    return {
      milestones: this.config.initialMilestones || [],
      defaultMilestones: this.config.defaultMilestones || DEFAULT_MILESTONES,
      loading: false,
    };
  },
  computed: {
    currentValue() {
      return this.value.data.toLowerCase();
    },
    activeMilestone() {
      return this.milestones.find(
        (milestone) => milestone.title.toLowerCase() === stripQuotes(this.currentValue),
      );
    },
  },
  watch: {
    active: {
      immediate: true,
      handler(newValue) {
        if (!newValue && !this.milestones.length) {
          this.fetchMilestoneBySearchTerm(this.value.data);
        }
      },
    },
  },
  methods: {
    fetchMilestoneBySearchTerm(searchTerm = '') {
      if (this.loading) {
        return;
      }

      this.loading = true;
      this.config
        .fetchMilestones(searchTerm)
        .then((response) => {
          const data = Array.isArray(response) ? response : response.data;
          this.milestones = data.slice().sort(sortMilestonesByDueDate);
        })
        .catch(() => createFlash({ message: __('There was a problem fetching milestones.') }))
        .finally(() => {
          this.loading = false;
        });
    },
    searchMilestones: debounce(function debouncedSearch({ data }) {
      this.fetchMilestoneBySearchTerm(data);
    }, DEBOUNCE_DELAY),
  },
};
</script>

<template>
  <gl-filtered-search-token
    :config="config"
    v-bind="{ ...$props, ...$attrs }"
    v-on="$listeners"
    @input="searchMilestones"
  >
    <template #view="{ inputValue }">
      <span>%{{ activeMilestone ? activeMilestone.title : inputValue }}</span>
    </template>
    <template #suggestions>
      <gl-filtered-search-suggestion
        v-for="milestone in defaultMilestones"
        :key="milestone.value"
        :value="milestone.value"
      >
        {{ milestone.text }}
      </gl-filtered-search-suggestion>
      <gl-dropdown-divider v-if="defaultMilestones.length" />
      <gl-loading-icon v-if="loading" size="sm" />
      <template v-else>
        <gl-filtered-search-suggestion
          v-for="milestone in milestones"
          :key="milestone.id"
          :value="milestone.title"
        >
          <div>{{ milestone.title }}</div>
        </gl-filtered-search-suggestion>
      </template>
    </template>
  </gl-filtered-search-token>
</template>