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

refs_dropdown.vue « components « pipeline_new « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cfcc729b5c90fd34403190be1a7abb1e0a8f7e65 (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
<script>
import { __ } from '~/locale';
import RefSelector from '~/ref/components/ref_selector.vue';
import { REF_TYPE_BRANCHES, REF_TYPE_TAGS } from '~/ref/constants';
import { formatToShortName } from '../utils/format_refs';

export default {
  ENABLED_TYPE_REFS: [REF_TYPE_BRANCHES, REF_TYPE_TAGS],
  i18n: {
    /**
     * In order to hide ListBox header
     * we need to explicitly provide
     * empty string for translations
     */
    dropdownHeader: '',
    searchPlaceholder: __('Search refs'),
  },
  components: {
    RefSelector,
  },
  props: {
    projectId: {
      type: String,
      required: true,
    },
    value: {
      type: Object,
      required: false,
      default: () => ({}),
    },
    queryParams: {
      type: Object,
      required: false,
      default: () => ({
        sort: 'updated_desc',
      }),
    },
  },
  computed: {
    refShortName() {
      return this.value.shortName;
    },
  },
  methods: {
    setRefSelected(fullName) {
      this.$emit('input', {
        shortName: formatToShortName(fullName),
        fullName,
      });
    },
  },
};
</script>
<template>
  <ref-selector
    :value="refShortName"
    :enabled-ref-types="$options.ENABLED_TYPE_REFS"
    :project-id="projectId"
    :translations="$options.i18n"
    :use-symbolic-ref-names="true"
    :query-params="queryParams"
    toggle-button-class="gl-w-auto! gl-mb-0!"
    @input="setRefSelected"
  />
</template>