mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-28 17:43:47 +00:00
86 lines
2.6 KiB
TypeScript
86 lines
2.6 KiB
TypeScript
import { useTranslation } from 'react-i18next';
|
|
import { Cell, Pie, PieChart, ResponsiveContainer, Tooltip } from 'recharts';
|
|
|
|
import { SALES_STATS } from '../../constants/salesStats';
|
|
import { useChartColors } from '../../hooks/useChartColors';
|
|
|
|
interface DonutChartProps {
|
|
data: { name: string; value: number; color?: string }[];
|
|
title: string;
|
|
height?: number;
|
|
}
|
|
|
|
export function DonutChart({
|
|
data,
|
|
title,
|
|
height = SALES_STATS.CHART.PIE_HEIGHT,
|
|
}: DonutChartProps) {
|
|
const { t } = useTranslation();
|
|
const colors = useChartColors();
|
|
|
|
if (data.length === 0) {
|
|
return (
|
|
<div className="bento-card">
|
|
<h4 className="mb-3 text-sm font-semibold text-dark-200">{title}</h4>
|
|
<div className="flex items-center justify-center text-sm text-dark-400" style={{ height }}>
|
|
{t('common.noData')}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="bento-card">
|
|
<h4 className="mb-3 text-sm font-semibold text-dark-200">{title}</h4>
|
|
<ResponsiveContainer width="100%" height={height}>
|
|
<PieChart>
|
|
<Pie
|
|
data={data}
|
|
cx="50%"
|
|
cy="50%"
|
|
innerRadius={55}
|
|
outerRadius={80}
|
|
paddingAngle={2}
|
|
dataKey="value"
|
|
nameKey="name"
|
|
>
|
|
{data.map((entry, index) => (
|
|
<Cell
|
|
key={entry.name}
|
|
fill={entry.color || SALES_STATS.BAR_COLORS[index % SALES_STATS.BAR_COLORS.length]}
|
|
/>
|
|
))}
|
|
</Pie>
|
|
<Tooltip
|
|
contentStyle={{
|
|
backgroundColor: colors.tooltipBg,
|
|
border: `1px solid ${colors.tooltipBorder}`,
|
|
borderRadius: SALES_STATS.TOOLTIP.BORDER_RADIUS,
|
|
fontSize: SALES_STATS.TOOLTIP.FONT_SIZE,
|
|
color: colors.label,
|
|
}}
|
|
labelStyle={{ color: colors.label }}
|
|
itemStyle={{ color: colors.label }}
|
|
/>
|
|
</PieChart>
|
|
</ResponsiveContainer>
|
|
<div className="mt-2 flex flex-wrap justify-center gap-3">
|
|
{data.map((entry, index) => (
|
|
<div key={entry.name} className="flex items-center gap-1.5 text-xs text-dark-400">
|
|
<div
|
|
className="h-2.5 w-2.5 rounded-full"
|
|
style={{
|
|
backgroundColor:
|
|
entry.color || SALES_STATS.BAR_COLORS[index % SALES_STATS.BAR_COLORS.length],
|
|
}}
|
|
/>
|
|
<span>
|
|
{entry.name}: {entry.value}
|
|
</span>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|