1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-30 08:09:15 +01:00
metamask-extension/ui/pages/settings/contact-list-tab/contact-list-tab.component.js
igorms-cons f5e86d0351
Feat/settings search (#13214)
* fix error with color variable - fix rebase

* clean list search & fuse threshold decreased

* update search-icon , fix tests

* nice to have highlighting text & cleaning

* unit test on settings & search input ui up on expanded view

* fix color variable in alert scss

* setting search input padding right up

* fix dom warning

* util/search test added & Dom element warning fix

* renaming files

* fix color text in settings search

* settings search highlight text refacto & fix ui

* fix settings-search test & renaming

* Fix styling on search field for edge cases, update components and e2e

E2E tests update for search feature

Update components from class to functional component

		#

Fix storybook for search box

Fix styling

Fix unit tests

fix: remove z-index

Fix unit tests

Co-authored-by: amerkadicE <amer.kadic@endava.com>
2022-02-22 17:28:21 -03:30

172 lines
4.4 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_VIEW_ROUTE,
} from '../../../helpers/constants/routes';
import Button from '../../../components/ui/button';
import {
getSettingsSectionNumber,
handleSettingsRefs,
} from '../../../helpers/utils/settings-search';
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,
showContactContent: PropTypes.bool,
hideAddressBook: PropTypes.bool,
};
settingsRefs = Array(
getSettingsSectionNumber(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>
<img src="./images/address-book.svg" alt={t('addressBookIcon')} />
<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 (
<div className="address-book-add-button">
<Button
className={classnames({
'address-book-add-button__button': true,
'address-book-add-button__button--hidden':
viewingContact || editingContact,
})}
type="secondary"
onClick={() => {
history.push(CONTACT_ADD_ROUTE);
}}
>
{this.context.t('addContact')}
</Button>
</div>
);
}
renderContactContent() {
const {
viewingContact,
editingContact,
addingContact,
showContactContent,
} = this.props;
if (!showContactContent) {
return null;
}
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 } = this.props;
return (
<div className="address-book-wrapper">
{this.renderAddressBookContent()}
{this.renderContactContent()}
{!addingContact && addressBook.length > 0
? this.renderAddButton()
: null}
</div>
);
}
}