summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/commit/components/branches_dropdown.vue
blob: 3ecc3f1d1d3954cf6251fc40ff6bbf7202dfa271 (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
<script>
import {
  GlDropdown,
  GlSearchBoxByType,
  GlDropdownItem,
  GlDropdownText,
  GlLoadingIcon,
} from '@gitlab/ui';
import { mapActions, mapGetters, mapState } from 'vuex';
import { I18N_DROPDOWN } from '../constants';

export default {
  name: 'BranchesDropdown',
  components: {
    GlDropdown,
    GlSearchBoxByType,
    GlDropdownItem,
    GlDropdownText,
    GlLoadingIcon,
  },
  props: {
    value: {
      type: String,
      required: false,
      default: '',
    },
  },
  i18n: I18N_DROPDOWN,
  data() {
    return {
      searchTerm: this.value,
    };
  },
  computed: {
    ...mapGetters(['joinedBranches']),
    ...mapState(['isFetching', 'branch', 'branches']),
    filteredResults() {
      const lowerCasedSearchTerm = this.searchTerm.toLowerCase();
      return this.joinedBranches.filter((resultString) =>
        resultString.toLowerCase().includes(lowerCasedSearchTerm),
      );
    },
  },
  mounted() {
    this.fetchBranches(this.searchTerm);
  },
  methods: {
    ...mapActions(['fetchBranches']),
    selectBranch(branch) {
      this.$emit('selectBranch', branch);
      this.searchTerm = branch; // enables isSelected to work as expected
    },
    isSelected(selectedBranch) {
      return selectedBranch === this.branch;
    },
    searchTermChanged(value) {
      this.searchTerm = value;
      this.fetchBranches(value);
    },
  },
};
</script>
<template>
  <gl-dropdown :text="value" :header-text="$options.i18n.headerTitle">
    <gl-search-box-by-type
      :value="searchTerm"
      trim
      autocomplete="off"
      :debounce="250"
      :placeholder="$options.i18n.searchPlaceholder"
      @input="searchTermChanged"
    />
    <gl-dropdown-item
      v-for="branch in filteredResults"
      v-show="!isFetching"
      :key="branch"
      :name="branch"
      :is-checked="isSelected(branch)"
      is-check-item
      @click="selectBranch(branch)"
    >
      {{ branch }}
    </gl-dropdown-item>
    <gl-dropdown-text v-show="isFetching" data-testid="dropdown-text-loading-icon">
      <gl-loading-icon class="gl-mx-auto" />
    </gl-dropdown-text>
    <gl-dropdown-text
      v-if="!filteredResults.length && !isFetching"
      data-testid="empty-result-message"
    >
      <span class="gl-text-gray-500">{{ $options.i18n.noResultsMessage }}</span>
    </gl-dropdown-text>
  </gl-dropdown>
</template>