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

app.vue « components « sort « search « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f28d2bfc992e6c694d23bd0bf8213b0ea4ca2b7 (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
<script>
import { GlCollapsibleListbox, GlButtonGroup, GlButton, GlTooltipDirective } from '@gitlab/ui';
import { mapState, mapActions } from 'vuex';
import { SORT_DIRECTION_UI } from '../constants';

export default {
  name: 'GlobalSearchSort',
  components: {
    GlCollapsibleListbox,
    GlButtonGroup,
    GlButton,
  },
  directives: {
    GlTooltip: GlTooltipDirective,
  },
  props: {
    searchSortOptions: {
      type: Array,
      required: true,
    },
  },
  data() {
    return {
      selectedSortOptionTitle: '',
    };
  },
  computed: {
    ...mapState(['query']),
    listboxOptions() {
      return this.searchSortOptions.map((option) => ({
        text: option.title,
        value: option.title,
      }));
    },
    selectedSortOption: {
      get() {
        const { sort } = this.query;

        if (!sort) {
          return this.searchSortOptions[0];
        }

        const sortOption = this.searchSortOptions.find((option) => {
          if (!option.sortable) {
            return option.sortParam === sort;
          }

          return Object.values(option.sortParam).indexOf(sort) !== -1;
        });

        // Handle invalid sort param
        return sortOption || this.searchSortOptions[0];
      },
      set(value) {
        this.setQuery({ key: 'sort', value });
        this.applyQuery();
      },
    },
    sortDirectionData() {
      if (!this.selectedSortOption.sortable) {
        return SORT_DIRECTION_UI.disabled;
      }

      return this.query?.sort?.includes('asc') ? SORT_DIRECTION_UI.asc : SORT_DIRECTION_UI.desc;
    },
  },
  watch: {
    selectedSortOption: {
      handler() {
        this.selectedSortOptionTitle = this.selectedSortOption.title;
      },
      immediate: true,
    },
  },
  methods: {
    ...mapActions(['applyQuery', 'setQuery']),
    handleSortChange(value) {
      const selectedOption = this.searchSortOptions.find((option) => option.title === value);
      if (!selectedOption.sortable) {
        this.selectedSortOption = selectedOption.sortParam;
      } else {
        // Default new sort options to desc
        this.selectedSortOption = selectedOption.sortParam.desc;
      }
    },
    handleSortDirectionChange() {
      this.selectedSortOption =
        this.sortDirectionData.direction === 'desc'
          ? this.selectedSortOption.sortParam.asc
          : this.selectedSortOption.sortParam.desc;
    },
  },
};
</script>

<template>
  <gl-button-group>
    <gl-collapsible-listbox
      v-model="selectedSortOptionTitle"
      placement="right"
      class="gl-z-index-1"
      toggle-class="gl-rounded-top-right-none! gl-rounded-bottom-right-none!"
      :toggle-text="selectedSortOptionTitle"
      :items="listboxOptions"
      @select="handleSortChange"
    />
    <gl-button
      v-gl-tooltip
      :disabled="!selectedSortOption.sortable"
      :title="sortDirectionData.tooltip"
      :aria-label="sortDirectionData.tooltip"
      :icon="sortDirectionData.icon"
      @click="handleSortDirectionChange"
    />
  </gl-button-group>
</template>