summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jobs/components/filtered_search/tokens/job_status_token.vue
blob: aad86ded80a8123508a3f35da993bf0105440754 (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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<script>
import { GlFilteredSearchToken, GlFilteredSearchSuggestion, GlIcon } from '@gitlab/ui';
import { s__ } from '~/locale';

export default {
  components: {
    GlFilteredSearchToken,
    GlFilteredSearchSuggestion,
    GlIcon,
  },
  props: {
    config: {
      type: Object,
      required: true,
    },
    value: {
      type: Object,
      required: true,
    },
  },
  computed: {
    statuses() {
      return [
        {
          class: 'ci-status-icon-canceled',
          icon: 'status_canceled',
          text: s__('Job|Canceled'),
          value: 'CANCELED',
        },
        {
          class: 'ci-status-icon-created',
          icon: 'status_created',
          text: s__('Job|Created'),
          value: 'CREATED',
        },
        {
          class: 'ci-status-icon-failed',
          icon: 'status_failed',
          text: s__('Job|Failed'),
          value: 'FAILED',
        },
        {
          class: 'ci-status-icon-manual',
          icon: 'status_manual',
          text: s__('Job|Manual'),
          value: 'MANUAL',
        },
        {
          class: 'ci-status-icon-success',
          icon: 'status_success',
          text: s__('Job|Passed'),
          value: 'SUCCESS',
        },
        {
          class: 'ci-status-icon-pending',
          icon: 'status_pending',
          text: s__('Job|Pending'),
          value: 'PENDING',
        },
        {
          class: 'ci-status-icon-preparing',
          icon: 'status_preparing',
          text: s__('Job|Preparing'),
          value: 'PREPARING',
        },
        {
          class: 'ci-status-icon-running',
          icon: 'status_running',
          text: s__('Job|Running'),
          value: 'RUNNING',
        },
        {
          class: 'ci-status-icon-scheduled',
          icon: 'status_scheduled',
          text: s__('Job|Scheduled'),
          value: 'SCHEDULED',
        },
        {
          class: 'ci-status-icon-skipped',
          icon: 'status_skipped',
          text: s__('Job|Skipped'),
          value: 'SKIPPED',
        },
        {
          class: 'ci-status-icon-waiting-for-resource',
          icon: 'status-waiting',
          text: s__('Job|Waiting for resource'),
          value: 'WAITING_FOR_RESOURCE',
        },
      ];
    },
    findActiveStatus() {
      return this.statuses.find((status) => status.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">
        <div :class="findActiveStatus.class">
          <gl-icon :name="findActiveStatus.icon" class="gl-mr-2 gl-display-block" />
        </div>
        <span>{{ findActiveStatus.text }}</span>
      </div>
    </template>
    <template #suggestions>
      <gl-filtered-search-suggestion
        v-for="(status, index) in statuses"
        :key="index"
        :value="status.value"
      >
        <div class="gl-display-flex" :class="status.class">
          <gl-icon :name="status.icon" class="gl-mr-3" />
          <span>{{ status.text }}</span>
        </div>
      </gl-filtered-search-suggestion>
    </template>
  </gl-filtered-search-token>
</template>