mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 23:58:06 +01:00
1304ec7af5
We want to convert NetworkController to TypeScript in order to be able to compare differences in the controller between in this repo and the core repo. To do this, however, we need to convert the dependencies of the controller to TypeScript. As a part of this effort, this commit converts `shared/constants/metametrics` to TypeScript. Note that simple objects have been largely replaced with enums. There are some cases where I even split up some of these objects into multiple enums. Co-authored-by: Mark Stacey <markjstacey@gmail.com>
170 lines
5.6 KiB
JavaScript
170 lines
5.6 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,
|
|
getTokenList,
|
|
} from '../../../selectors';
|
|
import { getNativeCurrency } from '../../../ducks/metamask/metamask';
|
|
import { useCurrencyDisplay } from '../../../hooks/useCurrencyDisplay';
|
|
import Box from '../../ui/box/box';
|
|
import {
|
|
Color,
|
|
TextVariant,
|
|
TEXT_ALIGN,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
import { MetaMetricsContext } from '../../../contexts/metametrics';
|
|
import {
|
|
MetaMetricsEventCategory,
|
|
MetaMetricsEventName,
|
|
} from '../../../../shared/constants/metametrics';
|
|
import DetectedToken from '../detected-token/detected-token';
|
|
import {
|
|
DetectedTokensBanner,
|
|
MultichainTokenListItem,
|
|
MultichainImportTokenLink,
|
|
} from '../../multichain';
|
|
import { Text } from '../../component-library';
|
|
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,
|
|
);
|
|
const tokenList = useSelector(getTokenList);
|
|
const tokenData = Object.values(tokenList).find(
|
|
(token) => token.symbol === primaryCurrencyProperties.suffix,
|
|
);
|
|
const title = tokenData?.name || primaryCurrencyProperties.suffix;
|
|
return (
|
|
<>
|
|
{process.env.MULTICHAIN ? (
|
|
<MultichainTokenListItem
|
|
onClick={() => onClickAsset(nativeCurrency)}
|
|
title={title}
|
|
primary={
|
|
primaryCurrencyProperties.value ?? secondaryCurrencyProperties.value
|
|
}
|
|
tokenSymbol={primaryCurrencyProperties.suffix}
|
|
secondary={showFiat ? secondaryCurrencyDisplay : undefined}
|
|
tokenImage={balanceIsLoading ? null : primaryTokenImage}
|
|
/>
|
|
) : (
|
|
<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: MetaMetricsEventName.TokenScreenOpened,
|
|
category: MetaMetricsEventCategory.Navigation,
|
|
properties: {
|
|
token_symbol: primaryCurrencyProperties.suffix,
|
|
location: 'Home',
|
|
},
|
|
});
|
|
}}
|
|
/>
|
|
{detectedTokens.length > 0 &&
|
|
!istokenDetectionInactiveOnNonMainnetSupportedNetwork && (
|
|
<>
|
|
{process.env.MULTICHAIN ? (
|
|
<DetectedTokensBanner
|
|
actionButtonOnClick={() => setShowDetectedTokens(true)}
|
|
margin={4}
|
|
/>
|
|
) : (
|
|
<DetectedTokensLink
|
|
setShowDetectedTokens={setShowDetectedTokens}
|
|
/>
|
|
)}
|
|
</>
|
|
)}
|
|
<Box marginTop={detectedTokens.length > 0 ? 0 : 4}>
|
|
{process.env.MULTICHAIN ? (
|
|
<MultichainImportTokenLink margin={4} />
|
|
) : (
|
|
<>
|
|
<Text
|
|
color={Color.textAlternative}
|
|
variant={TextVariant.bodySm}
|
|
as="h6"
|
|
textAlign={TEXT_ALIGN.CENTER}
|
|
>
|
|
{t('missingToken')}
|
|
</Text>
|
|
|
|
<ImportTokenLink />
|
|
</>
|
|
)}
|
|
</Box>
|
|
{showDetectedTokens && (
|
|
<DetectedToken setShowDetectedTokens={setShowDetectedTokens} />
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
AssetList.propTypes = {
|
|
onClickAsset: PropTypes.func.isRequired,
|
|
};
|
|
|
|
export default AssetList;
|