1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-24 12:23:39 +02:00
metamask-extension/ui/app/pages/send/send-content/send-content.container.js
Erik Marks e8fa0b7b5d
Consolidate and dedupe send selectors (#8506)
* consolidate & dedupe send selectors
2020-05-04 12:06:28 -07:00

40 lines
1.1 KiB
JavaScript

import { connect } from 'react-redux'
import SendContent from './send-content.component'
import {
getSendTo,
accountsWithSendEtherInfoSelector,
getAddressBookEntry,
} from '../../../selectors'
import * as actions from '../../../store/actions'
function mapStateToProps (state) {
const ownedAccounts = accountsWithSendEtherInfoSelector(state)
const to = getSendTo(state)
return {
isOwnedAccount: !!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)