mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
6e5c2f03bf
* addding the legacy tokenlist, tuning token detection OFF by default, adding new message while importing tokens updating the controller version and calling detectNewToken on network change fixing rebase error Run yarn lavamoat:auto for updating policies updating lavamoat Deleted node modules and run again lavamoat auto fixing rebase issues updating lavamoat policies updating lavamoat after rebasing policies updating custom token warning and blocking detectedtoken link when tpken detection is off for supported networks to update the token in fetchTosync updating the contract map object Revert build-system lavamoat policy changes Move token list selection logic from components to getTokenList selector updating the tokenList Update lavamoat Fix error updating lavamoat lint fix fix unit test fail fix unit test fail lint fix fixing rebase locale error rebase fix Revert build-system policy changes temp addressing review comments * rebase fix
127 lines
4.3 KiB
JavaScript
127 lines
4.3 KiB
JavaScript
import React, { useContext, useState } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { useSelector } from 'react-redux';
|
|
import ImportTokenLink from '../import-token-link';
|
|
import TokenList from '../token-list';
|
|
import AssetListItem from '../asset-list-item';
|
|
import { PRIMARY, SECONDARY } from '../../../helpers/constants/common';
|
|
import { useUserPreferencedCurrency } from '../../../hooks/useUserPreferencedCurrency';
|
|
import {
|
|
getSelectedAccountCachedBalance,
|
|
getShouldShowFiat,
|
|
getNativeCurrencyImage,
|
|
getDetectedTokensInCurrentNetwork,
|
|
getIstokenDetectionInactiveOnNonMainnetSupportedNetwork,
|
|
} from '../../../selectors';
|
|
import { getNativeCurrency } from '../../../ducks/metamask/metamask';
|
|
import { useCurrencyDisplay } from '../../../hooks/useCurrencyDisplay';
|
|
import Typography from '../../ui/typography/typography';
|
|
import Box from '../../ui/box/box';
|
|
import {
|
|
COLORS,
|
|
TYPOGRAPHY,
|
|
FONT_WEIGHT,
|
|
JUSTIFY_CONTENT,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
import { MetaMetricsContext } from '../../../contexts/metametrics';
|
|
import { EVENT } from '../../../../shared/constants/metametrics';
|
|
import DetectedToken from '../detected-token/detected-token';
|
|
import DetectedTokensLink from './detetcted-tokens-link/detected-tokens-link';
|
|
|
|
const AssetList = ({ onClickAsset }) => {
|
|
const t = useI18nContext();
|
|
|
|
const [showDetectedTokens, setShowDetectedTokens] = useState(false);
|
|
|
|
const selectedAccountBalance = useSelector(getSelectedAccountCachedBalance);
|
|
const nativeCurrency = useSelector(getNativeCurrency);
|
|
const showFiat = useSelector(getShouldShowFiat);
|
|
const trackEvent = useContext(MetaMetricsContext);
|
|
const balance = useSelector(getSelectedAccountCachedBalance);
|
|
const balanceIsLoading = !balance;
|
|
|
|
const {
|
|
currency: primaryCurrency,
|
|
numberOfDecimals: primaryNumberOfDecimals,
|
|
} = useUserPreferencedCurrency(PRIMARY, { ethNumberOfDecimals: 4 });
|
|
const {
|
|
currency: secondaryCurrency,
|
|
numberOfDecimals: secondaryNumberOfDecimals,
|
|
} = useUserPreferencedCurrency(SECONDARY, { ethNumberOfDecimals: 4 });
|
|
|
|
const [, primaryCurrencyProperties] = useCurrencyDisplay(
|
|
selectedAccountBalance,
|
|
{
|
|
numberOfDecimals: primaryNumberOfDecimals,
|
|
currency: primaryCurrency,
|
|
},
|
|
);
|
|
|
|
const [secondaryCurrencyDisplay, secondaryCurrencyProperties] =
|
|
useCurrencyDisplay(selectedAccountBalance, {
|
|
numberOfDecimals: secondaryNumberOfDecimals,
|
|
currency: secondaryCurrency,
|
|
});
|
|
|
|
const primaryTokenImage = useSelector(getNativeCurrencyImage);
|
|
const detectedTokens = useSelector(getDetectedTokensInCurrentNetwork) || [];
|
|
const istokenDetectionInactiveOnNonMainnetSupportedNetwork = useSelector(
|
|
getIstokenDetectionInactiveOnNonMainnetSupportedNetwork,
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<AssetListItem
|
|
onClick={() => onClickAsset(nativeCurrency)}
|
|
data-testid="wallet-balance"
|
|
primary={
|
|
primaryCurrencyProperties.value ?? secondaryCurrencyProperties.value
|
|
}
|
|
tokenSymbol={primaryCurrencyProperties.suffix}
|
|
secondary={showFiat ? secondaryCurrencyDisplay : undefined}
|
|
tokenImage={balanceIsLoading ? null : primaryTokenImage}
|
|
identiconBorder
|
|
/>
|
|
<TokenList
|
|
onTokenClick={(tokenAddress) => {
|
|
onClickAsset(tokenAddress);
|
|
trackEvent({
|
|
event: 'Clicked Token',
|
|
category: EVENT.CATEGORIES.NAVIGATION,
|
|
properties: {
|
|
action: 'Token Menu',
|
|
legacy_event: true,
|
|
},
|
|
});
|
|
}}
|
|
/>
|
|
{detectedTokens.length > 0 &&
|
|
!istokenDetectionInactiveOnNonMainnetSupportedNetwork && (
|
|
<DetectedTokensLink setShowDetectedTokens={setShowDetectedTokens} />
|
|
)}
|
|
<Box marginTop={detectedTokens.length > 0 ? 0 : 4}>
|
|
<Box justifyContent={JUSTIFY_CONTENT.CENTER}>
|
|
<Typography
|
|
color={COLORS.TEXT_ALTERNATIVE}
|
|
variant={TYPOGRAPHY.H6}
|
|
fontWeight={FONT_WEIGHT.NORMAL}
|
|
>
|
|
{t('missingToken')}
|
|
</Typography>
|
|
</Box>
|
|
<ImportTokenLink />
|
|
</Box>
|
|
{showDetectedTokens && (
|
|
<DetectedToken setShowDetectedTokens={setShowDetectedTokens} />
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
AssetList.propTypes = {
|
|
onClickAsset: PropTypes.func.isRequired,
|
|
};
|
|
|
|
export default AssetList;
|