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

export default {
  directives: {
    SafeHtml,
  },
  data() {
    return {
      height: chartHeight,
    };
  },
  computed: {
    svgContainerStyle() {
      return {
        height: `${this.height}px`,
      };
    },
  },
  created() {
    this.chartEmptyStateIllustration = chartEmptyStateIllustration;
  },
  safeHtmlConfig: { ADD_TAGS: ['use'] },
};
</script>
<template>
  <div class="d-flex flex-column justify-content-center">
    <div
      v-safe-html:[$options.safeHtmlConfig]="chartEmptyStateIllustration"
      class="gl-mt-3 svg-w-100 d-flex align-items-center"
      :style="svgContainerStyle"
    ></div>
    <h5 class="text-center gl-mt-3">{{ __('No data to display') }}</h5>
  </div>
</template>