mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 21:57:06 +01:00
1cc78fa0b1
* updated contacts flow update * json file updates * updated contacts edit and view list * keep contacts tab selected * lint fix * replaced hardcoded strings with constant * updated padding in box
206 lines
6.2 KiB
JavaScript
206 lines
6.2 KiB
JavaScript
import React, { PureComponent } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Redirect } from 'react-router-dom';
|
|
import Button from '../../../../components/ui/button/button.component';
|
|
import TextField from '../../../../components/ui/text-field';
|
|
import PageContainerFooter from '../../../../components/ui/page-container/page-container-footer';
|
|
import {
|
|
isBurnAddress,
|
|
isValidHexAddress,
|
|
} from '../../../../../shared/modules/hexstring-utils';
|
|
import {
|
|
AvatarAccount,
|
|
AvatarAccountSize,
|
|
Box,
|
|
Text,
|
|
} from '../../../../components/component-library';
|
|
import {
|
|
AlignItems,
|
|
Display,
|
|
TextVariant,
|
|
} from '../../../../helpers/constants/design-system';
|
|
|
|
export default class EditContact extends PureComponent {
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
};
|
|
|
|
static propTypes = {
|
|
addToAddressBook: PropTypes.func,
|
|
removeFromAddressBook: PropTypes.func,
|
|
history: PropTypes.object,
|
|
name: PropTypes.string,
|
|
address: PropTypes.string,
|
|
chainId: PropTypes.string,
|
|
memo: PropTypes.string,
|
|
viewRoute: PropTypes.string,
|
|
listRoute: PropTypes.string,
|
|
};
|
|
|
|
static defaultProps = {
|
|
name: '',
|
|
memo: '',
|
|
};
|
|
|
|
state = {
|
|
newName: this.props.name,
|
|
newAddress: this.props.address,
|
|
newMemo: this.props.memo,
|
|
error: '',
|
|
};
|
|
|
|
render() {
|
|
const { t } = this.context;
|
|
const {
|
|
address,
|
|
addToAddressBook,
|
|
chainId,
|
|
history,
|
|
listRoute,
|
|
memo,
|
|
name,
|
|
removeFromAddressBook,
|
|
viewRoute,
|
|
} = this.props;
|
|
|
|
if (!address) {
|
|
return <Redirect to={{ pathname: listRoute }} />;
|
|
}
|
|
|
|
return (
|
|
<div className="settings-page__content-row address-book__edit-contact">
|
|
<Box
|
|
className="settings-page__header address-book__header--edit"
|
|
paddingLeft={6}
|
|
paddingRight={6}
|
|
>
|
|
<Box display={Display.Flex} alignItems={AlignItems.center}>
|
|
<AvatarAccount size={AvatarAccountSize.Lg} address={address} />
|
|
<Text
|
|
className="address-book__header__name"
|
|
variant={TextVariant.bodyLgMedium}
|
|
marginInlineStart={4}
|
|
>
|
|
{name || address}
|
|
</Text>
|
|
</Box>
|
|
<Button
|
|
type="link"
|
|
className="settings-page__address-book-button"
|
|
onClick={async () => {
|
|
await removeFromAddressBook(chainId, address);
|
|
history.push(listRoute);
|
|
}}
|
|
>
|
|
{t('deleteContact')}
|
|
</Button>
|
|
</Box>
|
|
<div className="address-book__edit-contact__content">
|
|
<div className="address-book__view-contact__group">
|
|
<div className="address-book__view-contact__group__label">
|
|
{t('userName')}
|
|
</div>
|
|
<TextField
|
|
type="text"
|
|
id="nickname"
|
|
placeholder={this.context.t('addAlias')}
|
|
value={this.state.newName}
|
|
onChange={(e) => this.setState({ newName: e.target.value })}
|
|
fullWidth
|
|
margin="dense"
|
|
/>
|
|
</div>
|
|
|
|
<div className="address-book__view-contact__group">
|
|
<div className="address-book__view-contact__group__label">
|
|
{t('ethereumPublicAddress')}
|
|
</div>
|
|
<TextField
|
|
type="text"
|
|
id="address"
|
|
value={this.state.newAddress}
|
|
error={this.state.error}
|
|
onChange={(e) => this.setState({ newAddress: e.target.value })}
|
|
fullWidth
|
|
multiline
|
|
rows={4}
|
|
margin="dense"
|
|
classes={{
|
|
inputMultiline:
|
|
'address-book__view-contact__address__text-area',
|
|
inputRoot: 'address-book__view-contact__address',
|
|
}}
|
|
/>
|
|
</div>
|
|
|
|
<div className="address-book__view-contact__group">
|
|
<div className="address-book__view-contact__group__label--capitalized">
|
|
{t('memo')}
|
|
</div>
|
|
<TextField
|
|
type="text"
|
|
id="memo"
|
|
placeholder={memo}
|
|
value={this.state.newMemo}
|
|
onChange={(e) => this.setState({ newMemo: e.target.value })}
|
|
fullWidth
|
|
margin="dense"
|
|
multiline
|
|
rows={3}
|
|
classes={{
|
|
inputMultiline: 'address-book__view-contact__text-area',
|
|
inputRoot: 'address-book__view-contact__text-area-wrapper',
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<PageContainerFooter
|
|
cancelText={this.context.t('cancel')}
|
|
onSubmit={async () => {
|
|
if (
|
|
this.state.newAddress !== '' &&
|
|
this.state.newAddress !== address
|
|
) {
|
|
// if the user makes a valid change to the address field, remove the original address
|
|
if (
|
|
!isBurnAddress(this.state.newAddress) &&
|
|
isValidHexAddress(this.state.newAddress, {
|
|
mixedCaseUseChecksum: true,
|
|
})
|
|
) {
|
|
await removeFromAddressBook(chainId, address);
|
|
await addToAddressBook(
|
|
this.state.newAddress,
|
|
this.state.newName || name,
|
|
this.state.newMemo || memo,
|
|
);
|
|
history.push(listRoute);
|
|
} else {
|
|
this.setState({ error: this.context.t('invalidAddress') });
|
|
}
|
|
} else {
|
|
// update name
|
|
await addToAddressBook(
|
|
address,
|
|
this.state.newName || name,
|
|
this.state.newMemo || memo,
|
|
);
|
|
history.push(listRoute);
|
|
}
|
|
}}
|
|
onCancel={() => {
|
|
history.push(`${viewRoute}/${address}`);
|
|
}}
|
|
submitText={this.context.t('save')}
|
|
disabled={
|
|
(this.state.newName === name &&
|
|
this.state.newAddress === address &&
|
|
this.state.newMemo === memo) ||
|
|
!this.state.newName.trim()
|
|
}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|