summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/monitoring/components/graph_row.vue
blob: bdb9149c3b419f9b8ee693f0a9cb06720dfea1c0 (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 Graph from './graph.vue';

  export default {
    props: {
      rowData: {
        type: Array,
        required: true,
      },
      updateAspectRatio: {
        type: Boolean,
        required: true,
      },
      deploymentData: {
        type: Array,
        required: true,
      },
    },
    components: {
      Graph,
    },
    computed: {
      bootstrapClass() {
        return this.rowData.length >= 2 ? 'col-md-6' : 'col-md-12';
      },
    },
  };
</script>

<template>
  <div class="prometheus-row row">
    <graph
      v-for="(graphData, index) in rowData"
      :graph-data="graphData"
      :class-type="bootstrapClass"
      :key="index"
      :update-aspect-ratio="updateAspectRatio"
      :deployment-data="deploymentData"
    />
  </div>
</template>