All files / ee/app/assets/javascripts/audit_events/components sorting_field.vue

0% Statements 0/3
0% Branches 0/2
0% Functions 0/4
0% Lines 0/3

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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                                                                                                                   
<script>
import { GlCollapsibleListbox } from '@gitlab/ui';
import { s__ } from '~/locale';
 
export default {
  name: 'SortingField',
  components: {
    GlCollapsibleListbox,
  },
  props: {
    sortBy: {
      type: String,
      required: false,
      default: null,
    },
  },
  computed: {
    sortingItems() {
      return [
        {
          value: 'created_desc',
          text: s__('SortOptions|Last created'),
        },
        {
          value: 'created_asc',
          text: s__('SortOptions|Oldest created'),
        },
      ];
    },
    selectedItem() {
      return (
        this.sortingItems.find((option) => option.value === this.sortBy) || this.sortingItems[0]
      );
    },
  },
  methods: {
    onItemSelect(option) {
      this.$emit('selected', option);
    },
  },
  i18n: {
    sorting_title: s__('SortOptions|Sort by'),
  },
};
</script>
 
<template>
  <gl-collapsible-listbox
    class="gl-display-flex gl-mb-5"
    is-check-centered
    :items="sortingItems"
    :header-text="$options.i18n.sorting_title"
    :toggle-text="selectedItem.text"
    :selected="selectedItem.value"
    @select="onItemSelect"
  />
</template>