Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, BarChart, Bar, AreaChart, Area, } from 'recharts'; import { cn } from '@/lib/utils'; interface ChartData { name: string; value: number; [key: string]: any; } interface BaseChartProps { data: ChartData[]; className?: string; height?: number; color?: string; } interface LineChartProps extends BaseChartProps { type: 'line'; dataKey: string; stroke?: string; strokeWidth?: number; } interface BarChartProps extends BaseChartProps { type: 'bar'; dataKey: string; fill?: string; } interface AreaChartProps extends BaseChartProps { type: 'area'; dataKey: string; fill?: string; stroke?: string; } type ChartProps = LineChartProps | BarChartProps | AreaChartProps; const CustomTooltip = ({ active, payload, label }: any) => { if (active && payload && payload.length) { return ( <div className="bg-background border border-border rounded-lg shadow-lg p-3"> <p className="text-sm font-medium text-foreground">{label}</p> {payload.map((entry: any, index: number) => ( <p key={index} className="text-sm text-muted-foreground"> <span className="font-medium" style={{ color: entry.color }}> {entry.dataKey}: </span>{' '} {typeof entry.value === 'number' ? entry.value.toLocaleString() : entry.value} </p> ))} </div> ); } return null; }; export function Chart({ data, className, height = 300, type, ...props }: ChartProps) { const commonProps = { data, margin: { top: 5, right: 30, left: 20, bottom: 5 }, }; const renderChart = () => { switch (type) { case 'line': return ( <LineChart {...commonProps}> <CartesianGrid strokeDasharray="3 3" className="stroke-muted" /> <XAxis dataKey="name" className="text-xs fill-muted-foreground" tick={{ fontSize: 12 }} /> <YAxis className="text-xs fill-muted-foreground" tick={{ fontSize: 12 }} /> <Tooltip content={<CustomTooltip />} /> <Line type="monotone" dataKey={props.dataKey} stroke={(props as LineChartProps).stroke || 'hsl(var(--primary))'} strokeWidth={(props as LineChartProps).strokeWidth || 2} dot={{ fill: (props as LineChartProps).stroke || 'hsl(var(--primary))', strokeWidth: 2, r: 4 }} activeDot={{ r: 6, stroke: (props as LineChartProps).stroke || 'hsl(var(--primary))', strokeWidth: 2 }} /> </LineChart> ); case 'bar': return ( <BarChart {...commonProps}> <CartesianGrid strokeDasharray="3 3" className="stroke-muted" /> <XAxis dataKey="name" className="text-xs fill-muted-foreground" tick={{ fontSize: 12 }} /> <YAxis className="text-xs fill-muted-foreground" tick={{ fontSize: 12 }} /> <Tooltip content={<CustomTooltip />} /> <Bar dataKey={props.dataKey} fill={(props as BarChartProps).fill || 'hsl(var(--primary))'} radius={[4, 4, 0, 0]} /> </BarChart> ); case 'area': return ( <AreaChart {...commonProps}> <CartesianGrid strokeDasharray="3 3" className="stroke-muted" /> <XAxis dataKey="name" className="text-xs fill-muted-foreground" tick={{ fontSize: 12 }} /> <YAxis className="text-xs fill-muted-foreground" tick={{ fontSize: 12 }} /> <Tooltip content={<CustomTooltip />} /> <Area type="monotone" dataKey={props.dataKey} stroke={(props as AreaChartProps).stroke || 'hsl(var(--primary))'} fill={(props as AreaChartProps).fill || 'hsl(var(--primary))'} fillOpacity={0.1} strokeWidth={2} /> </AreaChart> ); default: return <div>Unsupported chart type</div>; } }; return ( <div className={cn('w-full', className)} style={{ height }}> <ResponsiveContainer width="100%" height="100%"> {renderChart()} </ResponsiveContainer> </div> ); } |