-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHome.tsx
More file actions
187 lines (177 loc) · 5.68 KB
/
Copy pathHome.tsx
File metadata and controls
187 lines (177 loc) · 5.68 KB
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
import { CartesianGrid, Line, LineChart, XAxis, YAxis } from 'recharts'
import { RefreshPortfolioButton } from '@/components/PortfolioCard'
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
import {
ChartConfig,
ChartContainer,
ChartTooltip,
ChartTooltipContent,
} from '@/components/ui/chart'
import { useCurrency } from '@/hooks/useCurrency'
import {
useBalances,
useEthValuesByAccount,
useFiat,
useNetworthTimeSeries,
} from '@/hooks/useHono'
import { cn, formatCurrency } from '@/lib/utils'
const chartConfig = {
value: {
label: 'Value',
},
desktop: {
label: 'Desktop',
color: 'var(--card-foreground)',
},
} satisfies ChartConfig
export function Home() {
const balances = useBalances()
const { currency } = useCurrency()
const { data: fiat } = useFiat()
const ethValuesByAccount = useEthValuesByAccount()
const { data: networthTimeSeries } = useNetworthTimeSeries(currency)
return (
<>
<div className="flex items-center justify-between gap-4">
<span className="text-2xl font-semibold">EVM Portfolio</span>
<RefreshPortfolioButton />
</div>
<Card>
<CardContent className="flex items-center justify-center gap-6">
<div className="flex flex-col items-center justify-center gap-2">
<h1 className="text-5xl font-semibold">
{(() => {
if (fiat && currency) {
return formatCurrency(
(balances.data?.totalEthValue ?? 0) /
fiat.getRate(currency),
currency
)
}
return '...'
})()}
</h1>
<span className="text-muted-foreground text-sm">Total value</span>
</div>
<div
className={cn(
'relative hidden w-full',
(currency === 'USD' || currency === 'ETH') &&
!!networthTimeSeries &&
networthTimeSeries.length > 5 &&
'lg:block'
)}
>
<ChartContainer
config={chartConfig}
className="aspect-auto h-[250px] w-full"
>
<LineChart
accessibilityLayer
data={networthTimeSeries}
margin={{
left: 12,
right: 12,
top: 4,
}}
>
<CartesianGrid vertical={false} />
<XAxis
dataKey="timestamp"
tickLine={false}
axisLine={false}
tickMargin={8}
minTickGap={36}
tickFormatter={(value) => {
const date = new Date(value)
return date.toLocaleDateString('en-US', {
month: 'short',
day: 'numeric',
})
}}
/>
<YAxis
domain={['dataMin', 'dataMax']}
axisLine={false}
tick={false}
/>
<ChartTooltip
content={
<ChartTooltipContent
indicator="line"
labelFormatter={(value) => {
const date = new Date(value)
return date.toLocaleDateString('en-US', {
month: 'short',
day: 'numeric',
hour: 'numeric',
minute: 'numeric',
})
}}
formatter={(value) => formatCurrency(value as number, currency ?? 'USD')}
/>
}
/>
<Line
dataKey="value"
type="linear"
stroke="var(--color-desktop)"
strokeWidth={2}
dot={false}
/>
</LineChart>
</ChartContainer>
</div>
</CardContent>
</Card>
<div className="grid gap-4 lg:grid-cols-2">
<Card className="h-fit">
<CardHeader>
<CardTitle>Chains</CardTitle>
</CardHeader>
<CardContent className="flex flex-col gap-2">
{balances.data?.ethValueByChain.map((chain) => (
<div
key={chain.id}
className="flex items-center justify-between gap-4"
>
<h2>{chain.name}</h2>
{fiat && currency && (
<span>
{formatCurrency(
chain.totalEthValue / fiat.getRate(currency),
currency
)}
</span>
)}
</div>
))}
</CardContent>
</Card>
<Card className="h-fit">
<CardHeader>
<CardTitle>Accounts</CardTitle>
</CardHeader>
<CardContent className="flex flex-col gap-2">
{ethValuesByAccount.data?.map((account) => (
<div
key={account.owner.address}
className="flex items-center justify-between gap-4"
>
<span>{account.owner.name}</span>
{fiat && currency && (
<span>
{formatCurrency(
account.ethValue / fiat.getRate(currency),
currency
)}
</span>
)}
</div>
))}
</CardContent>
</Card>
</div>
</>
)
}