From fc9db8df2bb524b523eeaad79248c0b8c06d2a77 Mon Sep 17 00:00:00 2001 From: tomato6966 Date: Fri, 27 Dec 2024 17:03:06 +0100 Subject: [PATCH] fix downloading pdf --- src/utils/export.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/utils/export.ts b/src/utils/export.ts index f48ce24..ef1b113 100644 --- a/src/utils/export.ts +++ b/src/utils/export.ts @@ -1,8 +1,9 @@ import "jspdf-autotable"; +import { isBefore, isSameDay } from "date-fns"; import { jsPDF } from "jspdf"; -import { Asset } from "../types"; +import { Asset, PortfolioPerformance } from "../types"; import { calculateFutureProjection } from "./calculations/futureProjection"; // Add type augmentation for the autotable plugin @@ -39,7 +40,7 @@ export const downloadTableAsCSV = (tableData: any[], filename: string) => { export const generatePortfolioPDF = async ( assets: Asset[], - performance: any, + performance: PortfolioPerformance, savingsPlansPerformance: any[], performancePerAnno: number ) => { @@ -120,7 +121,7 @@ export const generatePortfolioPDF = async ( `${performance.summary.ttworPercentage.toFixed(2)}%`, ], // Individual positions - ...performance.investments.sort((a: any, b: any) => a.date.localeCompare(b.date)).map((inv: any) => { + ...performance.investments.sort((a, b) => (isBefore(a.date, b.date) || isSameDay(a.date, b.date)) ? -1 : 1).map((inv) => { const asset = assets.find(a => a.name === inv.assetName)!; const investment = asset.investments.find(i => i.id === inv.id)! || inv; const filtered = performance.investments.filter((v: any) => v.assetName === inv.assetName);