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

sort_dropdown.vue « components « branches « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4a5b25c4f2fcd5cca2f6a739d8960a309a9487d (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
<script>
import { GlCollapsibleListbox, GlSearchBoxByClick } from '@gitlab/ui';
import { mergeUrlParams, visitUrl, getParameterValues } from '~/lib/utils/url_utility';
import { s__ } from '~/locale';

export default {
  i18n: {
    searchPlaceholder: s__('Branches|Filter by branch name'),
  },
  components: {
    GlCollapsibleListbox,
    GlSearchBoxByClick,
  },
  // external parameters
  inject: [
    'projectBranchesFilteredPath',
    'sortOptions', // dropdown choices (value, text) pairs
    'showDropdown', // if not set, only text filter is shown
    'sortedBy', // (required) value of choice to sort by
  ],
  // own attributes, also in created()
  data() {
    return {
      searchTerm: getParameterValues('search')[0] || '',
    };
  },
  computed: {
    selectedSortMethodName() {
      return this.sortOptions[this.selectedKey];
    },
    listboxItems() {
      return Object.entries(this.sortOptions).map(([value, text]) => ({ value, text }));
    },
  },
  // contructor or initialization function
  created() {
    this.selectedKey = this.sortedBy;
  },
  methods: {
    visitUrlFromOption(sortKey) {
      this.selectedKey = sortKey;
      const urlParams = {};

      urlParams.sort = sortKey;

      urlParams.search = this.searchTerm.length > 0 ? this.searchTerm : null;

      const newUrl = mergeUrlParams(urlParams, this.projectBranchesFilteredPath);
      visitUrl(newUrl);
    },
  },
};
</script>
<template>
  <div class="gl-display-flex gl-flex-grow-1">
    <gl-search-box-by-click
      v-model="searchTerm"
      :placeholder="$options.i18n.searchPlaceholder"
      class="gl-mr-3"
      data-testid="branch-search"
      @submit="visitUrlFromOption(selectedKey)"
    />

    <gl-collapsible-listbox
      v-if="showDropdown"
      v-model="selectedKey"
      :items="listboxItems"
      :toggle-text="selectedSortMethodName"
      class="gl-mr-3"
      data-testid="branches-dropdown"
      @select="visitUrlFromOption(selectedKey)"
    />
  </div>
</template>