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

subscriptions_dropdown.vue « components « bulk_update_sidebar « issuable « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8774b065c2231d7fbac7a81f63d6d746e8982ac1 (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
<script>
import { GlDropdown, GlDropdownItem } from '@gitlab/ui';
import { __ } from '~/locale';
import { subscriptionsDropdownOptions } from '../constants';

export default {
  subscriptionsDropdownOptions,
  i18n: {
    defaultDropdownText: __('Select subscription'),
    headerText: __('Change subscription'),
  },
  components: {
    GlDropdown,
    GlDropdownItem,
  },
  data() {
    return {
      subscription: undefined,
    };
  },
  computed: {
    dropdownText() {
      return this.subscription?.text ?? this.$options.i18n.defaultDropdownText;
    },
    selectedValue() {
      return this.subscription?.value;
    },
  },
  methods: {
    handleClick(option) {
      this.subscription = option.value === this.subscription?.value ? undefined : option;
    },
  },
};
</script>
<template>
  <div>
    <input type="hidden" name="update[subscription_event]" :value="selectedValue" />
    <gl-dropdown class="gl-w-full" :header-text="$options.i18n.headerText" :text="dropdownText">
      <gl-dropdown-item
        v-for="subscriptionsOption in $options.subscriptionsDropdownOptions"
        :key="subscriptionsOption.value"
        is-check-item
        :is-checked="selectedValue === subscriptionsOption.value"
        @click="handleClick(subscriptionsOption)"
      >
        {{ subscriptionsOption.text }}
      </gl-dropdown-item>
    </gl-dropdown>
  </div>
</template>