summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/components/branches/search_list.vue
blob: 6db7b9d6b0e03a7a15c9928934ee906550154325 (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
<script>
import { mapActions, mapState } from 'vuex';
import _ from 'underscore';
import LoadingIcon from '~/vue_shared/components/loading_icon.vue';
import Icon from '~/vue_shared/components/icon.vue';
import Item from './item.vue';

export default {
  components: {
    LoadingIcon,
    Item,
    Icon,
  },
  data() {
    return {
      search: '',
    };
  },
  computed: {
    ...mapState('branches', ['branches', 'isLoading']),
    ...mapState(['currentBranchId', 'currentProjectId']),
    hasBranches() {
      return this.branches.length !== 0;
    },
    hasNoSearchResults() {
      return this.search !== '' && !this.hasBranches;
    },
  },
  watch: {
    isLoading: {
      handler: 'focusSearch',
    },
  },
  mounted() {
    this.loadBranches();
  },
  methods: {
    ...mapActions('branches', ['fetchBranches']),
    loadBranches() {
      this.fetchBranches({ search: this.search });
    },
    searchBranches: _.debounce(function debounceSearch() {
      this.loadBranches();
    }, 250),
    focusSearch() {
      if (!this.isLoading) {
        this.$nextTick(() => {
          this.$refs.searchInput.focus();
        });
      }
    },
    isActiveBranch(item) {
      return item.name === this.currentBranchId;
    },
  },
};
</script>

<template>
  <div>
    <div class="dropdown-input mt-3 pb-3 mb-0 border-bottom">
      <div class="position-relative">
        <input
          ref="searchInput"
          :placeholder="__('Search branches')"
          v-model="search"
          type="search"
          class="form-control dropdown-input-field"
          @input="searchBranches"
        />
        <icon
          :size="18"
          name="search"
          class="input-icon"
        />
      </div>
    </div>
    <div class="dropdown-content ide-merge-requests-dropdown-content d-flex">
      <loading-icon
        v-if="isLoading"
        class="mt-3 mb-3 align-self-center ml-auto mr-auto"
        size="2"
      />
      <ul
        v-else
        class="mb-3 w-100"
      >
        <template v-if="hasBranches">
          <li
            v-for="item in branches"
            :key="item.name"
          >
            <item
              :item="item"
              :project-id="currentProjectId"
              :is-active="isActiveBranch(item)"
            />
          </li>
        </template>
        <li
          v-else
          class="ide-search-list-empty d-flex align-items-center justify-content-center"
        >
          <template v-if="hasNoSearchResults">
            {{ __('No branches found') }}
          </template>
        </li>
      </ul>
    </div>
  </div>
</template>