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

sectioned_percentage_bar.vue « components « usage_quotas « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d9ce59145065bbe8f5a0af44313464f41f6f95e (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
<script>
import { colorFromDefaultPalette } from '@gitlab/ui/dist/utils/charts/theme';
import { roundOffFloat } from '~/lib/utils/common_utils';
import { formatNumber } from '~/locale';

export default {
  props: {
    /**
     * {
     *   id: string;
     *   label: string;
     *   value: number;
     *   formattedValue: number | string;
     * }[]
     */
    sections: {
      type: Array,
      required: true,
    },
  },
  computed: {
    sectionsCombinedValue() {
      return this.sections.reduce((accumulator, section) => {
        return accumulator + section.value;
      }, 0);
    },
    computedSections() {
      return this.sections.map((section, index) => {
        const percentage = section.value / this.sectionsCombinedValue;

        return {
          ...section,
          backgroundColor: colorFromDefaultPalette(index),
          cssPercentage: `${roundOffFloat(percentage * 100, 4)}%`,
          srLabelPercentage: formatNumber(percentage, {
            style: 'percent',
            minimumFractionDigits: 1,
          }),
        };
      });
    },
  },
};
</script>

<template>
  <div>
    <div class="gl-display-flex gl-rounded-pill gl-overflow-hidden gl-w-full">
      <div
        v-for="{ id, label, backgroundColor, cssPercentage, srLabelPercentage } in computedSections"
        :key="id"
        class="gl-h-5"
        :style="{
          backgroundColor,
          width: cssPercentage,
        }"
        :data-testid="`percentage-bar-section-${id}`"
      >
        <span class="gl-sr-only">{{ label }} {{ srLabelPercentage }}</span>
      </div>
    </div>
    <div class="gl-mt-5">
      <div class="gl-display-flex gl-align-items-center gl-flex-wrap gl-my-n3 gl-mx-n3">
        <div
          v-for="{ id, label, backgroundColor, formattedValue } in computedSections"
          :key="id"
          class="gl-display-flex gl-align-items-center gl-p-3"
          :data-testid="`percentage-bar-legend-section-${id}`"
        >
          <div
            class="gl-h-2 gl-w-5 gl-mr-2 gl-display-inline-block"
            :style="{ backgroundColor }"
            data-testid="legend-section-color"
          ></div>
          <p class="gl-m-0 gl-font-sm">
            <span class="gl-mr-2 gl-font-weight-bold">
              {{ label }}
            </span>
            <span class="gl-text-gray-500">
              {{ formattedValue }}
            </span>
          </p>
        </div>
      </div>
    </div>
  </div>
</template>