mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +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
175 lines
4.5 KiB
JavaScript
175 lines
4.5 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classnames from 'classnames';
|
|
import ContactList from '../../../components/app/contact-list';
|
|
import {
|
|
CONTACT_ADD_ROUTE,
|
|
CONTACT_LIST_ROUTE,
|
|
CONTACT_VIEW_ROUTE,
|
|
} from '../../../helpers/constants/routes';
|
|
import {
|
|
getNumberOfSettingsInSection,
|
|
handleSettingsRefs,
|
|
} from '../../../helpers/utils/settings-search';
|
|
import {
|
|
ButtonPrimary,
|
|
Icon,
|
|
IconName,
|
|
IconSize,
|
|
} from '../../../components/component-library';
|
|
import { IconColor, Size } from '../../../helpers/constants/design-system';
|
|
import EditContact from './edit-contact';
|
|
import AddContact from './add-contact';
|
|
import ViewContact from './view-contact';
|
|
|
|
export default class ContactListTab extends Component {
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
};
|
|
|
|
static propTypes = {
|
|
addressBook: PropTypes.array,
|
|
history: PropTypes.object,
|
|
selectedAddress: PropTypes.string,
|
|
viewingContact: PropTypes.bool,
|
|
editingContact: PropTypes.bool,
|
|
addingContact: PropTypes.bool,
|
|
hideAddressBook: PropTypes.bool,
|
|
currentPath: PropTypes.string,
|
|
};
|
|
|
|
settingsRefs = Array(
|
|
getNumberOfSettingsInSection(this.context.t, this.context.t('contacts')),
|
|
)
|
|
.fill(undefined)
|
|
.map(() => {
|
|
return React.createRef();
|
|
});
|
|
|
|
componentDidUpdate() {
|
|
const { t } = this.context;
|
|
handleSettingsRefs(t, t('contacts'), this.settingsRefs);
|
|
}
|
|
|
|
componentDidMount() {
|
|
const { t } = this.context;
|
|
handleSettingsRefs(t, t('contacts'), this.settingsRefs);
|
|
}
|
|
|
|
renderAddresses() {
|
|
const { addressBook, history, selectedAddress } = this.props;
|
|
const contacts = addressBook.filter(({ name }) => Boolean(name));
|
|
const nonContacts = addressBook.filter(({ name }) => !name);
|
|
const { t } = this.context;
|
|
|
|
if (addressBook.length) {
|
|
return (
|
|
<div>
|
|
<ContactList
|
|
searchForContacts={() => contacts}
|
|
searchForRecents={() => nonContacts}
|
|
selectRecipient={(address) => {
|
|
history.push(`${CONTACT_VIEW_ROUTE}/${address}`);
|
|
}}
|
|
selectedAddress={selectedAddress}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
return (
|
|
<div className="address-book__container">
|
|
<div>
|
|
<Icon
|
|
name={IconName.Book}
|
|
color={IconColor.iconMuted}
|
|
className="address-book__icon"
|
|
size={IconSize.Xl}
|
|
/>
|
|
<h4 className="address-book__title">{t('buildContactList')}</h4>
|
|
<p className="address-book__sub-title">
|
|
{t('addFriendsAndAddresses')}
|
|
</p>
|
|
<button
|
|
className="address-book__link"
|
|
onClick={() => {
|
|
history.push(CONTACT_ADD_ROUTE);
|
|
}}
|
|
>
|
|
+ {t('addContact')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
renderAddButton() {
|
|
const { history, viewingContact, editingContact } = this.props;
|
|
|
|
return (
|
|
<ButtonPrimary
|
|
className={classnames('address-book-add-button__button', {
|
|
'address-book-add-button__button--hidden':
|
|
viewingContact || editingContact,
|
|
})}
|
|
onClick={() => {
|
|
history.push(CONTACT_ADD_ROUTE);
|
|
}}
|
|
margin={4}
|
|
size={Size.LG}
|
|
>
|
|
{this.context.t('addContact')}
|
|
</ButtonPrimary>
|
|
);
|
|
}
|
|
|
|
renderContactContent() {
|
|
const { viewingContact, editingContact, addingContact } = this.props;
|
|
|
|
let ContactContentComponent = null;
|
|
if (viewingContact) {
|
|
ContactContentComponent = ViewContact;
|
|
} else if (editingContact) {
|
|
ContactContentComponent = EditContact;
|
|
} else if (addingContact) {
|
|
ContactContentComponent = AddContact;
|
|
}
|
|
|
|
return (
|
|
ContactContentComponent && (
|
|
<div className="address-book-contact-content">
|
|
<ContactContentComponent />
|
|
</div>
|
|
)
|
|
);
|
|
}
|
|
|
|
renderAddressBookContent() {
|
|
const { hideAddressBook } = this.props;
|
|
|
|
if (!hideAddressBook) {
|
|
return (
|
|
<div ref={this.settingsRefs[0]} className="address-book">
|
|
{this.renderAddresses()}
|
|
</div>
|
|
);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
render() {
|
|
const { addingContact, addressBook, currentPath } = this.props;
|
|
|
|
return (
|
|
<div className="address-book-wrapper">
|
|
{this.renderAddressBookContent()}
|
|
{this.renderContactContent()}
|
|
{currentPath === CONTACT_LIST_ROUTE &&
|
|
!addingContact &&
|
|
addressBook.length > 0
|
|
? this.renderAddButton()
|
|
: null}
|
|
</div>
|
|
);
|
|
}
|
|
}
|