1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 18:41:38 +01:00
metamask-extension/ui/pages/settings/contact-list-tab/contact-list-tab.component.js
Etienne Dusseault 4c341d83ab
Add Approval Confirmation Screen component to Storybook (#10998)
* add metametrics wrapper

* add history dep

* provide test data and mock react router

* add first confirmaion screen

* figure out a way to mock match.params

* render token approval with data

* fix lockfile

* fix lint

* remove use effect

* lintfix

* add . for src paths

* litfix

* Add knobs to change redux store for confirm-approve component (Storybook) (#11135)

* add knob for domain

* knobify

* remove logs

* remove comment

* lintfix

* fix comments

* add background calls + metriccs event to storybook acctions

* lintfixxxx
2021-05-25 08:20:09 +08:00

140 lines
3.6 KiB
JavaScript

import React, { Component } from 'react';
import PropTypes from 'prop-types';
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 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,
};
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="Address book icon" />
<h4 className="address-book__title">{t('builContactList')}</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 } = this.props;
return (
<div className="address-book-add-button">
<Button
className="address-book-add-button__button"
type="secondary"
rounded
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 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()}
</div>
);
}
}