mirror of
https://github.com/elisiariocouto/leggen.git
synced 2025-12-29 06:19:04 +00:00
127 lines
3.6 KiB
TypeScript
127 lines
3.6 KiB
TypeScript
import {
|
|
LineChart,
|
|
Line,
|
|
XAxis,
|
|
YAxis,
|
|
CartesianGrid,
|
|
Tooltip,
|
|
ResponsiveContainer,
|
|
Legend,
|
|
} from "recharts";
|
|
import type { Balance } from "../../types/api";
|
|
|
|
interface BalanceChartProps {
|
|
data: Balance[];
|
|
className?: string;
|
|
}
|
|
|
|
interface ChartDataPoint {
|
|
date: string;
|
|
balance: number;
|
|
account_id: string;
|
|
}
|
|
|
|
interface AggregatedDataPoint {
|
|
date: string;
|
|
[key: string]: string | number;
|
|
}
|
|
|
|
export default function BalanceChart({ data, className }: BalanceChartProps) {
|
|
// Process balance data for the chart
|
|
const chartData = data
|
|
.filter((balance) => balance.balance_type === "closingBooked")
|
|
.map((balance) => ({
|
|
date: new Date(balance.reference_date).toLocaleDateString(),
|
|
balance: balance.balance_amount,
|
|
account_id: balance.account_id,
|
|
}))
|
|
.sort((a, b) => new Date(a.date).getTime() - new Date(b.date).getTime());
|
|
|
|
// Group by account and aggregate
|
|
const accountBalances: { [key: string]: ChartDataPoint[] } = {};
|
|
chartData.forEach((item) => {
|
|
if (!accountBalances[item.account_id]) {
|
|
accountBalances[item.account_id] = [];
|
|
}
|
|
accountBalances[item.account_id].push(item);
|
|
});
|
|
|
|
// Create aggregated data points
|
|
const aggregatedData: { [key: string]: AggregatedDataPoint } = {};
|
|
Object.entries(accountBalances).forEach(([accountId, balances]) => {
|
|
balances.forEach((balance) => {
|
|
if (!aggregatedData[balance.date]) {
|
|
aggregatedData[balance.date] = { date: balance.date };
|
|
}
|
|
aggregatedData[balance.date][accountId] = balance.balance;
|
|
});
|
|
});
|
|
|
|
const finalData = Object.values(aggregatedData).sort(
|
|
(a, b) => new Date(a.date).getTime() - new Date(b.date).getTime()
|
|
);
|
|
|
|
const colors = ["#3B82F6", "#10B981", "#F59E0B", "#EF4444", "#8B5CF6"];
|
|
|
|
if (finalData.length === 0) {
|
|
return (
|
|
<div className={className}>
|
|
<h3 className="text-lg font-medium text-gray-900 mb-4">
|
|
Balance Progress
|
|
</h3>
|
|
<div className="h-80 flex items-center justify-center text-gray-500">
|
|
No balance data available
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className={className}>
|
|
<h3 className="text-lg font-medium text-gray-900 mb-4">
|
|
Balance Progress Over Time
|
|
</h3>
|
|
<div className="h-80">
|
|
<ResponsiveContainer width="100%" height="100%">
|
|
<LineChart data={finalData}>
|
|
<CartesianGrid strokeDasharray="3 3" />
|
|
<XAxis
|
|
dataKey="date"
|
|
tick={{ fontSize: 12 }}
|
|
tickFormatter={(value) => {
|
|
const date = new Date(value);
|
|
return date.toLocaleDateString(undefined, {
|
|
month: "short",
|
|
day: "numeric",
|
|
});
|
|
}}
|
|
/>
|
|
<YAxis
|
|
tick={{ fontSize: 12 }}
|
|
tickFormatter={(value) => `€${value.toLocaleString()}`}
|
|
/>
|
|
<Tooltip
|
|
formatter={(value: number) => [
|
|
`€${value.toLocaleString()}`,
|
|
"Balance",
|
|
]}
|
|
labelFormatter={(label) => `Date: ${label}`}
|
|
/>
|
|
<Legend />
|
|
{Object.keys(accountBalances).map((accountId, index) => (
|
|
<Line
|
|
key={accountId}
|
|
type="monotone"
|
|
dataKey={accountId}
|
|
stroke={colors[index % colors.length]}
|
|
strokeWidth={2}
|
|
dot={{ r: 4 }}
|
|
name={`Account ${accountId.split('-')[1]}`}
|
|
/>
|
|
))}
|
|
</LineChart>
|
|
</ResponsiveContainer>
|
|
</div>
|
|
</div>
|
|
);
|
|
} |