mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
162 lines
5.0 KiB
JavaScript
162 lines
5.0 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
import { useHistory } from 'react-router-dom';
|
|
import Box from '../../ui/box';
|
|
import Button from '../../ui/button';
|
|
import Typography from '../../ui/typography/typography';
|
|
import CollectiblesDetectionNotice from '../collectibles-detection-notice';
|
|
import CollectiblesItems from '../collectibles-items';
|
|
import {
|
|
COLORS,
|
|
TYPOGRAPHY,
|
|
TEXT_ALIGN,
|
|
JUSTIFY_CONTENT,
|
|
FLEX_DIRECTION,
|
|
FONT_WEIGHT,
|
|
ALIGN_ITEMS,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
import { getCollectiblesDetectionNoticeDismissed } from '../../../ducks/metamask/metamask';
|
|
import { getIsMainnet, getUseCollectibleDetection } from '../../../selectors';
|
|
import { EXPERIMENTAL_ROUTE } from '../../../helpers/constants/routes';
|
|
import {
|
|
checkAndUpdateAllCollectiblesOwnershipStatus,
|
|
detectCollectibles,
|
|
} from '../../../store/actions';
|
|
import { useCollectiblesCollections } from '../../../hooks/useCollectiblesCollections';
|
|
import ZENDESK_URLS from '../../../helpers/constants/zendesk-url';
|
|
|
|
export default function CollectiblesTab({ onAddNFT }) {
|
|
const useCollectibleDetection = useSelector(getUseCollectibleDetection);
|
|
const isMainnet = useSelector(getIsMainnet);
|
|
const collectibleDetectionNoticeDismissed = useSelector(
|
|
getCollectiblesDetectionNoticeDismissed,
|
|
);
|
|
const history = useHistory();
|
|
const t = useI18nContext();
|
|
const dispatch = useDispatch();
|
|
|
|
const { collectiblesLoading, collections, previouslyOwnedCollection } =
|
|
useCollectiblesCollections();
|
|
|
|
const onEnableAutoDetect = () => {
|
|
history.push(EXPERIMENTAL_ROUTE);
|
|
};
|
|
|
|
const onRefresh = () => {
|
|
if (isMainnet) {
|
|
dispatch(detectCollectibles());
|
|
}
|
|
checkAndUpdateAllCollectiblesOwnershipStatus();
|
|
};
|
|
|
|
if (collectiblesLoading) {
|
|
return <div className="collectibles-tab__loading">{t('loadingNFTs')}</div>;
|
|
}
|
|
|
|
return (
|
|
<Box className="collectibles-tab">
|
|
{Object.keys(collections).length > 0 ||
|
|
previouslyOwnedCollection.collectibles.length > 0 ? (
|
|
<CollectiblesItems
|
|
collections={collections}
|
|
previouslyOwnedCollection={previouslyOwnedCollection}
|
|
/>
|
|
) : (
|
|
<>
|
|
{isMainnet &&
|
|
!useCollectibleDetection &&
|
|
!collectibleDetectionNoticeDismissed ? (
|
|
<CollectiblesDetectionNotice />
|
|
) : null}
|
|
<Box padding={12}>
|
|
<Box justifyContent={JUSTIFY_CONTENT.CENTER}>
|
|
<img src="./images/no-nfts.svg" />
|
|
</Box>
|
|
<Box
|
|
marginTop={4}
|
|
marginBottom={12}
|
|
justifyContent={JUSTIFY_CONTENT.CENTER}
|
|
flexDirection={FLEX_DIRECTION.COLUMN}
|
|
className="collectibles-tab__link"
|
|
>
|
|
<Typography
|
|
color={COLORS.TEXT_MUTED}
|
|
variant={TYPOGRAPHY.H4}
|
|
align={TEXT_ALIGN.CENTER}
|
|
fontWeight={FONT_WEIGHT.BOLD}
|
|
>
|
|
{t('noNFTs')}
|
|
</Typography>
|
|
<Button
|
|
type="link"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href={ZENDESK_URLS.NFT_TOKENS}
|
|
>
|
|
{t('learnMoreUpperCase')}
|
|
</Button>
|
|
</Box>
|
|
</Box>
|
|
</>
|
|
)}
|
|
<Box
|
|
marginBottom={4}
|
|
justifyContent={JUSTIFY_CONTENT.CENTER}
|
|
flexDirection={FLEX_DIRECTION.COLUMN}
|
|
>
|
|
<Typography
|
|
color={COLORS.TEXT_MUTED}
|
|
variant={TYPOGRAPHY.H5}
|
|
align={TEXT_ALIGN.CENTER}
|
|
>
|
|
{t('missingNFT')}
|
|
</Typography>
|
|
<Box
|
|
alignItems={ALIGN_ITEMS.CENTER}
|
|
justifyContent={JUSTIFY_CONTENT.CENTER}
|
|
>
|
|
{!isMainnet && Object.keys(collections).length < 1 ? null : (
|
|
<>
|
|
<Box
|
|
className="collectibles-tab__link"
|
|
justifyContent={JUSTIFY_CONTENT.FLEX_END}
|
|
>
|
|
{isMainnet && !useCollectibleDetection ? (
|
|
<Button type="link" onClick={onEnableAutoDetect}>
|
|
{t('enableAutoDetect')}
|
|
</Button>
|
|
) : (
|
|
<Button type="link" onClick={onRefresh}>
|
|
{t('refreshList')}
|
|
</Button>
|
|
)}
|
|
</Box>
|
|
<Typography
|
|
color={COLORS.TEXT_MUTED}
|
|
variant={TYPOGRAPHY.H6}
|
|
align={TEXT_ALIGN.CENTER}
|
|
>
|
|
{t('or')}
|
|
</Typography>
|
|
</>
|
|
)}
|
|
<Box
|
|
justifyContent={JUSTIFY_CONTENT.FLEX_START}
|
|
className="collectibles-tab__link"
|
|
>
|
|
<Button type="link" onClick={onAddNFT}>
|
|
{t('importNFTs')}
|
|
</Button>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
CollectiblesTab.propTypes = {
|
|
onAddNFT: PropTypes.func.isRequired,
|
|
};
|