import React from 'react'; import PropTypes from 'prop-types'; import { useHistory } from 'react-router-dom'; import { useDispatch, useSelector } from 'react-redux'; import Modal from '../../modal'; import Typography from '../../../ui/typography'; import { TYPOGRAPHY } from '../../../../helpers/constants/design-system'; import withModalProps from '../../../../helpers/higher-order-components/with-modal-props'; import { useI18nContext } from '../../../../hooks/useI18nContext'; import { ADD_COLLECTIBLE_ROUTE, ASSET_ROUTE, } from '../../../../helpers/constants/routes'; import { getCollectibles } from '../../../../ducks/metamask/metamask'; import { removeToken } from '../../../../store/actions'; import { isEqualCaseInsensitive } from '../../../../../shared/modules/string-utils'; const ConvertTokenToNFTModal = ({ hideModal, tokenAddress }) => { const history = useHistory(); const t = useI18nContext(); const dispatch = useDispatch(); const allCollectibles = useSelector(getCollectibles); const tokenAddedAsNFT = allCollectibles.find(({ address }) => isEqualCaseInsensitive(address, tokenAddress), ); return ( { if (tokenAddedAsNFT) { await dispatch(removeToken(tokenAddress)); const { tokenId } = tokenAddedAsNFT; history.push({ pathname: `${ASSET_ROUTE}/${tokenAddress}/${tokenId}`, }); } else { history.push({ pathname: ADD_COLLECTIBLE_ROUTE, state: { tokenAddress }, }); } hideModal(); }} submitText={t('yes')} onCancel={() => hideModal()} cancelText={t('cancel')} >
{tokenAddedAsNFT ? t('convertTokenToNFTExistDescription') : t('convertTokenToNFTDescription')}
); }; ConvertTokenToNFTModal.propTypes = { hideModal: PropTypes.func.isRequired, tokenAddress: PropTypes.string, }; export default withModalProps(ConvertTokenToNFTModal);