mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
9fae71505c
* Worked on issue #17670 & #18714 for 4 other files. * Updated snapshots. * Update index.test.js.snap * Update customize-nonce.test.js.snap * Update signature-request.component.test.js.snap --------- Co-authored-by: Brad Decker <bhdecker84@gmail.com> Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com>
124 lines
3.3 KiB
JavaScript
124 lines
3.3 KiB
JavaScript
import React, { useContext } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import IconWithFallback from '../../ui/icon-with-fallback';
|
|
import Identicon from '../../ui/identicon';
|
|
import {
|
|
DISPLAY,
|
|
FLEX_DIRECTION,
|
|
TextVariant,
|
|
FontWeight,
|
|
AlignItems,
|
|
JustifyContent,
|
|
TextAlign,
|
|
TextColor,
|
|
} from '../../../helpers/constants/design-system';
|
|
import Box from '../../ui/box/box';
|
|
import { I18nContext } from '../../../contexts/i18n';
|
|
import { CHAIN_ID_TO_NETWORK_IMAGE_URL_MAP } from '../../../../shared/constants/network';
|
|
import { Text } from '../../component-library';
|
|
|
|
export default function NetworkAccountBalanceHeader({
|
|
networkName,
|
|
accountName,
|
|
accountBalance,
|
|
tokenName, // Derived from nativeCurrency
|
|
accountAddress,
|
|
chainId,
|
|
}) {
|
|
const t = useContext(I18nContext);
|
|
const networkIcon = CHAIN_ID_TO_NETWORK_IMAGE_URL_MAP[chainId];
|
|
const networkIconWrapperClass = networkIcon
|
|
? 'network-account-balance-header__network-account__ident-icon-ethereum'
|
|
: 'network-account-balance-header__network-account__ident-icon-ethereum--gray';
|
|
|
|
return (
|
|
<Box
|
|
display={DISPLAY.FLEX}
|
|
flexDirection={FLEX_DIRECTION.ROW}
|
|
padding={4}
|
|
className="network-account-balance-header"
|
|
alignItems={AlignItems.center}
|
|
justifyContent={JustifyContent.spaceBetween}
|
|
>
|
|
<Box
|
|
display={DISPLAY.FLEX}
|
|
flexDirection={FLEX_DIRECTION.ROW}
|
|
alignItems={AlignItems.center}
|
|
gap={2}
|
|
>
|
|
<Box
|
|
display={DISPLAY.FLEX}
|
|
flexDirection={FLEX_DIRECTION.ROW}
|
|
alignItems={AlignItems.center}
|
|
>
|
|
<Identicon address={accountAddress} diameter={32} />
|
|
<IconWithFallback
|
|
name={networkName}
|
|
size={16}
|
|
icon={networkIcon}
|
|
wrapperClassName={networkIconWrapperClass}
|
|
/>
|
|
</Box>
|
|
<Box
|
|
display={DISPLAY.FLEX}
|
|
alignItems={AlignItems.flexStart}
|
|
flexDirection={FLEX_DIRECTION.COLUMN}
|
|
>
|
|
<Text
|
|
variant={TextVariant.bodySm}
|
|
as="h6"
|
|
color={TextColor.textAlternative}
|
|
marginBottom={0}
|
|
>
|
|
{networkName}
|
|
</Text>
|
|
|
|
<Text
|
|
variant={TextVariant.bodySm}
|
|
as="h6"
|
|
color={TextColor.textDefault}
|
|
fontWeight={FontWeight.Bold}
|
|
marginTop={0}
|
|
>
|
|
{accountName}
|
|
</Text>
|
|
</Box>
|
|
</Box>
|
|
<Box
|
|
display={DISPLAY.FLEX}
|
|
alignItems={AlignItems.flexEnd}
|
|
flexDirection={FLEX_DIRECTION.COLUMN}
|
|
>
|
|
<Text
|
|
variant={TextVariant.bodySm}
|
|
as="h6"
|
|
color={TextColor.textAlternative}
|
|
marginBottom={0}
|
|
>
|
|
{t('balance')}
|
|
</Text>
|
|
|
|
<Text
|
|
variant={TextVariant.bodySm}
|
|
as="h6"
|
|
color={TextColor.textDefault}
|
|
fontWeight={FontWeight.Bold}
|
|
marginTop={0}
|
|
align={TextAlign.End}
|
|
>
|
|
{accountBalance} {tokenName}
|
|
</Text>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
NetworkAccountBalanceHeader.propTypes = {
|
|
networkName: PropTypes.string,
|
|
accountName: PropTypes.string,
|
|
accountBalance: PropTypes.string,
|
|
tokenName: PropTypes.string,
|
|
accountAddress: PropTypes.string,
|
|
chainId: PropTypes.string,
|
|
};
|