import React, { useEffect } from 'react'; import PropTypes from 'prop-types'; import { useDispatch, useSelector } from 'react-redux'; import { useHistory } from 'react-router-dom'; import { isEqual } from 'lodash'; import Box from '../../ui/box'; import Card from '../../ui/card'; import Typography from '../../ui/typography/typography'; import { TextColor, IconColor, TypographyVariant, FONT_WEIGHT, JustifyContent, FLEX_DIRECTION, OVERFLOW_WRAP, DISPLAY, BLOCK_SIZES, } from '../../../helpers/constants/design-system'; import { useI18nContext } from '../../../hooks/useI18nContext'; import { formatDate, getAssetImageURL, shortenAddress, } from '../../../helpers/utils/util'; import { getNftImageAlt } from '../../../helpers/utils/nfts'; import { getCurrentChainId, getIpfsGateway, getSelectedIdentity, } from '../../../selectors'; import AssetNavigation from '../../../pages/asset/components/asset-navigation'; import { getNftContracts } from '../../../ducks/metamask/metamask'; import { DEFAULT_ROUTE, SEND_ROUTE } from '../../../helpers/constants/routes'; import { checkAndUpdateSingleNftOwnershipStatus, removeAndIgnoreNft, setRemoveNftMessage, setNewNftAddedMessage, } from '../../../store/actions'; import { CHAIN_IDS } from '../../../../shared/constants/network'; import { getEnvironmentType } from '../../../../app/scripts/lib/util'; import { ENVIRONMENT_TYPE_POPUP } from '../../../../shared/constants/app'; import NftOptions from '../nft-options/nft-options'; import Button from '../../ui/button'; import { startNewDraftTransaction } from '../../../ducks/send'; import InfoTooltip from '../../ui/info-tooltip'; import { usePrevious } from '../../../hooks/usePrevious'; import { useCopyToClipboard } from '../../../hooks/useCopyToClipboard'; import { isEqualCaseInsensitive } from '../../../../shared/modules/string-utils'; import { AssetType, TokenStandard, } from '../../../../shared/constants/transaction'; import NftDefaultImage from '../nft-default-image'; import { ButtonIcon, ICON_NAMES } from '../../component-library'; import Tooltip from '../../ui/tooltip'; import { decWEIToDecETH } from '../../../../shared/modules/conversion.utils'; export default function NftDetails({ nft }) { const { image, imageOriginal, name, description, address, tokenId, standard, isCurrentlyOwned, lastSale, imageThumbnail, } = nft; const t = useI18nContext(); const history = useHistory(); const dispatch = useDispatch(); const ipfsGateway = useSelector(getIpfsGateway); const nftContracts = useSelector(getNftContracts); const currentNetwork = useSelector(getCurrentChainId); const [addressCopied, handleAddressCopy] = useCopyToClipboard(); const nftContractName = nftContracts.find(({ address: contractAddress }) => isEqualCaseInsensitive(contractAddress, address), )?.name; const selectedAccountName = useSelector( (state) => getSelectedIdentity(state).name, ); const nftImageAlt = getNftImageAlt(nft); const nftImageURL = getAssetImageURL(imageOriginal ?? image, ipfsGateway); const isDataURI = nftImageURL.startsWith('data:'); const formattedTimestamp = formatDate( new Date(lastSale?.event_timestamp).getTime(), 'M/d/y', ); const onRemove = () => { dispatch(removeAndIgnoreNft(address, tokenId)); dispatch(setNewNftAddedMessage('')); dispatch(setRemoveNftMessage('success')); history.push(DEFAULT_ROUTE); }; const prevNft = usePrevious(nft); useEffect(() => { if (!isEqual(prevNft, nft)) { checkAndUpdateSingleNftOwnershipStatus(nft); } }, [nft, prevNft]); const getOpenSeaLink = () => { switch (currentNetwork) { case CHAIN_IDS.MAINNET: return `https://opensea.io/assets/${address}/${tokenId}`; case CHAIN_IDS.POLYGON: return `https://opensea.io/assets/matic/${address}/${tokenId}`; case CHAIN_IDS.GOERLI: case CHAIN_IDS.SEPOLIA: return `https://testnets.opensea.io/assets/${address}/${tokenId}`; default: return null; } }; const openSeaLink = getOpenSeaLink(); const sendDisabled = standard !== TokenStandard.ERC721; const inPopUp = getEnvironmentType() === ENVIRONMENT_TYPE_POPUP; const onSend = async () => { await dispatch( startNewDraftTransaction({ type: AssetType.NFT, details: nft, }), ); history.push(SEND_ROUTE); }; const renderSendButton = () => { if (isCurrentlyOwned === false) { return
; } return ( {sendDisabled ? ( ) : null} ); }; return ( <> history.push(DEFAULT_ROUTE)} optionsButton={ global.platform.openTab({ url: openSeaLink }) : null } onRemove={onRemove} /> } />
{image ? ( {nftImageAlt} ) : ( )}
{name} #{tokenId}
{description ? (
{t('description')} {description}
) : null} {inPopUp ? null : renderSendButton()}
{lastSale ? ( <> {t('lastSold')} {formattedTimestamp} {t('lastPriceSold')} {`${Number(decWEIToDecETH(lastSale.total_price))} ${ lastSale.payment_token.symbol }`} ) : null} {t('source')} {isDataURI ? ( <>{nftImageURL} ) : ( {nftImageURL} )} {imageThumbnail ? ( {t('link')} {imageThumbnail} ) : null} {t('contractAddress')} {shortenAddress(address)} { handleAddressCopy(address); }} iconName={ addressCopied ? ICON_NAMES.COPY_SUCCESS : ICON_NAMES.COPY } /> {inPopUp ? renderSendButton() : null} {t('nftDisclaimer')}
); } NftDetails.propTypes = { nft: PropTypes.shape({ address: PropTypes.string.isRequired, tokenId: PropTypes.string.isRequired, isCurrentlyOwned: PropTypes.bool, name: PropTypes.string, description: PropTypes.string, image: PropTypes.string, standard: PropTypes.string, imageThumbnail: PropTypes.string, imagePreview: PropTypes.string, imageOriginal: PropTypes.string, creator: PropTypes.shape({ address: PropTypes.string, config: PropTypes.string, profile_img_url: PropTypes.string, }), lastSale: PropTypes.shape({ event_timestamp: PropTypes.string, total_price: PropTypes.string, payment_token: PropTypes.shape({ symbol: PropTypes.string, }), }), }), };