summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/monitoring/components/graph_group.vue
blob: 72ddd8d4fcff661b10d400ecd392cd91c7ebda2e (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
<script>
import Icon from '~/vue_shared/components/icon.vue';

export default {
  components: {
    Icon,
  },
  props: {
    name: {
      type: String,
      required: true,
    },
    showPanels: {
      type: Boolean,
      required: false,
      default: true,
    },
    collapseGroup: {
      type: Boolean,
      required: true,
    },
  },
  data() {
    return {
      showGroup: true,
    };
  },
  computed: {
    caretIcon() {
      return this.collapseGroup && this.showGroup ? 'angle-down' : 'angle-right';
    },
  },
  created() {
    this.showGroup = this.collapseGroup;
  },
  methods: {
    collapse() {
      this.showGroup = !this.showGroup;
    },
  },
};
</script>

<template>
  <div v-if="showPanels" class="card prometheus-panel">
    <div class="card-header d-flex align-items-center">
      <h4 class="flex-grow-1">{{ name }}</h4>
      <a role="button" @click="collapse">
        <icon :size="16" :aria-label="__('Toggle collapse')" :name="caretIcon" />
      </a>
    </div>
    <div
      v-if="collapseGroup"
      v-show="collapseGroup && showGroup"
      class="card-body prometheus-graph-group"
    >
      <slot></slot>
    </div>
  </div>
  <div v-else class="prometheus-graph-group"><slot></slot></div>
</template>