'use client'; import { PolarAngleAxis, RadialBar, RadialBarChart, ResponsiveContainer, } from 'recharts'; import { TODAY_CHART_PRIMARY_COLOR } from '@/components/today/chart-theme'; interface TodayRadialGaugeChartProps { percent: number; completed: number; total: number; percentLabel: string; tasksLabel: string; size?: 'sm' | 'md'; fillColor?: string; showRatio?: boolean; } export function TodayRadialGaugeChart({ percent, completed, total, percentLabel, tasksLabel, size = 'md', fillColor = TODAY_CHART_PRIMARY_COLOR, showRatio = true, }: TodayRadialGaugeChartProps) { const isCompact = size === 'sm'; const clamped = Math.max(0, Math.min(100, percent)); const data = [{ name: 'progress', value: clamped, fill: fillColor }]; return (
{percentLabel} {tasksLabel} {showRatio && total > 0 ? ( {completed}/{total} ) : null}
); }