mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
c16b35c029
* Extend wallet_watchAsset to support ERC721 and ERC1155 tokens
70 lines
1.6 KiB
JavaScript
70 lines
1.6 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classnames from 'classnames';
|
|
import {
|
|
Display,
|
|
AlignItems,
|
|
BlockSize,
|
|
JustifyContent,
|
|
TextVariant,
|
|
BorderRadius,
|
|
TextAlign,
|
|
BackgroundColor,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
import { Text } from '../../component-library';
|
|
import Box from '../../ui/box/box';
|
|
|
|
export default function NftDefaultImage({
|
|
name,
|
|
tokenId,
|
|
className,
|
|
clickable = false,
|
|
}) {
|
|
const t = useI18nContext();
|
|
return (
|
|
<Box
|
|
tabIndex={0}
|
|
data-testid="nft-default-image"
|
|
className={classnames(className, 'nft-default', {
|
|
'nft-default--clickable': clickable,
|
|
})}
|
|
display={Display.Flex}
|
|
alignItems={AlignItems.Center}
|
|
justifyContent={JustifyContent.Center}
|
|
backgroundColor={BackgroundColor.backgroundAlternative}
|
|
width={BlockSize.Full}
|
|
borderRadius={BorderRadius.LG}
|
|
>
|
|
<Text
|
|
variant={TextVariant.bodySm}
|
|
textAlign={TextAlign.Center}
|
|
ellipsis
|
|
as="h6"
|
|
className="nft-default__text"
|
|
>
|
|
{name ?? t('unknownCollection')} <br /> #{tokenId}
|
|
</Text>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
NftDefaultImage.propTypes = {
|
|
/**
|
|
* The name of the NFT collection if not supplied will default to "Unnamed collection"
|
|
*/
|
|
name: PropTypes.string,
|
|
/**
|
|
* The token id of the nft
|
|
*/
|
|
tokenId: PropTypes.string,
|
|
/**
|
|
* Controls the css class for the cursor hover
|
|
*/
|
|
clickable: PropTypes.bool,
|
|
/**
|
|
* An additional className to apply to the NFT default image
|
|
*/
|
|
className: PropTypes.string,
|
|
};
|