summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/performance_bar/components/simple_metric.vue
blob: 358a57d5bc5dd2d25a4a8fb2f0abe4e5e47d3755 (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
<script>
export default {
  props: {
    currentRequest: {
      type: Object,
      required: true,
    },
    metric: {
      type: String,
      required: true,
    },
  },
  computed: {
    duration() {
      return (
        this.currentRequest.details[this.metric] &&
        this.currentRequest.details[this.metric].duration
      );
    },
    calls() {
      return (
        this.currentRequest.details[this.metric] && this.currentRequest.details[this.metric].calls
      );
    },
  },
};
</script>
<template>
  <div :id="`peek-view-${metric}`" class="view">
    <span v-if="currentRequest.details" class="bold"> {{ duration }} / {{ calls }} </span>
    {{ metric }}
  </div>
</template>