78 lines
1.8 KiB
Vue
78 lines
1.8 KiB
Vue
<script>
|
|
import { GlResizeObserverDirective } from '@gitlab/ui';
|
|
import { GlHeatmap } from '@gitlab/ui/dist/charts';
|
|
import dateformat from 'dateformat';
|
|
import { graphDataValidatorForValues } from '../../utils';
|
|
|
|
export default {
|
|
components: {
|
|
GlHeatmap,
|
|
},
|
|
directives: {
|
|
GlResizeObserverDirective,
|
|
},
|
|
props: {
|
|
graphData: {
|
|
type: Object,
|
|
required: true,
|
|
validator: graphDataValidatorForValues.bind(null, false),
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
width: 0,
|
|
};
|
|
},
|
|
computed: {
|
|
chartData() {
|
|
return this.metrics.result.reduce(
|
|
(acc, result, i) => [...acc, ...result.values.map((value, j) => [i, j, value[1]])],
|
|
[],
|
|
);
|
|
},
|
|
xAxisName() {
|
|
return this.graphData.x_label || '';
|
|
},
|
|
yAxisName() {
|
|
return this.graphData.y_label || '';
|
|
},
|
|
xAxisLabels() {
|
|
return this.metrics.result.map(res => Object.values(res.metric)[0]);
|
|
},
|
|
yAxisLabels() {
|
|
return this.result.values.map(val => {
|
|
const [yLabel] = val;
|
|
|
|
return dateformat(new Date(yLabel), 'HH:MM:ss');
|
|
});
|
|
},
|
|
result() {
|
|
return this.metrics.result[0];
|
|
},
|
|
metrics() {
|
|
return this.graphData.metrics[0];
|
|
},
|
|
},
|
|
methods: {
|
|
onResize() {
|
|
if (this.$refs.heatmapChart) return;
|
|
const { width } = this.$refs.heatmapChart.$el.getBoundingClientRect();
|
|
this.width = width;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<template>
|
|
<div v-gl-resize-observer-directive="onResize" class="col-12 col-lg-6">
|
|
<gl-heatmap
|
|
ref="heatmapChart"
|
|
v-bind="$attrs"
|
|
:data-series="chartData"
|
|
:x-axis-name="xAxisName"
|
|
:y-axis-name="yAxisName"
|
|
:x-axis-labels="xAxisLabels"
|
|
:y-axis-labels="yAxisLabels"
|
|
:width="width"
|
|
/>
|
|
</div>
|
|
</template>
|