import { ResponsiveLine } from '@nivo/line' import { PortfolioMetrics } from 'common/user' import { formatMoney } from 'common/util/format' import dayjs from 'dayjs' import { last } from 'lodash' import { memo } from 'react' import { useWindowSize } from 'web/hooks/use-window-size' import { Col } from '../layout/col' export const PortfolioValueGraph = memo(function PortfolioValueGraph(props: { portfolioHistory: PortfolioMetrics[] mode: 'value' | 'profit' setGraphDisplayNumber: (arg0: number | string | null) => void height?: number }) { const { portfolioHistory, height, mode, setGraphDisplayNumber } = props const { width } = useWindowSize() function getPoints(line: 'value' | 'posProfit' | 'negProfit') { const points = portfolioHistory.map((p) => { const { timestamp, balance, investmentValue, totalDeposits } = p const value = balance + investmentValue const profit = value - totalDeposits let posProfit = null let negProfit = null if (profit < 0) { negProfit = profit } else { posProfit = profit } return { x: new Date(timestamp), y: line === 'value' ? value : line === 'posProfit' ? posProfit : negProfit, } }) return points } let data if (mode === 'value') { data = [{ id: 'value', data: getPoints('value'), color: '#4f46e5' }] } else { data = [ { id: 'negProfit', data: getPoints('negProfit'), color: '#dc2626', }, { id: 'posProfit', data: getPoints('posProfit'), color: '#14b8a6', }, ] } const firstPoints = data[0].data const numYTickValues = 2 const endDate = last(data[0].data)?.x const firstPointsY = firstPoints .map((p) => p.y) .filter((y) => { return y !== null }) const yMin = mode === 'value' ? Math.min(...firstPointsY) : Math.min( ...firstPointsY, ...data[1].data .filter((p) => { return p.y !== null }) .map((p) => p.y) ) const yMax = mode === 'value' ? Math.max(...firstPointsY) : Math.max( ...firstPointsY, ...data[1].data .filter((p) => { return p.y !== null }) .map((p) => p.y) ) return (