Files
solidtime/resources/js/Components/Common/Reporting/ReportingPieChart.vue
Gregor Vostrak df2fe1da1e add light mode
2025-03-28 14:54:31 +01:00

94 lines
2.1 KiB
Vue

<script setup lang="ts">
import VChart, { THEME_KEY } from 'vue-echarts';
import { computed, provide } from 'vue';
import { use } from 'echarts/core';
import { CanvasRenderer } from 'echarts/renderers';
import { PieChart } from 'echarts/charts';
import {
GridComponent,
LegendComponent,
TitleComponent,
TooltipComponent,
} from 'echarts/components';
import { formatHumanReadableDuration } from '@/packages/ui/src/utils/time';
import { useCssVar } from "@vueuse/core";
use([
CanvasRenderer,
PieChart,
TitleComponent,
GridComponent,
TooltipComponent,
LegendComponent,
]);
provide(THEME_KEY, 'dark');
type ReportingChartDataEntry = {
value: number;
name: string;
color: string;
}[];
const props = defineProps<{
data: ReportingChartDataEntry | null;
}>();
const labelColor = useCssVar('--color-text-secondary', null, { observe: true });
const seriesData = computed(() => {
return props.data?.map((el) => {
return {
...el,
...{
itemStyle: {
color: `${el.color}BB`,
},
emphasis: {
itemStyle: {
color: `${el.color}`,
},
},
},
};
});
});
const option = computed(() => ({
tooltip: {
trigger: 'item',
},
legend: {
show: true,
top: '250px',
textStyle: {
color: labelColor.value,
},
},
backgroundColor: 'transparent',
series: [
{
label: {
show: false,
},
tooltip: {
valueFormatter: (value: number) => {
return formatHumanReadableDuration(value);
},
},
data: seriesData.value,
radius: ['30%', '60%'],
top: '-45%',
type: 'pie',
},
],
}));
</script>
<template>
<v-chart
class="background-transparent max-w-[300px] mx-auto h-[460px]"
:autoresize="true"
:option="option" />
</template>
<style scoped></style>