summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/notes/components/sort_discussion.vue
blob: bcc5d12b7c81d2ed11b180d0073af3a29bfce4d0 (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
<script>
import { GlDropdown, GlDropdownItem } from '@gitlab/ui';
import { mapActions, mapGetters } from 'vuex';
import { __ } from '~/locale';
import Tracking from '~/tracking';
import LocalStorageSync from '~/vue_shared/components/local_storage_sync.vue';
import { ASC, DESC } from '../constants';

const SORT_OPTIONS = [
  { key: DESC, text: __('Newest first'), cls: 'js-newest-first' },
  { key: ASC, text: __('Oldest first'), cls: 'js-oldest-first' },
];

export default {
  SORT_OPTIONS,
  components: {
    GlDropdown,
    GlDropdownItem,
    LocalStorageSync,
  },
  mixins: [Tracking.mixin()],
  computed: {
    ...mapGetters(['sortDirection', 'persistSortOrder', 'noteableType']),
    selectedOption() {
      return SORT_OPTIONS.find(({ key }) => this.sortDirection === key);
    },
    dropdownText() {
      return this.selectedOption.text;
    },
    storageKey() {
      return `sort_direction_${this.noteableType.toLowerCase()}`;
    },
  },
  methods: {
    ...mapActions(['setDiscussionSortDirection']),
    fetchSortedDiscussions(direction) {
      if (this.isDropdownItemActive(direction)) {
        return;
      }

      this.setDiscussionSortDirection({ direction });
      this.track('change_discussion_sort_direction', { property: direction });
    },
    isDropdownItemActive(sortDir) {
      return sortDir === this.sortDirection;
    },
  },
};
</script>

<template>
  <div
    data-testid="sort-discussion-filter"
    class="gl-mr-3 gl-display-inline-block gl-vertical-align-bottom full-width-mobile"
  >
    <local-storage-sync
      :value="sortDirection"
      :storage-key="storageKey"
      :persist="persistSortOrder"
      as-string
      @input="setDiscussionSortDirection({ direction: $event })"
    />
    <gl-dropdown :text="dropdownText" class="js-dropdown-text full-width-mobile">
      <gl-dropdown-item
        v-for="{ text, key, cls } in $options.SORT_OPTIONS"
        :key="key"
        :class="cls"
        :is-check-item="true"
        :is-checked="isDropdownItemActive(key)"
        @click="fetchSortedDiscussions(key)"
      >
        {{ text }}
      </gl-dropdown-item>
    </gl-dropdown>
  </div>
</template>