mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
125 lines
3.5 KiB
JavaScript
125 lines
3.5 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Redirect } from 'react-router-dom';
|
|
|
|
import Button from '../../../../components/ui/button/button.component';
|
|
|
|
import {
|
|
AvatarAccount,
|
|
AvatarAccountSize,
|
|
Box,
|
|
ButtonIcon,
|
|
ButtonIconSize,
|
|
IconName,
|
|
} from '../../../../components/component-library';
|
|
import { Text } from '../../../../components/component-library/text/deprecated';
|
|
|
|
import Tooltip from '../../../../components/ui/tooltip';
|
|
import { useI18nContext } from '../../../../hooks/useI18nContext';
|
|
import { useCopyToClipboard } from '../../../../hooks/useCopyToClipboard';
|
|
import {
|
|
IconColor,
|
|
TextVariant,
|
|
} from '../../../../helpers/constants/design-system';
|
|
|
|
function quadSplit(address) {
|
|
return `0x${address
|
|
.slice(2)
|
|
.match(/.{1,4}/gu)
|
|
.join('')}`;
|
|
}
|
|
|
|
function ViewContact({
|
|
history,
|
|
name,
|
|
address,
|
|
checkSummedAddress,
|
|
memo,
|
|
editRoute,
|
|
listRoute,
|
|
}) {
|
|
const t = useI18nContext();
|
|
const [copied, handleCopy] = useCopyToClipboard();
|
|
|
|
if (!address) {
|
|
return <Redirect to={{ pathname: listRoute }} />;
|
|
}
|
|
|
|
return (
|
|
<div className="settings-page__content-row">
|
|
<div className="settings-page__content-item">
|
|
<Box
|
|
className="settings-page__header address-book__header"
|
|
paddingLeft={6}
|
|
>
|
|
<AvatarAccount size={AvatarAccountSize.Lg} address={address} />
|
|
<Text
|
|
className="address-book__header__name"
|
|
variant={TextVariant.bodyLgMedium}
|
|
marginInlineStart={4}
|
|
>
|
|
{name || address}
|
|
</Text>
|
|
</Box>
|
|
<div className="address-book__view-contact__group">
|
|
<Button
|
|
type="secondary"
|
|
onClick={() => {
|
|
history.push(`${editRoute}/${address}`);
|
|
}}
|
|
>
|
|
{t('edit')}
|
|
</Button>
|
|
</div>
|
|
<div className="address-book__view-contact__group">
|
|
<div className="address-book__view-contact__group__label">
|
|
{t('ethereumPublicAddress')}
|
|
</div>
|
|
<div className="address-book__view-contact__group__value">
|
|
<div className="address-book__view-contact__group__static-address">
|
|
{quadSplit(checkSummedAddress)}
|
|
</div>
|
|
<Tooltip
|
|
position="bottom"
|
|
title={copied ? t('copiedExclamation') : t('copyToClipboard')}
|
|
>
|
|
<ButtonIcon
|
|
ariaLabel="copy"
|
|
className="address-book__view-contact__group__static-address--copy-icon"
|
|
onClick={() => {
|
|
handleCopy(checkSummedAddress);
|
|
}}
|
|
iconName={copied ? IconName.CopySuccess : IconName.Copy}
|
|
size={ButtonIconSize.Lg}
|
|
color={IconColor.primaryDefault}
|
|
/>
|
|
</Tooltip>
|
|
</div>
|
|
</div>
|
|
{memo.length > 0 ? (
|
|
<div className="address-book__view-contact__group">
|
|
<div className="address-book__view-contact__group__label--capitalized">
|
|
{t('memo')}
|
|
</div>
|
|
<div className="address-book__view-contact__group__static-address">
|
|
{memo}
|
|
</div>
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
ViewContact.propTypes = {
|
|
name: PropTypes.string,
|
|
address: PropTypes.string,
|
|
history: PropTypes.object,
|
|
checkSummedAddress: PropTypes.string,
|
|
memo: PropTypes.string,
|
|
editRoute: PropTypes.string,
|
|
listRoute: PropTypes.string.isRequired,
|
|
};
|
|
|
|
export default React.memo(ViewContact);
|