mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-03 14:44:27 +01:00
4f66dc948f
The controllers package has been updated to v33. The only breaking change in this release was to rename the term "collectible" to "NFT" wherever it appeared in the API. Changes in this PR have been kept minimal; additional renaming can be done in separate PRs. This PR only updates the controller names, controller state, controller methods, and any direct references to these things. NFTs are still called "collectibles" in most places.
75 lines
2.3 KiB
JavaScript
75 lines
2.3 KiB
JavaScript
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 { ignoreTokens } from '../../../../store/actions';
|
|
import { isEqualCaseInsensitive } from '../../../../../shared/modules/string-utils';
|
|
|
|
const ConvertTokenToNFTModal = ({ hideModal, tokenAddress }) => {
|
|
const history = useHistory();
|
|
const t = useI18nContext();
|
|
const dispatch = useDispatch();
|
|
const allNfts = useSelector(getCollectibles);
|
|
const tokenAddedAsNFT = allNfts.find(({ address }) =>
|
|
isEqualCaseInsensitive(address, tokenAddress),
|
|
);
|
|
|
|
return (
|
|
<Modal
|
|
onSubmit={async () => {
|
|
if (tokenAddedAsNFT) {
|
|
await dispatch(
|
|
ignoreTokens({
|
|
tokensToIgnore: tokenAddress,
|
|
dontShowLoadingIndicator: true,
|
|
}),
|
|
);
|
|
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')}
|
|
>
|
|
<div className="convert-token-to-nft-modal">
|
|
<Typography
|
|
variant={TYPOGRAPHY.H6}
|
|
boxProps={{
|
|
marginTop: 2,
|
|
}}
|
|
>
|
|
{tokenAddedAsNFT
|
|
? t('convertTokenToNFTExistDescription')
|
|
: t('convertTokenToNFTDescription')}
|
|
</Typography>
|
|
</div>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
ConvertTokenToNFTModal.propTypes = {
|
|
hideModal: PropTypes.func.isRequired,
|
|
tokenAddress: PropTypes.string,
|
|
};
|
|
|
|
export default withModalProps(ConvertTokenToNFTModal);
|