mars-v2-frontend/src/components/account/AccountList/index.tsx
Bob van der Helm ab0e184a39
refactor components folder (#734)
* refactor components folder

* create leverage slider variants
2024-01-16 15:35:18 +01:00

77 lines
2.7 KiB
TypeScript

import classNames from 'classnames'
import { useEffect } from 'react'
import { useLocation, useNavigate, useSearchParams } from 'react-router-dom'
import AccountStats from 'components/account/AccountList/AccountStats'
import Card from 'components/common/Card'
import Radio from 'components/common/Radio'
import Text from 'components/common/Text'
import useAccountIds from 'hooks/accounts/useAccountIds'
import useAccountId from 'hooks/useAccountId'
import useStore from 'store'
import { getPage, getRoute } from 'utils/route'
interface Props {
setShowMenu: (show: boolean) => void
}
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 { setShowMenu } = props
const navigate = useNavigate()
const { pathname } = useLocation()
const currentAccountId = useAccountId()
const address = useStore((s) => s.address)
const { data: accountIds } = useAccountIds(address, true, true)
const [searchParams] = useSearchParams()
useEffect(() => {
if (!currentAccountId) return
const element = document.getElementById(`account-${currentAccountId}`)
if (element) {
element.scrollIntoView({ behavior: 'smooth' })
}
}, [currentAccountId])
if (!accountIds || !accountIds.length) return null
return (
<div className='flex flex-wrap w-full p-4'>
{accountIds.map((accountId) => {
const isActive = currentAccountId === accountId
return (
<div key={accountId} id={`account-${accountId}`} className='w-full pt-4'>
<Card
id={`account-${accountId}`}
key={accountId}
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), searchParams, address, accountId))
}}
title={
<div className={accountCardHeaderClasses} role={!isActive ? 'button' : undefined}>
<Text size='xs' className='flex flex-1'>
Credit Account {accountId}
</Text>
<Radio active={isActive} className='group-hover/account:opacity-100' />
</div>
}
>
<AccountStats accountId={accountId} isActive={isActive} setShowMenu={setShowMenu} />
</Card>
</div>
)
})}
</div>
)
}