148 lines
5.8 KiB
TypeScript
148 lines
5.8 KiB
TypeScript
import classNames from 'classnames'
|
|
import { useCallback, useEffect } from 'react'
|
|
import { useLocation, useNavigate, useParams } from 'react-router-dom'
|
|
|
|
import AccountFundFirst from 'components/Account/AccountFund'
|
|
import AccountStats from 'components/Account/AccountStats'
|
|
import Button from 'components/Button'
|
|
import Card from 'components/Card'
|
|
import { ArrowCircledTopRight, ArrowDownLine, ArrowUpLine, TrashBin } from 'components/Icons'
|
|
import Radio from 'components/Radio'
|
|
import SwitchWithLabel from 'components/SwitchWithLabel'
|
|
import Text from 'components/Text'
|
|
import useAutoLendEnabledAccountIds from 'hooks/useAutoLendEnabledAccountIds'
|
|
import useCurrentAccount from 'hooks/useCurrentAccount'
|
|
import usePrices from 'hooks/usePrices'
|
|
import useStore from 'store'
|
|
import { calculateAccountValue } from 'utils/accounts'
|
|
import { getPage, getRoute } from 'utils/route'
|
|
|
|
interface Props {
|
|
accounts: Account[]
|
|
}
|
|
|
|
const accountCardHeaderClasses = classNames(
|
|
'flex w-full items-center justify-between bg-white/20 px-4 py-2.5 text-white/70',
|
|
'border border-transparent border-b-white/20',
|
|
'group-hover/account:bg-white/30',
|
|
)
|
|
|
|
export default function AccountList(props: Props) {
|
|
const navigate = useNavigate()
|
|
const { pathname } = useLocation()
|
|
const { address } = useParams()
|
|
const { data: prices } = usePrices()
|
|
const { autoLendEnabledAccountIds, toggleAutoLend } = useAutoLendEnabledAccountIds()
|
|
const account = useCurrentAccount()
|
|
const accountId = account?.id
|
|
|
|
const deleteAccountHandler = useCallback(() => {
|
|
if (!account) return
|
|
useStore.setState({ accountDeleteModal: account })
|
|
}, [account])
|
|
|
|
useEffect(() => {
|
|
if (!accountId) return
|
|
const element = document.getElementById(`account-${accountId}`)
|
|
if (element) {
|
|
element.scrollIntoView({ behavior: 'smooth' })
|
|
}
|
|
}, [accountId])
|
|
|
|
if (!props.accounts?.length) return null
|
|
|
|
return (
|
|
<div className='flex w-full flex-wrap p-4'>
|
|
{props.accounts.map((account) => {
|
|
const positionBalance = calculateAccountValue('deposits', account, prices)
|
|
const isActive = accountId === account.id
|
|
const isAutoLendEnabled = autoLendEnabledAccountIds.includes(account.id)
|
|
|
|
return (
|
|
<div key={account.id} id={`account-${account.id}`} className='w-full pt-4'>
|
|
<Card
|
|
id={`account-${account.id}`}
|
|
key={account.id}
|
|
className={classNames('w-full', !isActive && 'group/account hover:cursor-pointer')}
|
|
contentClassName='bg-white/10 group-hover/account:bg-white/20'
|
|
onClick={() => {
|
|
if (isActive) return
|
|
useStore.setState({ accountDeleteModal: null })
|
|
navigate(getRoute(getPage(pathname), address, account.id))
|
|
}}
|
|
title={
|
|
<div className={accountCardHeaderClasses} role={!isActive ? 'button' : undefined}>
|
|
<Text size='xs' className='flex flex-1'>
|
|
Credit Account {account.id}
|
|
</Text>
|
|
<Radio active={isActive} className='group-hover/account:opacity-100' />
|
|
</div>
|
|
}
|
|
>
|
|
{isActive ? (
|
|
<>
|
|
<div className='w-full border border-transparent border-b-white/20 p-4'>
|
|
<AccountStats account={account} />
|
|
</div>
|
|
<div className='grid grid-flow-row grid-cols-2 gap-4 p-4'>
|
|
<Button
|
|
className='w-full'
|
|
text='Fund'
|
|
color='tertiary'
|
|
leftIcon={<ArrowUpLine />}
|
|
onClick={() => {
|
|
if (positionBalance.isLessThanOrEqualTo(0)) {
|
|
useStore.setState({ focusComponent: <AccountFundFirst /> })
|
|
return
|
|
}
|
|
useStore.setState({ fundAndWithdrawModal: 'fund' })
|
|
}}
|
|
/>
|
|
<Button
|
|
className='w-full'
|
|
color='tertiary'
|
|
leftIcon={<ArrowDownLine />}
|
|
text='Withdraw'
|
|
onClick={() => {
|
|
useStore.setState({ fundAndWithdrawModal: 'withdraw' })
|
|
}}
|
|
disabled={positionBalance.isLessThanOrEqualTo(0)}
|
|
/>
|
|
<Button
|
|
className='w-full'
|
|
color='tertiary'
|
|
leftIcon={<TrashBin />}
|
|
text='Delete'
|
|
onClick={() => deleteAccountHandler()}
|
|
/>
|
|
<Button
|
|
className='w-full'
|
|
color='tertiary'
|
|
leftIcon={<ArrowCircledTopRight />}
|
|
text='Transfer'
|
|
onClick={() => {}}
|
|
/>
|
|
<div className='col-span-2 border border-transparent border-t-white/10 pt-4'>
|
|
<SwitchWithLabel
|
|
name='isLending'
|
|
label='Lend assets to earn yield'
|
|
value={isAutoLendEnabled}
|
|
onChange={() => toggleAutoLend(account.id)}
|
|
tooltip={`Fund your account and lend assets effortlessly! By lending, you'll earn attractive interest (APY) without impacting your LTV. It's a win-win situation - don't miss out on this easy opportunity to grow your holdings!`}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</>
|
|
) : (
|
|
<div className='w-full p-4'>
|
|
<AccountStats account={account} />
|
|
</div>
|
|
)}
|
|
</Card>
|
|
</div>
|
|
)
|
|
})}
|
|
</div>
|
|
)
|
|
}
|