mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
273 lines
9.0 KiB
JavaScript
273 lines
9.0 KiB
JavaScript
import React, { useContext } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
import classnames from 'classnames';
|
|
import { useHistory } from 'react-router-dom';
|
|
|
|
import Identicon from '../../ui/identicon';
|
|
import { I18nContext } from '../../../contexts/i18n';
|
|
import {
|
|
SEND_ROUTE,
|
|
BUILD_QUOTE_ROUTE,
|
|
} from '../../../helpers/constants/routes';
|
|
import Tooltip from '../../ui/tooltip';
|
|
import UserPreferencedCurrencyDisplay from '../user-preferenced-currency-display';
|
|
import { PRIMARY, SECONDARY } from '../../../helpers/constants/common';
|
|
import {
|
|
isBalanceCached,
|
|
getShouldShowFiat,
|
|
getCurrentKeyring,
|
|
getSwapsDefaultToken,
|
|
getIsSwapsChain,
|
|
getIsBuyableChain,
|
|
getNativeCurrencyImage,
|
|
getSelectedAccountCachedBalance,
|
|
} from '../../../selectors';
|
|
import { setSwapsFromToken } from '../../../ducks/swaps/swaps';
|
|
import IconButton from '../../ui/icon-button';
|
|
import { isHardwareKeyring } from '../../../helpers/utils/hardware';
|
|
import { MetaMetricsContext } from '../../../contexts/metametrics';
|
|
import {
|
|
EVENT,
|
|
EVENT_NAMES,
|
|
CONTEXT_PROPS,
|
|
} from '../../../../shared/constants/metametrics';
|
|
import Spinner from '../../ui/spinner';
|
|
import { startNewDraftTransaction } from '../../../ducks/send';
|
|
import { AssetType } from '../../../../shared/constants/transaction';
|
|
import {
|
|
ButtonIcon,
|
|
BUTTON_ICON_SIZES,
|
|
Icon,
|
|
ICON_NAMES,
|
|
} from '../../component-library';
|
|
import { IconColor } from '../../../helpers/constants/design-system';
|
|
import useRamps from '../../../hooks/experiences/useRamps';
|
|
import WalletOverview from './wallet-overview';
|
|
|
|
const EthOverview = ({ className }) => {
|
|
const dispatch = useDispatch();
|
|
const t = useContext(I18nContext);
|
|
const trackEvent = useContext(MetaMetricsContext);
|
|
const history = useHistory();
|
|
const keyring = useSelector(getCurrentKeyring);
|
|
const usingHardwareWallet = isHardwareKeyring(keyring?.type);
|
|
const balanceIsCached = useSelector(isBalanceCached);
|
|
const showFiat = useSelector(getShouldShowFiat);
|
|
const balance = useSelector(getSelectedAccountCachedBalance);
|
|
const isSwapsChain = useSelector(getIsSwapsChain);
|
|
const isBuyableChain = useSelector(getIsBuyableChain);
|
|
const primaryTokenImage = useSelector(getNativeCurrencyImage);
|
|
const defaultSwapsToken = useSelector(getSwapsDefaultToken);
|
|
|
|
const { openBuyCryptoInPdapp } = useRamps();
|
|
|
|
return (
|
|
<WalletOverview
|
|
loading={!balance}
|
|
balance={
|
|
<Tooltip
|
|
position="top"
|
|
title={t('balanceOutdated')}
|
|
disabled={!balanceIsCached}
|
|
>
|
|
<div className="eth-overview__balance">
|
|
<div className="eth-overview__primary-container">
|
|
{balance ? (
|
|
<UserPreferencedCurrencyDisplay
|
|
style={{ display: 'contents' }}
|
|
className={classnames('eth-overview__primary-balance', {
|
|
'eth-overview__cached-balance': balanceIsCached,
|
|
})}
|
|
data-testid="eth-overview__primary-currency"
|
|
value={balance}
|
|
type={PRIMARY}
|
|
ethNumberOfDecimals={4}
|
|
hideTitle
|
|
/>
|
|
) : (
|
|
<Spinner
|
|
color="var(--color-secondary-default)"
|
|
className="loading-overlay__spinner"
|
|
/>
|
|
)}
|
|
{balanceIsCached ? (
|
|
<span className="eth-overview__cached-star">*</span>
|
|
) : null}
|
|
<ButtonIcon
|
|
className="eth-overview__portfolio-button"
|
|
data-testid="home__portfolio-site"
|
|
color={IconColor.primaryDefault}
|
|
iconName={ICON_NAMES.DIAGRAM}
|
|
ariaLabel={t('portfolio')}
|
|
size={BUTTON_ICON_SIZES.LG}
|
|
onClick={() => {
|
|
const portfolioUrl = process.env.PORTFOLIO_URL;
|
|
global.platform.openTab({
|
|
url: `${portfolioUrl}?metamaskEntry=ext`,
|
|
});
|
|
trackEvent(
|
|
{
|
|
category: EVENT.CATEGORIES.HOME,
|
|
event: EVENT_NAMES.PORTFOLIO_LINK_CLICKED,
|
|
properties: {
|
|
url: portfolioUrl,
|
|
},
|
|
},
|
|
{
|
|
contextPropsIntoEventProperties: [
|
|
CONTEXT_PROPS.PAGE_TITLE,
|
|
],
|
|
},
|
|
);
|
|
}}
|
|
/>
|
|
</div>
|
|
{showFiat && balance && (
|
|
<UserPreferencedCurrencyDisplay
|
|
className={classnames({
|
|
'eth-overview__cached-secondary-balance': balanceIsCached,
|
|
'eth-overview__secondary-balance': !balanceIsCached,
|
|
})}
|
|
data-testid="eth-overview__secondary-currency"
|
|
value={balance}
|
|
type={SECONDARY}
|
|
ethNumberOfDecimals={4}
|
|
hideTitle
|
|
/>
|
|
)}
|
|
</div>
|
|
</Tooltip>
|
|
}
|
|
buttons={
|
|
<>
|
|
<IconButton
|
|
className="eth-overview__button"
|
|
Icon={
|
|
<Icon name={ICON_NAMES.ADD} color={IconColor.primaryInverse} />
|
|
}
|
|
disabled={!isBuyableChain}
|
|
data-testid="eth-overview-buy"
|
|
label={t('buy')}
|
|
onClick={() => {
|
|
openBuyCryptoInPdapp();
|
|
trackEvent({
|
|
event: EVENT_NAMES.NAV_BUY_BUTTON_CLICKED,
|
|
category: EVENT.CATEGORIES.NAVIGATION,
|
|
properties: {
|
|
location: 'Home',
|
|
text: 'Buy',
|
|
},
|
|
});
|
|
}}
|
|
/>
|
|
<IconButton
|
|
className="eth-overview__button"
|
|
data-testid="eth-overview-send"
|
|
Icon={
|
|
<Icon
|
|
name={ICON_NAMES.ARROW_2_RIGHT}
|
|
color={IconColor.primaryInverse}
|
|
/>
|
|
}
|
|
label={t('send')}
|
|
onClick={() => {
|
|
trackEvent({
|
|
event: EVENT_NAMES.NAV_SEND_BUTTON_CLICKED,
|
|
category: EVENT.CATEGORIES.NAVIGATION,
|
|
properties: {
|
|
token_symbol: 'ETH',
|
|
location: 'Home',
|
|
text: 'Send',
|
|
},
|
|
});
|
|
dispatch(
|
|
startNewDraftTransaction({ type: AssetType.native }),
|
|
).then(() => {
|
|
history.push(SEND_ROUTE);
|
|
});
|
|
}}
|
|
/>
|
|
<IconButton
|
|
className="eth-overview__button"
|
|
disabled={!isSwapsChain}
|
|
Icon={
|
|
<Icon
|
|
name={ICON_NAMES.SWAP_HORIZONTAL}
|
|
color={IconColor.primaryInverse}
|
|
/>
|
|
}
|
|
onClick={() => {
|
|
if (isSwapsChain) {
|
|
trackEvent({
|
|
event: EVENT_NAMES.NAV_SWAP_BUTTON_CLICKED,
|
|
category: EVENT.CATEGORIES.SWAPS,
|
|
properties: {
|
|
token_symbol: 'ETH',
|
|
location: EVENT.SOURCE.SWAPS.MAIN_VIEW,
|
|
text: 'Swap',
|
|
},
|
|
});
|
|
dispatch(setSwapsFromToken(defaultSwapsToken));
|
|
if (usingHardwareWallet) {
|
|
global.platform.openExtensionInBrowser(BUILD_QUOTE_ROUTE);
|
|
} else {
|
|
history.push(BUILD_QUOTE_ROUTE);
|
|
}
|
|
}
|
|
}}
|
|
label={t('swap')}
|
|
tooltipRender={
|
|
isSwapsChain
|
|
? null
|
|
: (contents) => (
|
|
<Tooltip
|
|
title={t('currentlyUnavailable')}
|
|
position="bottom"
|
|
>
|
|
{contents}
|
|
</Tooltip>
|
|
)
|
|
}
|
|
/>
|
|
<IconButton
|
|
className="eth-overview__button"
|
|
data-testid="eth-overview-bridge"
|
|
Icon={
|
|
<Icon name={ICON_NAMES.BRIDGE} color={IconColor.primaryInverse} />
|
|
}
|
|
label={t('bridge')}
|
|
onClick={() => {
|
|
const portfolioUrl = process.env.PORTFOLIO_URL;
|
|
const bridgeUrl = `${portfolioUrl}/bridge`;
|
|
global.platform.openTab({
|
|
url: `${bridgeUrl}?metamaskEntry=ext`,
|
|
});
|
|
trackEvent({
|
|
category: EVENT.CATEGORIES.NAVIGATION,
|
|
event: EVENT_NAMES.BRIDGE_LINK_CLICKED,
|
|
properties: {
|
|
location: 'Home',
|
|
text: 'Bridge',
|
|
},
|
|
});
|
|
}}
|
|
/>
|
|
</>
|
|
}
|
|
className={className}
|
|
icon={<Identicon diameter={32} image={primaryTokenImage} imageBorder />}
|
|
/>
|
|
);
|
|
};
|
|
|
|
EthOverview.propTypes = {
|
|
className: PropTypes.string,
|
|
};
|
|
|
|
EthOverview.defaultProps = {
|
|
className: undefined,
|
|
};
|
|
|
|
export default EthOverview;
|