mango-v4-ui/components/swap/SwapHistoryTable.tsx

486 lines
18 KiB
TypeScript
Raw Normal View History

2023-03-19 03:28:13 -07:00
import { useCallback, useEffect, useState } from 'react'
import { ChevronDownIcon, NoSymbolIcon } from '@heroicons/react/20/solid'
2022-08-10 04:17:10 -07:00
import dayjs from 'dayjs'
import { useTranslation } from 'next-i18next'
2022-10-28 14:46:38 -07:00
import Image from 'next/legacy/image'
2022-09-19 03:43:38 -07:00
import { breakpoints } from '../../utils/theme'
import { useViewport } from '../../hooks/useViewport'
2023-03-19 03:28:13 -07:00
import { LinkButton } from '../shared/Button'
import { Disclosure, Transition } from '@headlessui/react'
2022-09-19 03:43:38 -07:00
import SheenLoader from '../shared/SheenLoader'
import mangoStore from '@store/mangoStore'
2023-01-24 19:11:42 -08:00
import { countLeadingZeros, floorToDecimal } from '../../utils/numbers'
2022-09-27 20:07:26 -07:00
import useLocalStorageState from 'hooks/useLocalStorageState'
2023-01-18 02:36:45 -08:00
import { PAGINATION_PAGE_LENGTH, PREFERRED_EXPLORER_KEY } from 'utils/constants'
2022-09-27 20:07:26 -07:00
import Tooltip from '@components/shared/Tooltip'
import { formatTokenSymbol } from 'utils/tokens'
2023-08-16 22:52:42 -07:00
import {
SortableColumnHeader,
Table,
Td,
Th,
TrBody,
TrHead,
} from '@components/shared/TableElements'
2022-11-24 18:39:14 -08:00
import { EXPLORERS } from '@components/settings/PreferredExplorerSettings'
2022-12-19 10:48:59 -08:00
import useMangoAccount from 'hooks/useMangoAccount'
2023-01-19 17:45:08 -08:00
import ConnectEmptyState from '@components/shared/ConnectEmptyState'
import { useWallet } from '@solana/wallet-adapter-react'
2023-01-23 20:37:26 -08:00
import FormatNumericValue from '@components/shared/FormatNumericValue'
2023-07-04 21:40:47 -07:00
import useMangoGroup from 'hooks/useMangoGroup'
import TokenLogo from '@components/shared/TokenLogo'
2023-08-16 22:52:42 -07:00
import { useSortableData } from 'hooks/useSortableData'
2022-08-10 04:17:10 -07:00
const SwapHistoryTable = () => {
2022-11-24 15:56:31 -08:00
const { t } = useTranslation(['common', 'settings', 'swap'])
2023-01-15 21:13:34 -08:00
const swapHistory = mangoStore((s) => s.mangoAccount.swapHistory.data)
2023-01-18 20:33:51 -08:00
const loadSwapHistory = mangoStore((s) => s.mangoAccount.swapHistory.loading)
2023-07-04 21:40:47 -07:00
const { group } = useMangoGroup()
2023-01-11 19:21:23 -08:00
const [offset, setOffset] = useState(0)
2023-01-03 14:20:00 -08:00
const actions = mangoStore.getState().actions
const { mangoAccountAddress } = useMangoAccount()
2023-01-19 17:45:08 -08:00
const { connected } = useWallet()
2022-08-10 04:17:10 -07:00
const { width } = useViewport()
const showTableView = width ? width > breakpoints.md : false
2022-09-27 20:07:26 -07:00
const [preferredExplorer] = useLocalStorageState(
PREFERRED_EXPLORER_KEY,
2023-07-21 11:47:53 -07:00
EXPLORERS[0],
2022-09-27 20:07:26 -07:00
)
2022-08-10 04:17:10 -07:00
2022-12-19 10:48:59 -08:00
useEffect(() => {
if (mangoAccountAddress) {
actions.fetchSwapHistory(mangoAccountAddress)
2023-01-18 02:36:45 -08:00
setOffset(0)
2022-12-19 10:48:59 -08:00
}
}, [actions, mangoAccountAddress])
2022-12-19 10:48:59 -08:00
2023-01-11 19:21:23 -08:00
const handleShowMore = useCallback(() => {
const set = mangoStore.getState().set
set((s) => {
2023-01-18 20:33:51 -08:00
s.mangoAccount.swapHistory.loading = true
2023-01-11 19:21:23 -08:00
})
if (!mangoAccountAddress) return
2023-01-18 02:36:45 -08:00
setOffset(offset + PAGINATION_PAGE_LENGTH)
actions.fetchSwapHistory(
mangoAccountAddress,
0,
2023-07-21 11:47:53 -07:00
offset + PAGINATION_PAGE_LENGTH,
2023-01-18 02:36:45 -08:00
)
2023-01-11 19:21:23 -08:00
}, [actions, offset, mangoAccountAddress])
2023-08-16 22:52:42 -07:00
const formattedTableData = useCallback(() => {
const formatted = []
for (const swap of swapHistory) {
const {
block_datetime,
signature,
swap_in_amount,
swap_in_loan_origination_fee,
swap_in_symbol,
swap_out_amount,
loan,
loan_origination_fee,
swap_out_symbol,
swap_out_price_usd,
} = swap
const borrowAmount =
loan > 0 ? `${floorToDecimal(loan, countLeadingZeros(loan) + 2)}` : 0
const borrowFee =
swap_in_loan_origination_fee > 0
? swap_in_loan_origination_fee.toFixed(4)
: loan_origination_fee > 0
? loan_origination_fee.toFixed(4)
: 0
const bankInSymbol =
swap_in_symbol === 'ETH' ? 'ETH (Portal)' : swap_in_symbol
const bankOutSymbol =
swap_out_symbol === 'ETH' ? 'ETH (Portal)' : swap_out_symbol
const inBank = group?.banksMapByName.get(bankInSymbol)?.[0]
const outBank = group?.banksMapByName.get(bankOutSymbol)?.[0]
const inSymbol = formatTokenSymbol(swap_in_symbol)
const outSymbol = formatTokenSymbol(swap_out_symbol)
const inDecimals = countLeadingZeros(swap_in_amount) + 2
const outDecimals = countLeadingZeros(swap_out_amount) + 2
const value = swap_out_price_usd * swap_out_amount
const data = {
block_datetime,
borrowAmount,
borrowFee,
inBank,
inDecimals,
inSymbol,
outBank,
outDecimals,
outSymbol,
signature,
swap_in_amount,
swap_out_amount,
value,
}
formatted.push(data)
}
return formatted
}, [group, swapHistory])
const {
items: tableData,
requestSort,
sortConfig,
} = useSortableData(formattedTableData())
2023-07-04 21:40:47 -07:00
return group &&
mangoAccountAddress &&
2023-08-16 22:52:42 -07:00
(tableData.length || loadSwapHistory) ? (
2023-01-11 19:21:23 -08:00
<>
{showTableView ? (
<Table>
<thead>
<TrHead>
2023-08-16 22:52:42 -07:00
<Th className="text-left">
<SortableColumnHeader
sortKey="block_datetime"
sort={() => requestSort('block_datetime')}
sortConfig={sortConfig}
title={t('date')}
/>
</Th>
<Th className="text-left">
<SortableColumnHeader
sortKey="swap_in_amount"
sort={() => requestSort('swap_in_amount')}
sortConfig={sortConfig}
title={t('swap:paid')}
/>
</Th>
<Th className="text-left">
<SortableColumnHeader
sortKey="swap_out_amount"
sort={() => requestSort('swap_out_amount')}
sortConfig={sortConfig}
title={t('swap:received')}
/>
</Th>
<Th>
<div className="flex justify-end">
<SortableColumnHeader
sortKey="value"
sort={() => requestSort('value')}
sortConfig={sortConfig}
title={t('value')}
/>
</div>
</Th>
2023-05-02 20:57:54 -07:00
<Th>
2023-08-16 22:52:42 -07:00
<div className="flex justify-end">
<SortableColumnHeader
sortKey="borrowAmount"
sort={() => requestSort('borrowAmount')}
sortConfig={sortConfig}
title={t('borrow')}
/>
</div>
</Th>
<Th>
<div className="flex justify-end">
2023-05-02 20:57:54 -07:00
<Tooltip content={t('tooltip-borrow-fee')}>
2023-08-16 22:52:42 -07:00
<SortableColumnHeader
sortKey="borrowFee"
sort={() => requestSort('borrowFee')}
sortConfig={sortConfig}
title={t('borrow-fee')}
/>
2023-05-02 20:57:54 -07:00
</Tooltip>
</div>
</Th>
<Th />
</TrHead>
</thead>
<tbody>
2023-08-16 22:52:42 -07:00
{tableData.map((swap) => {
2022-08-10 04:17:10 -07:00
const {
block_datetime,
2023-08-16 22:52:42 -07:00
borrowAmount,
borrowFee,
inBank,
inDecimals,
inSymbol,
outBank,
outDecimals,
outSymbol,
2022-08-10 04:17:10 -07:00
signature,
swap_in_amount,
swap_out_amount,
2023-08-16 22:52:42 -07:00
value,
} = swap
2022-08-10 04:17:10 -07:00
return (
<TrBody key={signature}>
<Td>
<p className="font-body tracking-wider">
{dayjs(block_datetime).format('ddd D MMM')}
</p>
<p className="font-body text-xs text-th-fgd-3">
{dayjs(block_datetime).format('h:mma')}
</p>
</Td>
2023-01-18 03:41:44 -08:00
<Td>
<div className="flex items-center">
2023-08-16 22:52:42 -07:00
{inBank ? (
<div className="mr-2.5 flex flex-shrink-0 items-center">
<TokenLogo bank={inBank} />
</div>
) : null}
2023-04-02 20:02:55 -07:00
<p className="whitespace-nowrap">
<FormatNumericValue
value={swap_in_amount}
decimals={inDecimals}
/>{' '}
<span className="font-body text-th-fgd-3">
{inSymbol}
</span>
</p>
2023-01-18 03:41:44 -08:00
</div>
</Td>
<Td>
<div className="flex items-center">
2023-08-16 22:52:42 -07:00
{outBank ? (
<div className="mr-2.5 flex flex-shrink-0 items-center">
<TokenLogo bank={outBank} />
</div>
) : null}
2023-04-02 20:02:55 -07:00
<p className="whitespace-nowrap">
<FormatNumericValue
value={swap_out_amount}
decimals={outDecimals}
/>{' '}
<span className="font-body text-th-fgd-3">
{outSymbol}
</span>
</p>
2022-08-10 04:17:10 -07:00
</div>
</Td>
<Td>
<p className="text-right">
2023-08-16 22:52:42 -07:00
<FormatNumericValue value={value} decimals={2} isUsd />
</p>
</Td>
<Td>
<div className="flex flex-col text-right">
<p>
{borrowAmount}
<span className="ml-1 font-body text-th-fgd-3">
{inSymbol}
</span>
</p>
</div>
</Td>
<Td>
<div className="flex flex-col text-right">
<p>
{borrowFee}
<span className="ml-1 font-body text-th-fgd-3">
{inSymbol}
</span>
</p>
</div>
</Td>
<Td>
<div className="flex items-center justify-end">
<Tooltip
content={`View on ${t(
2023-07-21 11:47:53 -07:00
`settings:${preferredExplorer.name}`,
)}`}
placement="top-end"
>
<a
href={`${preferredExplorer.url}${signature}`}
target="_blank"
rel="noopener noreferrer"
>
<div className="h-6 w-6">
<Image
alt=""
width="24"
height="24"
src={`/explorer-logos/${preferredExplorer.name}.png`}
/>
</div>
</a>
</Tooltip>
</div>
</Td>
</TrBody>
)
})}
</tbody>
</Table>
) : (
<div>
2023-08-16 22:52:42 -07:00
{tableData.map((swap, i) => {
const {
block_datetime,
2023-08-16 22:52:42 -07:00
borrowAmount,
borrowFee,
inDecimals,
inSymbol,
outDecimals,
outSymbol,
signature,
swap_in_amount,
swap_out_amount,
2023-08-16 22:52:42 -07:00
value,
} = swap
2023-01-18 03:41:44 -08:00
return (
2023-03-19 03:28:13 -07:00
<Disclosure key={signature}>
{({ open }) => (
<>
<Disclosure.Button
className={`w-full border-t border-th-bkg-3 p-4 text-left focus:outline-none ${
i === 0 ? 'border-t-0' : ''
}`}
>
<div className="flex items-center justify-between">
<div>
<p className="whitespace-nowrap text-sm text-th-fgd-1">
{dayjs(block_datetime).format('ddd D MMM')}
</p>
<p className="text-xs text-th-fgd-3">
{dayjs(block_datetime).format('h:mma')}
</p>
</div>
<div className="flex items-center justify-end pl-4">
<div className="mr-3 flex items-center">
<p className="text-right font-mono text-th-fgd-1">
<FormatNumericValue
value={swap_in_amount}
decimals={inDecimals}
/>{' '}
<span className="font-body text-th-fgd-2">
{inSymbol}
</span>{' '}
<span className="font-body text-th-fgd-4">
to
</span>{' '}
<FormatNumericValue
value={swap_out_amount}
decimals={outDecimals}
/>{' '}
<span className="font-body text-th-fgd-2">
{outSymbol}
</span>
</p>
</div>
<ChevronDownIcon
className={`${
open ? 'rotate-180' : 'rotate-360'
} h-6 w-6 flex-shrink-0 text-th-fgd-3`}
2023-01-23 20:37:26 -08:00
/>
2023-03-19 03:28:13 -07:00
</div>
2022-08-10 04:17:10 -07:00
</div>
2023-03-19 03:28:13 -07:00
</Disclosure.Button>
<Transition
enter="transition ease-in duration-200"
enterFrom="opacity-0"
enterTo="opacity-100"
>
<Disclosure.Panel>
<div className="mx-4 grid grid-cols-2 gap-4 border-t border-th-bkg-3 pb-4 pt-4">
2023-03-19 03:28:13 -07:00
<div className="col-span-1">
<p className="text-xs text-th-fgd-3">
{t('value')}
</p>
<p className="font-mono text-th-fgd-1">
2023-08-16 22:52:42 -07:00
<FormatNumericValue value={value} isUsd />
2023-03-19 03:28:13 -07:00
</p>
</div>
{borrowAmount ? (
<>
<div className="col-span-1">
<p className="text-xs text-th-fgd-3">
{t('borrow')}
</p>
<p className="font-mono text-th-fgd-1">
{borrowAmount}{' '}
<span className="font-body text-th-fgd-3">
{inSymbol}
</span>
</p>
</div>
<div className="col-span-1">
<p className="text-xs text-th-fgd-3">
{t('borrow-fee')}
</p>
<p className="font-mono text-th-fgd-1">
${borrowFee}
</p>
</div>
</>
) : null}
<div className="col-span-1">
<p className="mb-0.5 text-xs text-th-fgd-3">
{t('transaction')}
</p>
<a
2023-04-19 18:12:45 -07:00
className="flex items-center text-th-fgd-1 hover:text-th-fgd-3"
2023-03-19 03:28:13 -07:00
href={`${preferredExplorer.url}${signature}`}
target="_blank"
rel="noopener noreferrer"
>
<Image
alt=""
width="16"
height="16"
src={`/explorer-logos/${preferredExplorer.name}.png`}
/>
<span className="ml-1.5">
{t(`settings:${preferredExplorer.name}`)}
</span>
</a>
</div>
</div>
</Disclosure.Panel>
</Transition>
</>
)}
</Disclosure>
)
})}
2022-08-10 04:17:10 -07:00
</div>
2023-01-11 19:21:23 -08:00
)}
{loadSwapHistory ? (
<div className="mt-4 space-y-1.5">
{[...Array(4)].map((x, i) => (
<SheenLoader className="mx-4 flex flex-1 md:mx-6" key={i}>
<div className="h-16 w-full bg-th-bkg-2" />
</SheenLoader>
))}
</div>
) : null}
2023-01-18 02:36:45 -08:00
{swapHistory.length &&
swapHistory.length % PAGINATION_PAGE_LENGTH === 0 ? (
<div className="flex justify-center py-6">
2023-01-11 19:21:23 -08:00
<LinkButton onClick={handleShowMore}>Show More</LinkButton>
</div>
) : null}
</>
2023-01-19 19:10:15 -08:00
) : mangoAccountAddress || connected ? (
2023-01-11 19:21:23 -08:00
<div className="flex flex-col items-center p-8">
<NoSymbolIcon className="mb-2 h-6 w-6 text-th-fgd-4" />
<p>{t('swap:no-history')}</p>
2022-08-10 04:17:10 -07:00
</div>
2023-01-19 17:45:08 -08:00
) : (
<div className="p-8">
<ConnectEmptyState text={t('swap:connect-swap')} />
</div>
2022-08-10 04:17:10 -07:00
)
}
export default SwapHistoryTable