mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
92971d3c87
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
import { connect } from 'react-redux'
|
|
import SendContent from './send-content.component'
|
|
import {
|
|
accountsWithSendEtherInfoSelector,
|
|
getSendTo,
|
|
} from '../send.selectors'
|
|
import {
|
|
getAddressBookEntry,
|
|
} from '../../../selectors/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)
|