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

pipeline_source_token.vue « tokens « pipelines_list « components « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71efa8b2ab4e04519f0f6a97c9c5f32ffd5fe3aa (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
95
96
97
98
99
100
101
102
103
104
105
106
<script>
import { GlFilteredSearchToken, GlFilteredSearchSuggestion } from '@gitlab/ui';
import { s__ } from '~/locale';

export default {
  components: {
    GlFilteredSearchToken,
    GlFilteredSearchSuggestion,
  },
  props: {
    config: {
      type: Object,
      required: true,
    },
    value: {
      type: Object,
      required: true,
    },
  },
  computed: {
    sources() {
      return [
        {
          text: s__('Pipeline|Source|Push'),
          value: 'push',
        },
        {
          text: s__('Pipeline|Source|Web'),
          value: 'web',
        },
        {
          text: s__('Pipeline|Source|Trigger'),
          value: 'trigger',
        },
        {
          text: s__('Pipeline|Source|Schedule'),
          value: 'schedule',
        },
        {
          text: s__('Pipeline|Source|API'),
          value: 'api',
        },
        {
          text: s__('Pipeline|Source|External'),
          value: 'external',
        },
        {
          text: s__('Pipeline|Source|Pipeline'),
          value: 'pipeline',
        },
        {
          text: s__('Pipeline|Source|Chat'),
          value: 'chat',
        },
        {
          text: s__('Pipeline|Source|Web IDE'),
          value: 'webide',
        },
        {
          text: s__('Pipeline|Source|Merge Request'),
          value: 'merge_request_event',
        },
        {
          text: s__('Pipeline|Source|External Pull Request'),
          value: 'external_pull_request_event',
        },
        {
          text: s__('Pipeline|Source|Parent Pipeline'),
          value: 'parent_pipeline',
        },
        {
          text: s__('Pipeline|Source|On-Demand DAST Scan'),
          value: 'ondemand_dast_scan',
        },
        {
          text: s__('Pipeline|Source|On-Demand DAST Validation'),
          value: 'ondemand_dast_validation',
        },
      ];
    },
    findActiveSource() {
      return this.sources.find((source) => source.value === this.value.data);
    },
  },
};
</script>

<template>
  <gl-filtered-search-token v-bind="{ ...$props, ...$attrs }" v-on="$listeners">
    <template #view>
      <div class="gl-display-flex gl-align-items-center">
        <span>{{ findActiveSource.text }}</span>
      </div>
    </template>

    <template #suggestions>
      <gl-filtered-search-suggestion
        v-for="source in sources"
        :key="source.value"
        :value="source.value"
      >
        {{ source.text }}
      </gl-filtered-search-suggestion>
    </template>
  </gl-filtered-search-token>
</template>