import { Chart, ChartProps } from '@/components/charts/Chart'; import { useState } from 'react'; import { StatusLight } from '@umami/react-zen'; import { formatLongNumber } from '@/lib/format'; export interface PieChartProps extends ChartProps { type?: 'doughnut' | 'pie'; } export function PieChart(props: PieChartProps) { const [tooltip, setTooltip] = useState(null); const { type = 'pie' } = props; const handleTooltip = ({ tooltip }) => { const { labelColors, dataPoints } = tooltip; setTooltip( tooltip.opacity ? ( {formatLongNumber(dataPoints?.[0]?.raw)} {dataPoints?.[0]?.label} ) : null, ); }; return ; }