import { Skeleton } from '@mui/material'; import { useTranslation } from 'react-i18next'; import { useNavigate } from 'react-router-dom'; import { useChain, useSwapOnly, useToken } from '../../hooks'; import { useWidgetConfig } from '../../providers'; import type { FormTypeProps } from '../../stores'; import { FormKeyHelper, useFieldValues } from '../../stores'; import { navigationRoutes } from '../../utils'; import { Card, CardTitle } from '../Card'; import { TokenAvatar, TokenAvatarDefault, TokenAvatarSkeleton, } from '../TokenAvatar'; import { SelectTokenCardHeader } from './SelectTokenButton.style'; export const SelectTokenButton: React.FC< FormTypeProps & { compact: boolean; } > = ({ formType, compact }) => { const { t } = useTranslation(); const navigate = useNavigate(); const { disabledUI, subvariant } = useWidgetConfig(); const swapOnly = useSwapOnly(); const tokenKey = FormKeyHelper.getTokenKey(formType); const [chainId, tokenAddress] = useFieldValues( FormKeyHelper.getChainKey(formType), tokenKey, ); const { chain, isLoading: isChainLoading } = useChain(chainId); const { token, isLoading: isTokenLoading } = useToken(chainId, tokenAddress); const handleClick = () => { navigate( formType === 'from' ? navigationRoutes.fromToken : subvariant === 'refuel' ? navigationRoutes.toTokenNative : navigationRoutes.toToken, ); }; const isSelected = !!(chain && token); const onClick = !disabledUI?.includes(tokenKey) ? handleClick : undefined; const defaultPlaceholder = formType === 'to' && subvariant === 'refuel' ? t('main.selectChain') : formType === 'to' && swapOnly ? t('main.selectToken') : t('main.selectChainAndToken'); const cardTitle: string = formType === 'from' && subvariant === 'nft' ? t(`header.payWith`) : t(`main.${formType}`); return ( {cardTitle} {chainId && tokenAddress && (isChainLoading || isTokenLoading) ? ( } title={} subheader={} compact={compact} /> ) : ( ) : ( ) } title={isSelected ? token.symbol : defaultPlaceholder} titleTypographyProps={{ title: isSelected ? token.symbol : defaultPlaceholder, }} subheader={isSelected ? chain.name : null} subheaderTypographyProps={ isSelected ? { title: chain.name, } : undefined } selected={isSelected} compact={compact} /> )} ); };