summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/resizable_chart/skeleton_loader.vue
blob: 306fa61780f74587328e1cd393079c606c983235 (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
<script>
import { GlSkeletonLoader } from '@gitlab/ui';

import {
  DEFAULT_RX,
  DEFAULT_BAR_WIDTH,
  DEFAULT_LABEL_WIDTH,
  DEFAULT_LABEL_HEIGHT,
  BAR_HEIGHTS,
  GRID_YS,
} from './constants';

export default {
  components: {
    GlSkeletonLoader,
  },
  props: {
    barWidth: {
      type: Number,
      default: DEFAULT_BAR_WIDTH,
      required: false,
    },
    labelWidth: {
      type: Number,
      default: DEFAULT_LABEL_WIDTH,
      required: false,
    },
    labelHeight: {
      type: Number,
      default: DEFAULT_LABEL_HEIGHT,
      required: false,
    },
    rx: {
      type: Number,
      default: DEFAULT_RX,
      required: false,
    },
    // skeleton-loader will generate a unique key if not defined
    uniqueKey: {
      type: String,
      default: undefined,
      required: false,
    },
  },
  computed: {
    labelCentering() {
      return (this.barWidth - this.labelWidth) / 2;
    },
  },
  methods: {
    getBarXPosition(index) {
      const numberOfBars = this.$options.BAR_HEIGHTS.length;
      const numberOfSpaces = numberOfBars + 1;
      const spaceBetweenBars = (100 - numberOfSpaces * this.barWidth) / numberOfBars;

      return (0.5 + index) * (this.barWidth + spaceBetweenBars);
    },
  },
  BAR_HEIGHTS,
  GRID_YS,
};
</script>
<template>
  <gl-skeleton-loader :unique-key="uniqueKey">
    <rect
      v-for="(y, index) in $options.GRID_YS"
      :key="`grid-${index}`"
      data-testid="skeleton-chart-grid"
      x="0"
      :y="`${y}%`"
      width="100%"
      height="1px"
    />
    <rect
      v-for="(height, index) in $options.BAR_HEIGHTS"
      :key="`bar-${index}`"
      data-testid="skeleton-chart-bar"
      :x="`${getBarXPosition(index)}%`"
      :y="`${90 - height}%`"
      :width="`${barWidth}%`"
      :height="`${height}%`"
      :rx="`${rx}%`"
    />
    <rect
      v-for="(height, index) in $options.BAR_HEIGHTS"
      :key="`label-${index}`"
      data-testid="skeleton-chart-label"
      :x="`${labelCentering + getBarXPosition(index)}%`"
      :y="`${100 - labelHeight}%`"
      :width="`${labelWidth}%`"
      :height="`${labelHeight}%`"
      :rx="`${rx}%`"
    />
  </gl-skeleton-loader>
</template>