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

runner_single_stat.vue « stat « components « runner « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae732b052acf723f052e5332e8f70434a65c6536 (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
<script>
import { GlSingleStat } from '@gitlab/ui/dist/charts';
import { formatNumber } from '~/locale';
import RunnerCount from './runner_count.vue';

export default {
  components: {
    GlSingleStat,
    RunnerCount,
  },
  props: {
    scope: {
      type: String,
      required: true,
    },
    variables: {
      type: Object,
      required: false,
      default: () => ({}),
    },
    skip: {
      type: Boolean,
      required: false,
      default: false,
    },
  },
  methods: {
    formattedValue(value) {
      if (typeof value === 'number') {
        return formatNumber(value);
      }
      return '-';
    },
  },
};
</script>
<template>
  <runner-count #default="{ count }" :scope="scope" :variables="variables" :skip="skip">
    <gl-single-stat v-bind="$attrs" :value="formattedValue(count)" />
  </runner-count>
</template>