components#StakeQuickModal TypeScript Examples
The following examples show how to use
components#StakeQuickModal.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TradingInfo.tsx From interface-v2 with GNU General Public License v3.0 | 5 votes |
TradingInfo: React.FC<{ globalData: any }> = ({ globalData }) => {
const classes = useStyles();
const lairInfo = useLairInfo();
const [openStakeModal, setOpenStakeModal] = useState(false);
const dQUICKAPY = useLairDQUICKAPY(lairInfo);
const totalRewardsUSD = useTotalRewardsDistributed();
return (
<>
{openStakeModal && (
<StakeQuickModal
open={openStakeModal}
onClose={() => setOpenStakeModal(false)}
/>
)}
<Box className={classes.tradingSection}>
{globalData ? (
<Typography variant='h3'>
{Number(globalData.oneDayTxns).toLocaleString()}
</Typography>
) : (
<Skeleton variant='rect' width={100} height={45} />
)}
<Typography>24H TRANSACTIONS</Typography>
</Box>
<Box className={classes.tradingSection}>
{globalData ? (
<Box display='flex'>
<Typography variant='h6'>$</Typography>
<Typography variant='h3'>
{formatCompact(globalData.oneDayVolumeUSD)}
</Typography>
</Box>
) : (
<Skeleton variant='rect' width={100} height={45} />
)}
<Typography>24H TRADING VOLUME</Typography>
</Box>
<Box className={classes.tradingSection}>
{totalRewardsUSD ? (
<Box display='flex'>
<Typography variant='h6'>$</Typography>
<Typography variant='h3'>
{totalRewardsUSD.toLocaleString()}
</Typography>
</Box>
) : (
<Skeleton variant='rect' width={100} height={45} />
)}
<Typography>24h REWARDS DISTRIBUTED</Typography>
</Box>
<Box className={classes.tradingSection}>
{globalData ? (
<Typography variant='h3'>
{Number(globalData.pairCount).toLocaleString(undefined, {
maximumFractionDigits: 0,
})}
</Typography>
) : (
<Skeleton variant='rect' width={100} height={45} />
)}
<Typography>TOTAL TRADING PAIRS</Typography>
</Box>
<Box className={classes.tradingSection} pt='20px'>
{dQUICKAPY ? (
<Typography variant='h3'>{dQUICKAPY.toLocaleString()}%</Typography>
) : (
<Skeleton variant='rect' width={100} height={45} />
)}
<Typography>dQUICK APY</Typography>
<Typography variant='h4' onClick={() => setOpenStakeModal(true)}>
stake {'>'}
</Typography>
</Box>
</>
);
}
Example #2
Source File: DragonsLair.tsx From interface-v2 with GNU General Public License v3.0 | 4 votes |
DragonsLair: React.FC = () => {
const classes = useStyles();
const { palette } = useTheme();
const quickPrice = useUSDCPriceToken(returnTokenFromKey('QUICK'));
const dQUICKPrice = useUSDCPriceToken(returnTokenFromKey('DQUICK'));
const dQUICKtoQUICK = dQUICKPrice / quickPrice;
const QUICKtodQUICK = quickPrice / dQUICKPrice;
const [isQUICKRate, setIsQUICKRate] = useState(false);
const [openStakeModal, setOpenStakeModal] = useState(false);
const [openUnstakeModal, setOpenUnstakeModal] = useState(false);
const lairInfo = useLairInfo();
const APY = useLairDQUICKAPY(lairInfo);
return (
<Box position='relative' zIndex={3}>
{openStakeModal && (
<StakeQuickModal
open={openStakeModal}
onClose={() => setOpenStakeModal(false)}
/>
)}
{openUnstakeModal && (
<UnstakeQuickModal
open={openUnstakeModal}
onClose={() => setOpenUnstakeModal(false)}
/>
)}
<Box display='flex'>
<CurrencyLogo currency={returnTokenFromKey('QUICK')} size='32px' />
<Box ml={1.5}>
<Typography
variant='body2'
style={{ color: palette.text.primary, lineHeight: 1 }}
>
QUICK
</Typography>
<Typography variant='caption' style={{ color: palette.text.hint }}>
Single Stake — Auto compounding
</Typography>
</Box>
</Box>
<Box display='flex' justifyContent='space-between' mt={1.5}>
<Typography variant='body2'>Total QUICK</Typography>
<Typography variant='body2'>
{lairInfo
? lairInfo.totalQuickBalance.toFixed(2, {
groupSeparator: ',',
})
: 0}
</Typography>
</Box>
<Box display='flex' justifyContent='space-between' mt={1.5}>
<Typography variant='body2'>TVL:</Typography>
<Typography variant='body2'>
$
{(
Number(lairInfo.totalQuickBalance.toExact()) * quickPrice
).toLocaleString()}
</Typography>
</Box>
<Box display='flex' justifyContent='space-between' mt={1.5}>
<Typography variant='body2'>APY</Typography>
<Typography variant='body2' style={{ color: palette.success.main }}>
{APY}%
</Typography>
</Box>
<Box display='flex' justifyContent='space-between' mt={1.5}>
<Typography variant='body2'>Your Deposits</Typography>
<Typography variant='body2'>
{formatTokenAmount(lairInfo.QUICKBalance)}
</Typography>
</Box>
<Box
mt={2.5}
width={1}
height='40px'
display='flex'
alignItems='center'
justifyContent='center'
borderRadius={10}
border={`1px solid ${palette.secondary.light}`}
>
<CurrencyLogo currency={returnTokenFromKey('QUICK')} />
<Typography variant='body2' style={{ margin: '0 8px' }}>
{isQUICKRate ? 1 : dQUICKtoQUICK.toLocaleString()} QUICK =
</Typography>
<CurrencyLogo currency={returnTokenFromKey('QUICK')} />
<Typography variant='body2' style={{ margin: '0 8px' }}>
{isQUICKRate ? QUICKtodQUICK.toLocaleString() : 1} dQUICK
</Typography>
<PriceExchangeIcon
style={{ cursor: 'pointer' }}
onClick={() => setIsQUICKRate(!isQUICKRate)}
/>
</Box>
<Box
className={classes.stakeButton}
bgcolor={palette.primary.main}
onClick={() => setOpenStakeModal(true)}
>
<Typography variant='body2'>Stake</Typography>
</Box>
<Box
className={classes.stakeButton}
bgcolor='transparent'
onClick={() => setOpenUnstakeModal(true)}
>
<Typography variant='body2'>Unstake</Typography>
</Box>
<Box mt={3} textAlign='center'>
<Typography
variant='caption'
style={{ color: palette.text.secondary, fontWeight: 500 }}
>
⭐️ When you unstake, the contract will automatically claim QUICK on
your behalf.
</Typography>
</Box>
</Box>
);
}