mirror of
https://github.com/Tomato6966/investment-portfolio-simulator.git
synced 2025-04-04 13:50:35 +02:00
fix downloading pdf
Some checks failed
Deploy to GitHub Pages / build-and-deploy (push) Has been cancelled
Some checks failed
Deploy to GitHub Pages / build-and-deploy (push) Has been cancelled
This commit is contained in:
parent
8d46e2bd06
commit
fc9db8df2b
1 changed files with 4 additions and 3 deletions
|
@ -1,8 +1,9 @@
|
||||||
import "jspdf-autotable";
|
import "jspdf-autotable";
|
||||||
|
|
||||||
|
import { isBefore, isSameDay } from "date-fns";
|
||||||
import { jsPDF } from "jspdf";
|
import { jsPDF } from "jspdf";
|
||||||
|
|
||||||
import { Asset } from "../types";
|
import { Asset, PortfolioPerformance } from "../types";
|
||||||
import { calculateFutureProjection } from "./calculations/futureProjection";
|
import { calculateFutureProjection } from "./calculations/futureProjection";
|
||||||
|
|
||||||
// Add type augmentation for the autotable plugin
|
// Add type augmentation for the autotable plugin
|
||||||
|
@ -39,7 +40,7 @@ export const downloadTableAsCSV = (tableData: any[], filename: string) => {
|
||||||
|
|
||||||
export const generatePortfolioPDF = async (
|
export const generatePortfolioPDF = async (
|
||||||
assets: Asset[],
|
assets: Asset[],
|
||||||
performance: any,
|
performance: PortfolioPerformance,
|
||||||
savingsPlansPerformance: any[],
|
savingsPlansPerformance: any[],
|
||||||
performancePerAnno: number
|
performancePerAnno: number
|
||||||
) => {
|
) => {
|
||||||
|
@ -120,7 +121,7 @@ export const generatePortfolioPDF = async (
|
||||||
`${performance.summary.ttworPercentage.toFixed(2)}%`,
|
`${performance.summary.ttworPercentage.toFixed(2)}%`,
|
||||||
],
|
],
|
||||||
// Individual positions
|
// 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 asset = assets.find(a => a.name === inv.assetName)!;
|
||||||
const investment = asset.investments.find(i => i.id === inv.id)! || inv;
|
const investment = asset.investments.find(i => i.id === inv.id)! || inv;
|
||||||
const filtered = performance.investments.filter((v: any) => v.assetName === inv.assetName);
|
const filtered = performance.investments.filter((v: any) => v.assetName === inv.assetName);
|
||||||
|
|
Loading…
Add table
Reference in a new issue