fix(trading): update LP table on Updating next epoch (#5204)

This commit is contained in:
m.ray 2023-11-06 16:47:08 +02:00 committed by GitHub
parent b43ea0f60b
commit 7a91f48bcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 127 additions and 46 deletions

View File

@ -22,6 +22,7 @@ const colUpdatedAt = '[col-id="updatedAt"] button';
const headers = [ const headers = [
'Party', 'Party',
'Status',
'Commitment (tDAI)', 'Commitment (tDAI)',
'Obligation', 'Obligation',
'Fee', 'Fee',
@ -34,7 +35,6 @@ const headers = [
'Last time on the book', 'Last time on the book',
'Last fee penalty', 'Last fee penalty',
'Last bond penalty', 'Last bond penalty',
'Status',
'Created', 'Created',
'Updated', 'Updated',
]; ];

View File

@ -49,6 +49,7 @@ describe('LiquidityTable', () => {
undefined, undefined,
undefined, undefined,
'Party', 'Party',
'Status',
'Commitment ()', 'Commitment ()',
'Obligation', 'Obligation',
'Fee', 'Fee',
@ -61,7 +62,6 @@ describe('LiquidityTable', () => {
'Last time on the book', 'Last time on the book',
'Last fee penalty', 'Last fee penalty',
'Last bond penalty', 'Last bond penalty',
'Status',
'Created', 'Created',
'Updated', 'Updated',
]; ];

View File

@ -8,7 +8,7 @@ import {
import { t } from '@vegaprotocol/i18n'; import { t } from '@vegaprotocol/i18n';
import type { import type {
TypedDataAgGrid, TypedDataAgGrid,
VegaValueFormatterParams, VegaICellRendererParams,
} from '@vegaprotocol/datagrid'; } from '@vegaprotocol/datagrid';
import { AgGrid } from '@vegaprotocol/datagrid'; import { AgGrid } from '@vegaprotocol/datagrid';
import { import {
@ -183,6 +183,36 @@ export const LiquidityTable = ({
headerName: t('Commitment details'), headerName: t('Commitment details'),
marryChildren: true, marryChildren: true,
children: [ children: [
{
headerName: t('Status'),
headerTooltip: t('The current status of this liquidity provision.'),
field: 'status',
cellRenderer: ({
data,
value,
}: VegaICellRendererParams<LiquidityProvisionData, 'status'>) => {
if (!value) return value;
if (
data?.status === LiquidityProvisionStatus.STATUS_PENDING &&
(data?.currentCommitmentAmount || data?.currentFee)
) {
return (
<span className="text-warning">
{t('Updating next epoch')}
</span>
);
}
return (
<span>
{
LiquidityProvisionStatusMapping[
value as LiquidityProvisionStatus
]
}
</span>
);
},
},
{ {
headerName: t(`Commitment (${symbol})`), headerName: t(`Commitment (${symbol})`),
field: 'commitmentAmount', field: 'commitmentAmount',
@ -190,30 +220,46 @@ export const LiquidityTable = ({
headerTooltip: t( headerTooltip: t(
'The amount committed to the market by this liquidity provider.' 'The amount committed to the market by this liquidity provider.'
), ),
valueFormatter: ({ cellRenderer: ({
data, data,
value, value,
}: VegaValueFormatterParams< }: VegaICellRendererParams<
LiquidityProvisionData, LiquidityProvisionData,
'commitmentAmount' 'commitmentAmount'
>) => { >) => {
if (!value) return '-'; if (!value) return '-';
const formattedCommitmentAmount = addDecimalsFormatNumberQuantum( const currentCommitmentAmount = data?.currentCommitmentAmount;
value, const pendingCommitmentAmount = value;
assetDecimalPlaces ?? 0,
quantum ?? 0 const formattedPendingCommitmentAmount =
); addDecimalsFormatNumberQuantum(
if ( pendingCommitmentAmount,
data?.currentCommitmentAmount &&
data?.currentCommitmentAmount !== value
) {
return `${addDecimalsFormatNumberQuantum(
data.currentCommitmentAmount,
assetDecimalPlaces ?? 0, assetDecimalPlaces ?? 0,
quantum ?? 0 quantum ?? 0
)}/${formattedCommitmentAmount}`; );
if (
currentCommitmentAmount &&
currentCommitmentAmount !== pendingCommitmentAmount
) {
const formattedCurrentCommitmentAmount =
addDecimalsFormatNumberQuantum(
currentCommitmentAmount,
assetDecimalPlaces ?? 0,
quantum ?? 0
);
return (
<>
<span>{formattedCurrentCommitmentAmount}</span> (
<span className="text-warning">
{formattedPendingCommitmentAmount}
</span>
)
</>
);
} else { } else {
return formattedCommitmentAmount; return formattedPendingCommitmentAmount;
} }
}, },
tooltipValueGetter: assetDecimalsFormatter, tooltipValueGetter: assetDecimalsFormatter,
@ -223,9 +269,58 @@ export const LiquidityTable = ({
field: 'commitmentAmount', field: 'commitmentAmount',
type: 'rightAligned', type: 'rightAligned',
headerTooltip: t( headerTooltip: t(
`The liquidity provider's obligation to the market, calculated as the liquidity commitment amount multiplied by the value of the stake_to_ccy_volume network parameter to convert into units of liquidity volume. The obligation can be met by a combination of LP orders and limit orders on the order book.` `The liquidity provider's obligation to the market, calculated as the liquidity commitment amount multiplied by the value of the stake_to_ccy_volume network parameter to convert into units of liquidity volume.`
), ),
valueFormatter: stakeToCcyVolumeQuantumFormatter, cellRenderer: ({
data,
value,
}: VegaICellRendererParams<
LiquidityProvisionData,
'commitmentAmount'
>) => {
if (!value) return '-';
const currentCommitmentAmount = data?.currentCommitmentAmount
? new BigNumber(data?.currentCommitmentAmount)
.times(Number(stakeToCcyVolume) || 1)
.toString()
: undefined;
const pendingCommitmentAmount = new BigNumber(value)
.times(Number(stakeToCcyVolume) || 1)
.toString();
const formattedPendingCommitmentAmount =
addDecimalsFormatNumberQuantum(
pendingCommitmentAmount,
assetDecimalPlaces ?? 0,
quantum ?? 0
);
if (
currentCommitmentAmount &&
currentCommitmentAmount !== pendingCommitmentAmount
) {
const formattedCurrentCommitmentAmount =
addDecimalsFormatNumberQuantum(
currentCommitmentAmount,
assetDecimalPlaces ?? 0,
quantum ?? 0
);
return (
<>
<span>{formattedCurrentCommitmentAmount}</span> (
<span className="text-warning">
{formattedPendingCommitmentAmount}
</span>
)
</>
);
} else {
return formattedPendingCommitmentAmount;
}
},
tooltipValueGetter: stakeToCcyVolumeFormatter, tooltipValueGetter: stakeToCcyVolumeFormatter,
}, },
{ {
@ -235,21 +330,27 @@ export const LiquidityTable = ({
), ),
field: 'fee', field: 'fee',
type: 'rightAligned', type: 'rightAligned',
valueFormatter: ({ cellRenderer: ({
data, data,
value, value,
}: ValueFormatterParams<LiquidityProvisionData, 'fee'>) => { }: VegaICellRendererParams<LiquidityProvisionData, 'fee'>) => {
if (!value) return '-'; if (!value) return '-';
const formattedValue = const formattedPendingFee =
formatNumberPercentage(new BigNumber(value).times(100), 2) || formatNumberPercentage(new BigNumber(value).times(100), 2) ||
'-'; '-';
if (data?.currentFee && data?.currentFee !== value) { if (data?.currentFee && data?.currentFee !== value) {
return `${formatNumberPercentage( const formattedCurrentFee = formatNumberPercentage(
new BigNumber(data.currentFee).times(100), new BigNumber(data.currentFee).times(100),
2 2
)}/${formattedValue}`; );
return (
<>
<span>{formattedCurrentFee}</span> (
<span className="text-warning">{formattedPendingFee}</span>)
</>
);
} }
return formattedValue; return formattedPendingFee;
}, },
}, },
{ {
@ -367,26 +468,6 @@ export const LiquidityTable = ({
headerName: '', headerName: '',
marryChildren: true, marryChildren: true,
children: [ children: [
{
headerName: t('Status'),
headerTooltip: t('The current status of this liquidity provision.'),
field: 'status',
valueFormatter: ({
data,
value,
}: ValueFormatterParams<LiquidityProvisionData, 'status'>) => {
if (!value) return value;
if (
data?.status === LiquidityProvisionStatus.STATUS_PENDING &&
(data?.currentCommitmentAmount || data?.currentFee)
) {
return t('Updating next epoch');
}
return LiquidityProvisionStatusMapping[
value as LiquidityProvisionStatus
];
},
},
{ {
headerName: t('Created'), headerName: t('Created'),
headerTooltip: t( headerTooltip: t(