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

packages_sort.vue « components « list « packages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b2d9091f8fdfa974b7d5eea0eb8a9e2caf495ea (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
<script>
import { GlSorting, GlSortingItem } from '@gitlab/ui';
import { mapState, mapActions } from 'vuex';
import { ASCENDING_ODER, DESCENDING_ORDER } from '../constants';
import getTableHeaders from '../utils';

export default {
  name: 'PackageSort',
  components: {
    GlSorting,
    GlSortingItem,
  },
  computed: {
    ...mapState({
      isGroupPage: (state) => state.config.isGroupPage,
      orderBy: (state) => state.sorting.orderBy,
      sort: (state) => state.sorting.sort,
    }),
    sortText() {
      const field = this.sortableFields.find((s) => s.orderBy === this.orderBy);
      return field ? field.label : '';
    },
    sortableFields() {
      return getTableHeaders(this.isGroupPage);
    },
    isSortAscending() {
      return this.sort === ASCENDING_ODER;
    },
  },
  methods: {
    ...mapActions(['setSorting']),
    onDirectionChange() {
      const sort = this.isSortAscending ? DESCENDING_ORDER : ASCENDING_ODER;
      this.setSorting({ sort });
      this.$emit('sort:changed');
    },
    onSortItemClick(item) {
      this.setSorting({ orderBy: item });
      this.$emit('sort:changed');
    },
  },
};
</script>

<template>
  <gl-sorting
    :text="sortText"
    :is-ascending="isSortAscending"
    @sortDirectionChange="onDirectionChange"
  >
    <gl-sorting-item
      v-for="item in sortableFields"
      ref="packageListSortItem"
      :key="item.orderBy"
      @click="onSortItemClick(item.orderBy)"
    >
      {{ item.label }}
    </gl-sorting-item>
  </gl-sorting>
</template>