mango-v4-ui/components/trade/UnsettledTrades.tsx

190 lines
6.9 KiB
TypeScript
Raw Normal View History

import mangoStore from '@store/mangoStore'
import { useTranslation } from 'next-i18next'
2022-10-03 19:26:50 -07:00
import { useCallback, useState } from 'react'
2022-09-28 18:50:02 -07:00
import { PublicKey } from '@solana/web3.js'
2022-10-02 22:42:28 -07:00
import { IconButton } from '@components/shared/Button'
2022-09-28 18:50:02 -07:00
import { notify } from 'utils/notifications'
2022-10-02 22:42:28 -07:00
import { CheckIcon, LinkIcon } from '@heroicons/react/20/solid'
import Tooltip from '@components/shared/Tooltip'
2022-10-03 17:59:25 -07:00
import Loading from '@components/shared/Loading'
2022-10-03 20:42:05 -07:00
import { useViewport } from 'hooks/useViewport'
import { breakpoints } from 'utils/theme'
2022-10-04 19:03:45 -07:00
import MarketLogos from './MarketLogos'
2022-11-18 09:09:39 -08:00
import useMangoAccount from 'hooks/useMangoAccount'
2022-10-02 22:42:28 -07:00
const UnsettledTrades = ({
unsettledSpotBalances,
}: {
unsettledSpotBalances: any
}) => {
2022-10-03 03:38:05 -07:00
const { t } = useTranslation(['common', 'trade'])
2022-11-18 09:09:39 -08:00
const { mangoAccount } = useMangoAccount()
const group = mangoStore((s) => s.group)
2022-10-03 17:59:25 -07:00
const [settleMktAddress, setSettleMktAddress] = useState<string>('')
2022-10-03 20:42:05 -07:00
const { width } = useViewport()
const showTableView = width ? width > breakpoints.md : false
2022-09-28 18:50:02 -07:00
const handleSettleFunds = useCallback(async (mktAddress: string) => {
const client = mangoStore.getState().client
const group = mangoStore.getState().group
const mangoAccount = mangoStore.getState().mangoAccount.current
const actions = mangoStore.getState().actions
if (!group || !mangoAccount) return
2022-10-03 17:59:25 -07:00
setSettleMktAddress(mktAddress)
2022-09-28 18:50:02 -07:00
try {
const txid = await client.serum3SettleFunds(
group,
mangoAccount,
new PublicKey(mktAddress)
)
2022-10-31 11:26:17 -07:00
actions.fetchOpenOrders()
2022-09-28 18:50:02 -07:00
actions.reloadMangoAccount()
notify({
type: 'success',
title: 'Successfully settled funds',
txid,
})
} catch (e: any) {
notify({
type: 'error',
2022-10-03 17:59:25 -07:00
title: t('trade:settle-funds-error'),
2022-09-28 18:50:02 -07:00
description: e?.message,
txid: e?.txid,
})
console.error('Settle funds error:', e)
2022-10-03 17:59:25 -07:00
} finally {
setSettleMktAddress('')
}
2022-09-28 18:50:02 -07:00
}, [])
if (!group) return null
2022-10-27 13:58:54 -07:00
return mangoAccount ? (
2022-10-02 22:42:28 -07:00
Object.values(unsettledSpotBalances).flat().length ? (
2022-10-03 20:42:05 -07:00
showTableView ? (
<table className="min-w-full">
<thead>
<tr>
<th className="bg-th-bkg-1 text-left">{t('market')}</th>
<th className="bg-th-bkg-1 text-right">{t('trade:base')}</th>
<th className="bg-th-bkg-1 text-right">{t('trade:quote')}</th>
<th className="bg-th-bkg-1 text-right" />
</tr>
</thead>
<tbody>
{Object.entries(unsettledSpotBalances).map(
([mktAddress, balance]) => {
const market = group.getSerum3MarketByExternalMarket(
2022-10-03 20:42:05 -07:00
new PublicKey(mktAddress)
)
const base = market?.name.split('/')[0]
const quote = market?.name.split('/')[1]
return (
<tr key={mktAddress} className="text-sm">
<td>
<div className="flex items-center">
2022-10-10 19:16:13 -07:00
<MarketLogos market={market!} />
2022-10-03 20:42:05 -07:00
<span>{market ? market.name : ''}</span>
</div>
</td>
<td className="text-right font-mono">
{unsettledSpotBalances[mktAddress].base || 0.0}{' '}
<span className="font-body tracking-wide text-th-fgd-4">
{base}
</span>
</td>
<td className="text-right font-mono">
{unsettledSpotBalances[mktAddress].quote || 0.0}{' '}
<span className="font-body tracking-wide text-th-fgd-4">
{quote}
</span>
</td>
<td>
<div className="flex justify-end">
<Tooltip content={t('trade:settle-funds')}>
<IconButton
onClick={() => handleSettleFunds(mktAddress)}
size="small"
>
{settleMktAddress === mktAddress ? (
<Loading className="h-4 w-4" />
) : (
<CheckIcon className="h-4 w-4" />
)}
</IconButton>
</Tooltip>
</div>
</td>
</tr>
)
}
)}
</tbody>
</table>
) : (
<div className="pb-20">
2022-10-02 22:42:28 -07:00
{Object.entries(unsettledSpotBalances).map(
([mktAddress, balance]) => {
const market = group.getSerum3MarketByExternalMarket(
2022-10-02 22:42:28 -07:00
new PublicKey(mktAddress)
)
const base = market?.name.split('/')[0]
const quote = market?.name.split('/')[1]
2022-10-02 22:42:28 -07:00
return (
2022-10-03 20:42:05 -07:00
<div
key={mktAddress}
className="flex items-center justify-between border-b border-th-bkg-3 p-4"
>
<div className="flex items-center">
2022-10-10 19:16:13 -07:00
<MarketLogos market={market!} />
2022-10-03 20:42:05 -07:00
<span>{market ? market.name : ''}</span>
</div>
<div className="flex items-center space-x-3">
{unsettledSpotBalances[mktAddress].base ? (
<span className="font-mono text-sm">
{unsettledSpotBalances[mktAddress].base}{' '}
<span className="font-body tracking-wide text-th-fgd-4">
{base}
</span>
</span>
) : null}
{unsettledSpotBalances[mktAddress].quote ? (
<span className="font-mono text-sm">
{unsettledSpotBalances[mktAddress].quote}{' '}
<span className="font-body tracking-wide text-th-fgd-4">
{quote}
</span>
</span>
) : null}
<IconButton onClick={() => handleSettleFunds(mktAddress)}>
{settleMktAddress === mktAddress ? (
<Loading className="h-4 w-4" />
) : (
<CheckIcon className="h-4 w-4" />
)}
</IconButton>
</div>
</div>
2022-10-02 22:42:28 -07:00
)
}
)}
2022-10-03 20:42:05 -07:00
</div>
)
2022-10-02 22:42:28 -07:00
) : (
<div className="flex flex-col items-center p-8">
2022-10-03 03:38:05 -07:00
<p>{t('trade:no-unsettled')}</p>
2022-10-02 22:42:28 -07:00
</div>
)
) : (
<div className="flex flex-col items-center p-8">
<LinkIcon className="mb-2 h-6 w-6 text-th-fgd-4" />
2022-10-03 03:38:05 -07:00
<p>{t('trade:connect-unsettled')}</p>
2022-10-02 22:42:28 -07:00
</div>
)
}
export default UnsettledTrades