2022-12-13 13:21:30 +00:00
|
|
|
import classNames from 'classnames'
|
|
|
|
|
2023-02-24 08:47:27 +00:00
|
|
|
import { Text } from 'components/Text'
|
|
|
|
import { FormattedNumber } from 'components/FormattedNumber'
|
2022-12-13 13:21:30 +00:00
|
|
|
|
|
|
|
interface Props {
|
|
|
|
title: string
|
|
|
|
data?: PositionsData[]
|
|
|
|
}
|
|
|
|
|
|
|
|
export const PositionsList = (props: Props) => {
|
|
|
|
if (!props?.data || props.data?.length === 0) return null
|
|
|
|
const arrayKeys = Object.keys(props.data[0])
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='flex w-full flex-wrap'>
|
|
|
|
<Text uppercase className='w-full bg-black/20 px-4 py-2 text-white/40'>
|
|
|
|
{props.title}
|
|
|
|
</Text>
|
|
|
|
<div className='flex w-full flex-wrap'>
|
|
|
|
<>
|
|
|
|
<div className='mb-2 flex w-full border-b border-white/20 bg-black/20 px-4 py-2'>
|
|
|
|
{arrayKeys.map((label, index) => (
|
|
|
|
<Text key={index} size='xs' uppercase className='flex-1 text-white'>
|
|
|
|
{label}
|
|
|
|
</Text>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
{props.data &&
|
|
|
|
props.data.map((positionsData: PositionsData, index) => (
|
|
|
|
<div key={index} className='align-center flex w-full px-4 py-2'>
|
|
|
|
{arrayKeys.map((key, index) => {
|
|
|
|
if (index === 0)
|
|
|
|
return (
|
|
|
|
<Text
|
|
|
|
size='xs'
|
|
|
|
key={index}
|
|
|
|
className={classNames(
|
|
|
|
'flex-1 border-l-4 pl-2 text-white/60',
|
|
|
|
positionsData[key].type === 'debt' ? 'border-loss' : 'border-profit',
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{positionsData[key].amount}
|
|
|
|
</Text>
|
|
|
|
)
|
|
|
|
return (
|
|
|
|
<Text size='xs' key={index} className='flex-1 text-white/60'>
|
|
|
|
{positionsData[key].format && positionsData[key].format === 'number' ? (
|
|
|
|
<FormattedNumber animate {...positionsData[key]} />
|
|
|
|
) : (
|
|
|
|
positionsData[key]?.amount || ''
|
|
|
|
)}
|
|
|
|
</Text>
|
|
|
|
)
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|