import React, { Component } from 'react'; import PropTypes from 'prop-types'; import Fuse from 'fuse.js'; import Identicon from '../../../../components/ui/identicon'; import Dialog from '../../../../components/ui/dialog'; import ContactList from '../../../../components/app/contact-list'; import RecipientGroup from '../../../../components/app/contact-list/recipient-group/recipient-group.component'; import { ellipsify } from '../../send.utils'; import Button from '../../../../components/ui/button'; import Confusable from '../../../../components/ui/confusable'; export default class AddRecipient extends Component { static propTypes = { userInput: PropTypes.string, ownedAccounts: PropTypes.array, addressBook: PropTypes.array, updateRecipient: PropTypes.func, ensResolution: PropTypes.string, ensError: PropTypes.string, ensWarning: PropTypes.string, addressBookEntryName: PropTypes.string, contacts: PropTypes.array, nonContacts: PropTypes.array, useMyAccountsForRecipientSearch: PropTypes.func, useContactListForRecipientSearch: PropTypes.func, isUsingMyAccountsForRecipientSearch: PropTypes.bool, recipient: PropTypes.shape({ address: PropTypes.string, nickname: PropTypes.nickname, error: PropTypes.string, warning: PropTypes.string, }), }; constructor(props) { super(props); this.recentFuse = new Fuse(props.nonContacts, { shouldSort: true, threshold: 0.45, location: 0, distance: 100, maxPatternLength: 32, minMatchCharLength: 1, keys: [{ name: 'address', weight: 0.5 }], }); this.contactFuse = new Fuse(props.contacts, { shouldSort: true, threshold: 0.45, location: 0, distance: 100, maxPatternLength: 32, minMatchCharLength: 1, keys: [ { name: 'name', weight: 0.5 }, { name: 'address', weight: 0.5 }, ], }); } static contextTypes = { t: PropTypes.func, metricsEvent: PropTypes.func, }; selectRecipient = (address, nickname = '') => { this.props.updateRecipient({ address, nickname }); }; searchForContacts = () => { const { userInput, contacts } = this.props; let _contacts = contacts; if (userInput) { this.contactFuse.setCollection(contacts); _contacts = this.contactFuse.search(userInput); } return _contacts; }; searchForRecents = () => { const { userInput, nonContacts } = this.props; let _nonContacts = nonContacts; if (userInput) { this.recentFuse.setCollection(nonContacts); _nonContacts = this.recentFuse.search(userInput); } return _nonContacts; }; render() { const { ensResolution, recipient, userInput, addressBookEntryName, isUsingMyAccountsForRecipientSearch, } = this.props; let content; if (recipient.address) { content = this.renderExplicitAddress( recipient.address, recipient.nickname, ); } else if (ensResolution) { content = this.renderExplicitAddress( ensResolution, addressBookEntryName || userInput, ); } else if (isUsingMyAccountsForRecipientSearch) { content = this.renderTransfer(); } return (
{this.renderDialogs()} {content || this.renderMain()}
); } renderExplicitAddress(address, name) { return (
this.selectRecipient(address, name)} >
{name ? : ellipsify(address)}
{name && (
{ellipsify(address)}
)}
); } renderTransfer() { let { ownedAccounts } = this.props; const { userInput, useContactListForRecipientSearch, isUsingMyAccountsForRecipientSearch, } = this.props; const { t } = this.context; if (isUsingMyAccountsForRecipientSearch && userInput) { ownedAccounts = ownedAccounts.filter( (item) => item.name.toLowerCase().indexOf(userInput.toLowerCase()) > -1 || item.address.toLowerCase().indexOf(userInput.toLowerCase()) > -1, ); } return (
); } renderMain() { const { t } = this.context; const { userInput, ownedAccounts = [], addressBook, useMyAccountsForRecipientSearch, } = this.props; return (
{ownedAccounts && ownedAccounts.length > 1 && !userInput && ( )}
); } renderDialogs() { const { ensError, recipient, ensWarning } = this.props; const { t } = this.context; if (ensError || (recipient.error && recipient.error !== 'required')) { return ( {t(ensError ?? recipient.error)} ); } else if (ensWarning || recipient.warning) { return ( {t(ensWarning ?? recipient.warning)} ); } return null; } }