import { connect } from 'react-redux' import { getSendTo, accountsWithSendEtherInfoSelector, getAddressBookEntry, } from '../../../selectors' import * as actions from '../../../store/actions' import SendContent from './send-content.component' function mapStateToProps(state) { const ownedAccounts = accountsWithSendEtherInfoSelector(state) const to = getSendTo(state) return { isOwnedAccount: Boolean( ownedAccounts.find( ({ address }) => address.toLowerCase() === to.toLowerCase(), ), ), contact: getAddressBookEntry(state, to), to, } } function mapDispatchToProps(dispatch) { return { showAddToAddressBookModal: (recipient) => dispatch( actions.showModal({ name: 'ADD_TO_ADDRESSBOOK', recipient, }), ), } } function mergeProps(stateProps, dispatchProps, ownProps) { const { to, ...restStateProps } = stateProps return { ...ownProps, ...restStateProps, showAddToAddressBookModal: () => dispatchProps.showAddToAddressBookModal(to), } } export default connect( mapStateToProps, mapDispatchToProps, mergeProps, )(SendContent)