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

kubernetes_status_bar.vue « components « environments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94cd7438e469f7611d5f31ec1e2a2ad7034ad1e0 (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
<script>
import { GlLoadingIcon, GlBadge } from '@gitlab/ui';
import { s__ } from '~/locale';
import { HEALTH_BADGES } from '../constants';

export default {
  components: {
    GlLoadingIcon,
    GlBadge,
  },
  props: {
    clusterHealthStatus: {
      required: false,
      type: String,
      default: '',
      validator(val) {
        return ['error', 'success', ''].includes(val);
      },
    },
  },
  computed: {
    healthBadge() {
      return HEALTH_BADGES[this.clusterHealthStatus];
    },
  },
  i18n: {
    healthLabel: s__('Environment|Environment health'),
  },
};
</script>
<template>
  <div class="gl-display-flex gl-align-items-center gl-mr-3 gl-mb-2">
    <span class="gl-font-sm gl-font-monospace gl-mr-3">{{ $options.i18n.healthLabel }}</span>
    <gl-loading-icon v-if="!clusterHealthStatus" size="sm" inline />
    <gl-badge v-else-if="healthBadge" :variant="healthBadge.variant">
      {{ healthBadge.text }}
    </gl-badge>
  </div>
</template>