summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/monitoring/components/charts/empty_chart.vue
blob: 73682adc4ee5be13f6d03559cbec9ba7a9d92e7b (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 chartEmptyStateIllustration from '@gitlab/svgs/dist/illustrations/chart-empty-state.svg';
import { chartHeight } from '../../constants';

export default {
  props: {
    graphTitle: {
      type: String,
      required: true,
    },
  },
  data() {
    return {
      height: chartHeight,
    };
  },
  computed: {
    svgContainerStyle() {
      return {
        height: `${this.height}px`,
      };
    },
  },
  created() {
    this.chartEmptyStateIllustration = chartEmptyStateIllustration;
  },
};
</script>
<template>
  <div class="prometheus-graph col-12 col-lg-6 d-flex flex-column justify-content-center">
    <div class="prometheus-graph-header">
      <h5 ref="graphTitle" class="prometheus-graph-title">{{ graphTitle }}</h5>
    </div>
    <div
      class="prepend-top-8 svg-w-100 d-flex align-items-center"
      :style="svgContainerStyle"
      v-html="chartEmptyStateIllustration"
    ></div>
    <h5 class="text-center prepend-top-8">{{ __('No data to display') }}</h5>
  </div>
</template>