mango-v4-ui/components/account/ActivityFeedTable.tsx

628 lines
22 KiB
TypeScript
Raw Normal View History

2023-02-27 23:20:11 -08:00
/* eslint-disable @typescript-eslint/no-explicit-any */
2022-11-24 18:39:14 -08:00
import { EXPLORERS } from '@components/settings/PreferredExplorerSettings'
2022-09-28 06:04:58 -07:00
import { IconButton, LinkButton } from '@components/shared/Button'
2023-01-19 17:45:08 -08:00
import ConnectEmptyState from '@components/shared/ConnectEmptyState'
2023-01-23 20:14:37 -08:00
import FormatNumericValue from '@components/shared/FormatNumericValue'
2022-09-28 20:35:34 -07:00
import SheenLoader from '@components/shared/SheenLoader'
2022-11-20 02:44:14 -08:00
import { Table, Td, Th, TrBody, TrHead } from '@components/shared/TableElements'
2022-09-27 23:17:06 -07:00
import Tooltip from '@components/shared/Tooltip'
2022-09-28 06:04:58 -07:00
import { Transition } from '@headlessui/react'
import {
ChevronDownIcon,
ChevronRightIcon,
2022-12-12 14:53:04 -08:00
NoSymbolIcon,
2022-09-28 06:04:58 -07:00
} from '@heroicons/react/20/solid'
2023-01-19 17:45:08 -08:00
import { useWallet } from '@solana/wallet-adapter-react'
2023-02-23 16:28:49 -08:00
import mangoStore from '@store/mangoStore'
2022-09-27 23:17:06 -07:00
import dayjs from 'dayjs'
import useLocalStorageState from 'hooks/useLocalStorageState'
2022-11-18 09:09:39 -08:00
import useMangoAccount from 'hooks/useMangoAccount'
2022-09-28 06:04:58 -07:00
import { useViewport } from 'hooks/useViewport'
2022-09-27 23:17:06 -07:00
import { useTranslation } from 'next-i18next'
2022-10-28 14:46:38 -07:00
import Image from 'next/legacy/image'
2022-09-28 06:04:58 -07:00
import { Fragment, useCallback, useState } from 'react'
2023-02-23 16:28:49 -08:00
import { ActivityFeed, isLiquidationFeedItem, LiquidationActivity } from 'types'
2023-01-12 16:16:10 -08:00
import { PAGINATION_PAGE_LENGTH, PREFERRED_EXPLORER_KEY } from 'utils/constants'
2023-01-23 20:14:37 -08:00
import { formatNumericValue } from 'utils/numbers'
2022-09-28 06:04:58 -07:00
import { breakpoints } from 'utils/theme'
2022-09-27 23:17:06 -07:00
2023-01-10 16:20:06 -08:00
const formatFee = (value: number) => {
return value.toLocaleString(undefined, {
minimumSignificantDigits: 1,
maximumSignificantDigits: 1,
})
}
2023-02-20 12:07:16 -08:00
const getFee = (activity: any, mangoAccountAddress: string) => {
const { activity_type } = activity
let fee = { value: '0', symbol: '' }
if (activity_type === 'swap') {
const { loan_origination_fee, swap_in_symbol } = activity.activity_details
fee = loan_origination_fee
? { value: formatFee(loan_origination_fee), symbol: swap_in_symbol }
: { value: '0', symbol: '' }
}
if (activity_type === 'perp_trade') {
const { maker_fee, taker_fee, maker } = activity.activity_details
fee = {
value: formatFee(mangoAccountAddress === maker ? maker_fee : taker_fee),
symbol: 'USDC',
}
}
if (activity_type === 'openbook_trade') {
const { fee_cost, quote_symbol } = activity.activity_details
2023-03-02 12:42:59 -08:00
fee = { value: fee_cost, symbol: quote_symbol }
2023-02-20 12:07:16 -08:00
}
return fee
}
const getCreditAndDebit = (activity: any) => {
const { activity_type } = activity
let credit = { value: '0', symbol: '' }
let debit = { value: '0', symbol: '' }
if (activity_type === 'liquidate_token_with_token') {
const { side, liab_amount, liab_symbol, asset_amount, asset_symbol } =
activity.activity_details
if (side === 'liqee') {
credit = { value: formatNumericValue(liab_amount), symbol: liab_symbol }
debit = {
value: formatNumericValue(asset_amount),
symbol: asset_symbol,
}
} else {
credit = {
value: formatNumericValue(asset_amount),
symbol: asset_symbol,
}
debit = { value: formatNumericValue(liab_amount), symbol: liab_symbol }
}
}
2023-03-22 18:26:02 -07:00
if (activity_type === 'liquidate_perp_base_position_or_positive_pnl') {
const {
base_transfer,
pnl_settle_limit_transfer,
pnl_transfer,
price,
quote_transfer,
side,
} = activity.activity_details
const rawCredit = pnl_settle_limit_transfer + pnl_transfer + quote_transfer
const rawDebit = base_transfer * price
if (side === 'liqee') {
credit = { value: formatNumericValue(rawCredit), symbol: '' }
debit = {
value: formatNumericValue(rawDebit),
symbol: '',
}
} else {
credit = {
value: formatNumericValue(rawDebit),
symbol: '',
}
debit = { value: formatNumericValue(rawCredit), symbol: '' }
}
}
2023-02-20 12:07:16 -08:00
if (activity_type === 'deposit') {
const { symbol, quantity } = activity.activity_details
credit = { value: formatNumericValue(quantity), symbol }
debit = { value: '0', symbol: '' }
}
if (activity_type === 'withdraw') {
const { symbol, quantity } = activity.activity_details
credit = { value: '0', symbol: '' }
debit = { value: formatNumericValue(quantity * -1), symbol }
}
if (activity_type === 'swap') {
const { swap_in_amount, swap_in_symbol, swap_out_amount, swap_out_symbol } =
activity.activity_details
credit = {
value: formatNumericValue(swap_out_amount),
symbol: swap_out_symbol,
}
debit = {
value: formatNumericValue(swap_in_amount * -1),
symbol: swap_in_symbol,
}
}
if (activity_type === 'perp_trade') {
const { perp_market_name, price, quantity } = activity.activity_details
credit = { value: quantity, symbol: perp_market_name }
debit = {
value: formatNumericValue(quantity * price * -1),
symbol: 'USDC',
}
}
if (activity_type === 'openbook_trade') {
const { side, price, size, base_symbol, quote_symbol } =
activity.activity_details
credit =
side === 'buy'
? { value: formatNumericValue(size), symbol: base_symbol }
: { value: formatNumericValue(size * price), symbol: quote_symbol }
debit =
side === 'buy'
? {
value: formatNumericValue(size * price * -1),
symbol: quote_symbol,
}
: { value: formatNumericValue(size * -1), symbol: base_symbol }
}
return { credit, debit }
}
const getValue = (activity: any) => {
const { activity_type } = activity
let value = 0
if (activity_type === 'liquidate_token_with_token') {
const { side, liab_amount, liab_price, asset_amount, asset_price } =
activity.activity_details
if (side === 'liqee') {
2023-03-22 18:26:02 -07:00
value =
Math.abs(liab_amount) * liab_price -
Math.abs(asset_amount) * asset_price
} else {
value =
Math.abs(asset_amount) * asset_price -
Math.abs(liab_amount) * liab_price
}
}
if (activity_type === 'liquidate_perp_base_position_or_positive_pnl') {
const {
base_transfer,
pnl_settle_limit_transfer,
pnl_transfer,
price,
quote_transfer,
side,
} = activity.activity_details
const rawCredit = pnl_settle_limit_transfer + pnl_transfer + quote_transfer
const rawDebit = base_transfer * price
if (side === 'liqee') {
value = Math.abs(rawCredit) - Math.abs(rawDebit)
2023-02-20 12:07:16 -08:00
} else {
2023-03-22 18:26:02 -07:00
value = Math.abs(rawDebit) - Math.abs(rawCredit)
2023-02-20 12:07:16 -08:00
}
}
if (activity_type === 'deposit' || activity_type === 'withdraw') {
const { usd_equivalent } = activity.activity_details
value = activity_type === 'withdraw' ? usd_equivalent * -1 : usd_equivalent
}
if (activity_type === 'swap') {
const { swap_out_amount, swap_out_price_usd } = activity.activity_details
value = swap_out_amount * swap_out_price_usd
}
if (activity_type === 'perp_trade') {
const { price, quantity } = activity.activity_details
value = quantity * price
}
if (activity_type === 'openbook_trade') {
const { price, size } = activity.activity_details
value = price * size
}
return value
}
2022-09-27 23:17:06 -07:00
const ActivityFeedTable = ({
activityFeed,
handleShowActivityDetails,
}: {
2023-02-23 16:28:49 -08:00
activityFeed: ActivityFeed[]
handleShowActivityDetails: (x: LiquidationActivity) => void
2022-09-27 23:17:06 -07:00
}) => {
const { t } = useTranslation(['common', 'activity'])
const { mangoAccountAddress } = useMangoAccount()
2023-02-03 00:27:54 -08:00
const actions = mangoStore((s) => s.actions)
2022-09-28 20:35:34 -07:00
const loadActivityFeed = mangoStore((s) => s.activityFeed.loading)
2023-02-03 00:27:54 -08:00
const queryParams = mangoStore((s) => s.activityFeed.queryParams)
2022-09-27 23:17:06 -07:00
const [offset, setOffset] = useState(0)
2023-01-19 17:45:08 -08:00
const { connected } = useWallet()
2022-09-27 23:17:06 -07:00
const [preferredExplorer] = useLocalStorageState(
PREFERRED_EXPLORER_KEY,
EXPLORERS[0]
)
2022-09-28 06:04:58 -07:00
const { width } = useViewport()
const showTableView = width ? width > breakpoints.md : false
2022-09-27 23:17:06 -07:00
const handleShowMore = useCallback(() => {
2022-09-28 20:35:34 -07:00
const set = mangoStore.getState().set
set((s) => {
s.activityFeed.loading = true
})
if (!mangoAccountAddress) return
2023-01-12 16:16:10 -08:00
setOffset(offset + PAGINATION_PAGE_LENGTH)
actions.fetchActivityFeed(
mangoAccountAddress,
offset + PAGINATION_PAGE_LENGTH,
2023-02-03 00:27:54 -08:00
queryParams
2023-01-12 16:16:10 -08:00
)
2023-02-03 00:27:54 -08:00
}, [actions, offset, queryParams, mangoAccountAddress])
2022-09-27 23:17:06 -07:00
return mangoAccountAddress && (activityFeed.length || loadActivityFeed) ? (
<>
{showTableView ? (
<Table className="min-w-full">
2023-02-03 00:27:54 -08:00
<thead>
<TrHead>
<Th className="bg-th-bkg-1 text-left">{t('date')}</Th>
<Th className="bg-th-bkg-1 text-right">
{t('activity:activity')}
</Th>
<Th className="bg-th-bkg-1 text-right">{t('activity:credit')}</Th>
<Th className="bg-th-bkg-1 text-right">{t('activity:debit')}</Th>
2023-01-22 20:25:43 -08:00
<Th className="flex justify-end bg-th-bkg-1">
2023-03-10 10:01:47 -08:00
<Tooltip content={t('activity:tooltip-fee')} delay={100}>
2023-01-22 20:25:43 -08:00
<span className="tooltip-underline">{t('fee')}</span>
</Tooltip>
</Th>
2023-02-08 02:47:31 -08:00
<Th className="bg-th-bkg-1 text-right">{t('value')}</Th>
<Th className="bg-th-bkg-1 text-right">{t('explorer')}</Th>
</TrHead>
</thead>
<tbody>
2023-02-23 16:28:49 -08:00
{activityFeed.map((activity, index: number) => {
const { activity_type, block_datetime } = activity
const { signature } = activity.activity_details
const isOpenbook = activity_type === 'openbook_trade'
const amounts = getCreditAndDebit(activity)
const value = getValue(activity)
2023-02-20 12:07:16 -08:00
const fee = getFee(activity, mangoAccountAddress)
return (
<TrBody
2023-01-11 21:06:17 -08:00
key={signature + index}
className={`default-transition text-sm hover:bg-th-bkg-2 ${
2023-03-22 18:26:02 -07:00
isLiquidationFeedItem(activity) ? 'cursor-pointer' : ''
}`}
onClick={
2023-02-23 16:28:49 -08:00
isLiquidationFeedItem(activity)
? () => handleShowActivityDetails(activity)
: undefined
}
>
<Td>
2023-01-14 04:41:30 -08:00
<p className="font-body">
{dayjs(block_datetime).format('ddd D MMM')}
</p>
<p className="text-xs text-th-fgd-3">
{dayjs(block_datetime).format('h:mma')}
</p>
</Td>
<Td className="text-right">
2023-01-04 04:10:36 -08:00
{t(`activity:${activity_type}`)}
</Td>
<Td className="text-right font-mono">
{amounts.credit.value}{' '}
<span className="font-body text-th-fgd-3">
{amounts.credit.symbol}
</span>
</Td>
<Td className="text-right font-mono">
{amounts.debit.value}{' '}
<span className="font-body text-th-fgd-3">
{amounts.debit.symbol}
</span>
</Td>
2023-01-23 01:59:43 -08:00
<Td className="text-right font-mono">
2023-03-02 12:42:59 -08:00
{activity_type === 'perp'
? (Number(fee.value) * value).toFixed(5)
: fee.value}{' '}
2023-01-23 01:59:43 -08:00
<span className="font-body text-th-fgd-3">
{fee.symbol}
</span>
</Td>
<Td
className={`text-right font-mono ${
2023-01-04 04:10:36 -08:00
activity_type === 'swap' ||
activity_type === 'perp_trade' ||
isOpenbook
? 'text-th-fgd-2'
: value >= 0
? 'text-th-up'
: 'text-th-down'
2022-09-28 06:04:58 -07:00
}`}
>
{value > 0 &&
2023-01-04 04:10:36 -08:00
activity_type !== 'swap' &&
activity_type !== 'perp_trade' &&
!isOpenbook
? '+'
: ''}
2023-01-23 20:14:37 -08:00
<FormatNumericValue value={value} isUsd />
</Td>
<Td>
2023-03-22 18:26:02 -07:00
{!isLiquidationFeedItem(activity) ? (
<div className="flex items-center justify-end">
<Tooltip
content={`View on ${t(
`settings:${preferredExplorer.name}`
)}`}
placement="top-end"
>
<a
href={`${preferredExplorer.url}${signature}`}
target="_blank"
rel="noopener noreferrer"
2022-09-27 23:17:06 -07:00
>
<div className="h-6 w-6">
<Image
alt=""
width="24"
height="24"
src={`/explorer-logos/${preferredExplorer.name}.png`}
/>
</div>
</a>
</Tooltip>
</div>
) : (
<div className="flex items-center justify-end">
<ChevronRightIcon className="h-6 w-6 text-th-fgd-3" />
</div>
)}
</Td>
</TrBody>
)
})}
</tbody>
</Table>
) : (
<div>
2023-01-11 21:06:17 -08:00
{activityFeed.map((activity: any, index: number) => (
<MobileActivityFeedItem
activity={activity}
getValue={getValue}
2023-01-11 21:06:17 -08:00
key={activity?.activity_details?.signature + index}
/>
))}
</div>
)}
{loadActivityFeed ? (
<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-12 16:16:10 -08:00
{activityFeed.length &&
activityFeed.length % PAGINATION_PAGE_LENGTH === 0 ? (
2023-01-11 21:06:17 -08:00
<div className="flex justify-center py-6">
<LinkButton onClick={handleShowMore}>Show More</LinkButton>
</div>
) : null}
</>
2023-01-19 19:10:15 -08:00
) : mangoAccountAddress || connected ? (
<div className="flex flex-col items-center p-8">
<NoSymbolIcon className="mb-2 h-6 w-6 text-th-fgd-4" />
<p>{t('activity:no-activity')}</p>
2022-09-27 23:17:06 -07:00
</div>
2023-01-19 17:45:08 -08:00
) : (
<div className="p-8">
<ConnectEmptyState text={t('activity:connect-activity')} />
</div>
2022-09-27 23:17:06 -07:00
)
}
export default ActivityFeedTable
2022-09-28 06:04:58 -07:00
const MobileActivityFeedItem = ({
activity,
getValue,
}: {
activity: any
getValue: (x: any) => number
}) => {
const { t } = useTranslation(['common', 'activity'])
const [expandActivityDetails, setExpandActivityDetails] = useState(false)
const [preferredExplorer] = useLocalStorageState(
PREFERRED_EXPLORER_KEY,
EXPLORERS[0]
)
const { activity_type, block_datetime } = activity
const { signature } = activity.activity_details
2022-11-29 02:33:15 -08:00
const isSwap = activity_type === 'swap'
2023-01-25 16:45:48 -08:00
const isOpenbook = activity_type === 'openbook_trade'
2022-11-29 15:15:25 -08:00
const isPerp = activity_type === 'perp_trade'
2022-09-28 06:04:58 -07:00
const value = getValue(activity)
2023-01-25 16:45:48 -08:00
2022-09-28 06:04:58 -07:00
return (
2022-11-29 02:33:15 -08:00
<div key={signature} className="border-b border-th-bkg-3 p-4">
2022-09-28 06:04:58 -07:00
<div className="flex items-center justify-between">
<div>
<p className="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 space-x-4">
<div>
<p className="text-right text-xs">
2023-01-04 04:10:36 -08:00
{t(`activity:${activity_type}`)}
2022-09-28 06:04:58 -07:00
</p>
<p className="text-right font-mono text-sm text-th-fgd-1">
2023-03-22 18:26:02 -07:00
{isLiquidationFeedItem(activity) ? (
2023-01-23 20:14:37 -08:00
<FormatNumericValue value={value} isUsd />
2022-11-29 02:33:15 -08:00
) : isSwap ? (
<>
<span className="mr-1">
2023-01-23 20:14:37 -08:00
<FormatNumericValue
value={activity.activity_details.swap_in_amount}
decimals={6}
/>
2022-11-29 02:33:15 -08:00
</span>
<span className="font-body text-th-fgd-3">
2022-11-29 02:33:15 -08:00
{activity.activity_details.swap_in_symbol}
</span>
<span className="mx-1 font-body text-th-fgd-3">for</span>
<span className="mr-1">
2023-01-23 20:14:37 -08:00
<FormatNumericValue
value={activity.activity_details.swap_out_amount}
decimals={6}
/>
2022-11-29 02:33:15 -08:00
</span>
<span className="font-body text-th-fgd-3">
2022-11-29 02:33:15 -08:00
{activity.activity_details.swap_out_symbol}
</span>
</>
2022-11-29 15:15:25 -08:00
) : isPerp ? (
<>
<span
className={`mr-1 font-body ${
activity.activity_details.taker_side === 'bid'
2022-11-30 19:32:32 -08:00
? 'text-th-up'
: 'text-th-down'
2022-11-29 15:15:25 -08:00
}`}
>
{activity.activity_details.taker_side === 'bid'
? 'BUY'
: 'SELL'}
</span>
<span className="mr-1">
{activity.activity_details.quantity}
</span>
<span className="font-body text-th-fgd-3">
2023-01-25 16:45:48 -08:00
{activity.activity_details.perp_market_name}
</span>
</>
) : isOpenbook ? (
<>
<span
className={`mr-1 font-body ${
activity.activity_details.side === 'buy'
? 'text-th-up'
: 'text-th-down'
}`}
>
{activity.activity_details.side === 'buy' ? 'BUY' : 'SELL'}
</span>
<span className="mr-1">{activity.activity_details.size}</span>
<span className="font-body text-th-fgd-3">
{activity.activity_details.base_symbol}
2022-11-29 15:15:25 -08:00
</span>
</>
2022-09-28 06:04:58 -07:00
) : (
<>
<span className="mr-1">
{activity.activity_details.quantity}
</span>
<span className="font-body text-th-fgd-3">
2022-09-28 06:04:58 -07:00
{activity.activity_details.symbol}
</span>
</>
)}
</p>
</div>
2023-03-22 18:26:02 -07:00
{isLiquidationFeedItem(activity) ? (
2022-09-28 06:04:58 -07:00
<IconButton
onClick={() => setExpandActivityDetails((prev) => !prev)}
>
<ChevronDownIcon
className={`${
expandActivityDetails ? 'rotate-180' : 'rotate-360'
} h-6 w-6 flex-shrink-0 text-th-fgd-1`}
/>
</IconButton>
) : (
<a
href={`${preferredExplorer.url}${signature}`}
target="_blank"
rel="noopener noreferrer"
>
<div className="flex h-10 w-10 items-center justify-center">
<Image
alt=""
width="24"
height="24"
src={`/explorer-logos/${preferredExplorer.name}.png`}
/>
</div>
</a>
)}
</div>
</div>
<Transition
appear={true}
show={expandActivityDetails}
as={Fragment}
enter="transition ease-in duration-200"
enterFrom="opacity-0"
enterTo="opacity-100"
leave="transition ease-out"
leaveFrom="opacity-100"
leaveTo="opacity-0"
>
<div className="mt-4 grid grid-cols-2 gap-4 border-t border-th-bkg-3 pt-4">
<div className="col-span-1">
<p className="mb-0.5 text-sm">{t('activity:asset-liquidated')}</p>
<p className="font-mono text-sm text-th-fgd-1">
2023-01-23 20:14:37 -08:00
<FormatNumericValue
value={activity.activity_details.asset_amount}
/>{' '}
2023-01-14 04:41:30 -08:00
<span className="font-body">
2022-09-28 06:04:58 -07:00
{activity.activity_details.asset_symbol}
</span>
<span className="ml-2 font-body text-th-fgd-3">at</span>{' '}
2023-01-23 20:14:37 -08:00
<FormatNumericValue
value={activity.activity_details.asset_price}
isUsd
/>
2022-09-28 06:04:58 -07:00
</p>
<p className="font-mono text-xs text-th-fgd-3">
2023-01-23 20:14:37 -08:00
<FormatNumericValue
value={
activity.activity_details.asset_price *
activity.activity_details.asset_amount
}
isUsd
/>
2022-09-28 06:04:58 -07:00
</p>
</div>
<div className="col-span-1">
<p className="mb-0.5 text-sm">{t('activity:asset-returned')}</p>
<p className="font-mono text-sm text-th-fgd-1">
2023-01-23 20:14:37 -08:00
<FormatNumericValue
value={activity.activity_details.liab_amount}
/>{' '}
2023-01-14 04:41:30 -08:00
<span className="font-body">
2022-09-28 06:04:58 -07:00
{activity.activity_details.liab_symbol}
</span>
<span className="ml-2 font-body text-th-fgd-3">at</span>{' '}
2023-01-23 20:14:37 -08:00
<FormatNumericValue
value={activity.activity_details.liab_price}
isUsd
/>
2022-09-28 06:04:58 -07:00
</p>
<p className="font-mono text-xs text-th-fgd-3">
2023-01-23 20:14:37 -08:00
<FormatNumericValue
value={
activity.activity_details.liab_price *
activity.activity_details.liab_amount
}
isUsd
/>
2022-09-28 06:04:58 -07:00
</p>
</div>
<div className="col-span-2 flex justify-center pt-3">
<a
className="default-transition flex items-center text-sm text-th-fgd-1 hover:text-th-fgd-3"
href={`${preferredExplorer.url}${signature}`}
target="_blank"
rel="noopener noreferrer"
>
<Image
alt=""
width="20"
height="20"
src={`/explorer-logos/${preferredExplorer.name}.png`}
/>
2022-12-29 16:31:13 -08:00
<span className="ml-2 text-base">{t('view-transaction')}</span>
2022-09-28 06:04:58 -07:00
</a>
</div>
</div>
</Transition>
</div>
)
}