4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 13:16:37 +00:00
AzuraCast/frontend/vue/components/Common/Charts/HourChart.vue
2022-12-29 15:15:05 -06:00

71 lines
1.6 KiB
Vue

<template>
<canvas ref="$canvas">
<slot />
</canvas>
</template>
<script setup>
import {Tableau20} from "~/vendor/chartjs-colorschemes/colorschemes.tableau";
import {Chart} from "chart.js";
import {useTranslate} from "~/vendor/gettext";
import {onMounted, onUnmounted, ref} from "vue";
const props = defineProps({
options: Object,
data: Array,
labels: Array
});
let $chart = null;
const $canvas = ref(); // Template Ref
const {$gettext} = useTranslate();
onMounted(() => {
const defaultOptions = {
type: 'bar',
data: {
labels: props.labels,
datasets: props.data
},
options: {
aspectRatio: 2,
plugins: {
colorschemes: {
scheme: Tableau20
}
},
scales: {
x: {
scaleLabel: {
display: true,
labelString: $gettext('Hour')
}
},
y: {
scaleLabel: {
display: true,
labelString: $gettext('Listeners')
},
ticks: {
min: 0
}
}
}
}
};
if ($chart) {
$chart.destroy();
}
let chartOptions = _.defaultsDeep({}, props.options, defaultOptions);
$chart = new Chart($canvas.value.getContext('2d'), chartOptions);
});
onUnmounted(() => {
if ($chart) {
$chart.destroy();
}
});
</script>