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

statistics_list.vue « components « charts « pipelines « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5383a6cdddf73ef80b5f174c5d0a84c8161e0212 (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
<script>
import { GlLink } from '@gitlab/ui';
import { SUPPORTED_FORMATS, getFormatter } from '~/lib/utils/unit_format';
import { s__, n__ } from '~/locale';

const defaultPrecision = 2;

export default {
  components: {
    GlLink,
  },
  inject: {
    failedPipelinesLink: {
      default: '',
    },
  },
  props: {
    counts: {
      type: Object,
      required: true,
    },
  },
  computed: {
    statistics() {
      const formatter = getFormatter(SUPPORTED_FORMATS.percentHundred);

      return [
        {
          title: s__('PipelineCharts|Total:'),
          value: n__('1 pipeline', '%d pipelines', this.counts.total),
        },
        {
          title: s__('PipelineCharts|Successful:'),
          value: n__('1 pipeline', '%d pipelines', this.counts.success),
        },
        {
          title: s__('PipelineCharts|Failed:'),
          value: n__('1 pipeline', '%d pipelines', this.counts.failed),
          link: this.failedPipelinesLink,
        },
        {
          title: s__('PipelineCharts|Success ratio:'),
          value: formatter(this.counts.successRatio, defaultPrecision),
        },
      ];
    },
  },
};
</script>
<template>
  <ul>
    <template v-for="({ title, value, link }, index) in statistics">
      <li :key="index">
        <span>{{ title }}</span>
        <gl-link v-if="link" :href="link">
          {{ value }}
        </gl-link>
        <strong v-else>{{ value }}</strong>
      </li>
    </template>
  </ul>
</template>