bbdc64582a
* feat(#2465): change red to vega pink * feat(#2465): change red to vega pink part 2 * fix: update vega.red to vega.pink * feat: color the charts * feat: color the charts * feat: color the charts * fix: use dark pink and green * fix: use dark pink and green * feat(#2467): color long/short toggle and place order button * fix: colors wick showing within candle * fix: remove opacity from chart * fix: use vega dark pink and green for vol cell * fix: toggle and button colors * feat(#2465): toggle peer checked text white * fix: add liquidity supplied gap-2 in tooltip data grid * fix: add indicator temporarily * chore: update colors * chore: update from x-dark to vega-x * fix: rename symbols * chore: update sell candles to only use stroke as they are solidly filled * fix: remove use state * fix: remove network account types Co-authored-by: Matthew Russell <mattrussell36@gmail.com>
131 lines
3.3 KiB
TypeScript
131 lines
3.3 KiB
TypeScript
import { useCallback, useMemo, useState } from 'react';
|
|
import {
|
|
addDecimalsFormatNumber,
|
|
formatNumberPercentage,
|
|
NetworkParams,
|
|
t,
|
|
useDataProvider,
|
|
useNetworkParams,
|
|
} from '@vegaprotocol/react-helpers';
|
|
import type {
|
|
MarketData,
|
|
MarketDataUpdateFieldsFragment,
|
|
SingleMarketFieldsFragment,
|
|
} from '@vegaprotocol/market-list';
|
|
import { marketDataProvider, marketProvider } from '@vegaprotocol/market-list';
|
|
import { HeaderStat } from '../header';
|
|
import { Indicator, Link } from '@vegaprotocol/ui-toolkit';
|
|
import BigNumber from 'bignumber.js';
|
|
import { useCheckLiquidityStatus } from '@vegaprotocol/liquidity';
|
|
import { DataGrid } from '@vegaprotocol/react-helpers';
|
|
|
|
interface Props {
|
|
marketId?: string;
|
|
noUpdate?: boolean;
|
|
assetDecimals: number;
|
|
}
|
|
|
|
export const MarketLiquiditySupplied = ({
|
|
marketId,
|
|
assetDecimals,
|
|
noUpdate = false,
|
|
}: Props) => {
|
|
const [market, setMarket] = useState<MarketData>();
|
|
const { params } = useNetworkParams([
|
|
NetworkParams.market_liquidity_stakeToCcyVolume,
|
|
NetworkParams.market_liquidity_targetstake_triggering_ratio,
|
|
]);
|
|
|
|
const stakeToCcyVolume = params.market_liquidity_stakeToCcyVolume;
|
|
const triggeringRatio = Number(
|
|
params.market_liquidity_targetstake_triggering_ratio
|
|
);
|
|
|
|
const variables = useMemo(
|
|
() => ({
|
|
marketId: marketId,
|
|
}),
|
|
[marketId]
|
|
);
|
|
|
|
const { data } = useDataProvider<SingleMarketFieldsFragment, never>({
|
|
dataProvider: marketProvider,
|
|
variables,
|
|
skip: !marketId,
|
|
});
|
|
|
|
const update = useCallback(
|
|
({ data: marketData }: { data: MarketData | null }) => {
|
|
if (!noUpdate && marketData) {
|
|
setMarket(marketData);
|
|
}
|
|
return true;
|
|
},
|
|
[noUpdate]
|
|
);
|
|
|
|
useDataProvider<MarketData, MarketDataUpdateFieldsFragment>({
|
|
dataProvider: marketDataProvider,
|
|
update,
|
|
variables,
|
|
skip: noUpdate || !marketId || !data,
|
|
});
|
|
|
|
const supplied = market?.suppliedStake
|
|
? addDecimalsFormatNumber(
|
|
new BigNumber(market?.suppliedStake)
|
|
.multipliedBy(stakeToCcyVolume || 1)
|
|
.toString(),
|
|
assetDecimals
|
|
)
|
|
: '-';
|
|
|
|
const { percentage, status } = useCheckLiquidityStatus({
|
|
suppliedStake: market?.suppliedStake || 0,
|
|
targetStake: market?.targetStake || 0,
|
|
triggeringRatio,
|
|
});
|
|
|
|
const compiledGrid = [
|
|
{
|
|
label: t('Supplied stake'),
|
|
value: market?.suppliedStake
|
|
? addDecimalsFormatNumber(
|
|
new BigNumber(market?.suppliedStake).toString(),
|
|
assetDecimals
|
|
)
|
|
: '-',
|
|
},
|
|
{
|
|
label: t('Target stake'),
|
|
value: market?.targetStake
|
|
? addDecimalsFormatNumber(
|
|
new BigNumber(market?.targetStake).toString(),
|
|
assetDecimals
|
|
)
|
|
: '-',
|
|
},
|
|
];
|
|
|
|
const description = (
|
|
<section>
|
|
{compiledGrid && <DataGrid grid={compiledGrid} />}
|
|
<br />
|
|
<Link href={`/#/liquidity/${marketId}`} data-testid="view-liquidity-link">
|
|
{t('View liquidity provision table')}
|
|
</Link>
|
|
</section>
|
|
);
|
|
|
|
return (
|
|
<HeaderStat
|
|
heading={t('Liquidity supplied')}
|
|
description={description}
|
|
testId="liquidity-supplied"
|
|
>
|
|
<Indicator variant={status} />
|
|
{supplied} ({formatNumberPercentage(percentage, 2)})
|
|
</HeaderStat>
|
|
);
|
|
};
|