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

state_filter.vue « components « state_filter « search « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f08adaf8c8363aa27369d5651c2cb21b4e9ed511 (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
<script>
import { GlDropdown, GlDropdownItem, GlDropdownDivider } from '@gitlab/ui';
import {
  FILTER_STATES,
  SCOPES,
  FILTER_STATES_BY_SCOPE,
  FILTER_HEADER,
  FILTER_TEXT,
} from '../constants';
import { setUrlParams, visitUrl } from '~/lib/utils/url_utility';

const FILTERS_ARRAY = Object.values(FILTER_STATES);

export default {
  name: 'StateFilter',
  components: {
    GlDropdown,
    GlDropdownItem,
    GlDropdownDivider,
  },
  props: {
    scope: {
      type: String,
      required: true,
    },
    state: {
      type: String,
      required: false,
      default: FILTER_STATES.ANY.value,
      validator: v => FILTERS_ARRAY.some(({ value }) => value === v),
    },
  },
  computed: {
    selectedFilterText() {
      const filter = FILTERS_ARRAY.find(({ value }) => value === this.selectedFilter);
      if (!filter || filter === FILTER_STATES.ANY) {
        return FILTER_TEXT;
      }

      return filter.label;
    },
    showDropdown() {
      return Object.values(SCOPES).includes(this.scope);
    },
    selectedFilter: {
      get() {
        if (FILTERS_ARRAY.some(({ value }) => value === this.state)) {
          return this.state;
        }

        return FILTER_STATES.ANY.value;
      },
      set(state) {
        visitUrl(setUrlParams({ state }));
      },
    },
  },
  methods: {
    dropDownItemClass(filter) {
      return {
        'gl-border-b-solid gl-border-b-gray-100 gl-border-b-1 gl-pb-2! gl-mb-2':
          filter === FILTER_STATES.ANY,
      };
    },
    isFilterSelected(filter) {
      return filter === this.selectedFilter;
    },
    handleFilterChange(state) {
      this.selectedFilter = state;
    },
  },
  filterStates: FILTER_STATES,
  filterHeader: FILTER_HEADER,
  filtersByScope: FILTER_STATES_BY_SCOPE,
};
</script>

<template>
  <gl-dropdown v-if="showDropdown" :text="selectedFilterText" class="col-sm-3 gl-pt-4 gl-pl-0">
    <header class="gl-text-center gl-font-weight-bold gl-font-lg">
      {{ $options.filterHeader }}
    </header>
    <gl-dropdown-divider />
    <gl-dropdown-item
      v-for="filter in $options.filtersByScope[scope]"
      :key="filter.value"
      :is-check-item="true"
      :is-checked="isFilterSelected(filter.value)"
      :class="dropDownItemClass(filter)"
      @click="handleFilterChange(filter.value)"
      >{{ filter.label }}</gl-dropdown-item
    >
  </gl-dropdown>
</template>