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

57 lines
1.1 KiB
Vue

<template>
<canvas ref="canvas">
<slot></slot>
</canvas>
</template>
<script setup>
import {Tableau20} from "~/vendor/chartjs-colorschemes/colorschemes.tableau";
import {Chart} from "chart.js";
import {onMounted, onUnmounted, ref} from "vue";
const props = defineProps({
options: Object,
data: Array,
labels: Array,
aspectRatio: {
type: Number,
default: 2
}
});
const canvas = ref(); // Template ref
let $chart = null;
onMounted(() => {
const defaultOptions = {
type: 'pie',
data: {
labels: props.labels,
datasets: props.data
},
options: {
aspectRatio: props.aspectRatio,
plugins: {
colorschemes: {
scheme: Tableau20
}
}
}
};
if ($chart) {
$chart.destroy();
}
let chartOptions = _.defaultsDeep({}, props.options, defaultOptions);
$chart = new Chart(canvas.value.getContext('2d'), chartOptions);
});
onUnmounted(() => {
if ($chart) {
$chart.destroy();
}
});
</script>