You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.0 KiB
44 lines
1.0 KiB
3 years ago
|
import { connect } from 'react-redux';
|
||
|
import { getAddressBookEntry } from '../../../selectors';
|
||
|
import * as actions from '../../../store/actions';
|
||
|
import ConfirmPageContainer from './confirm-page-container.component';
|
||
|
|
||
|
function mapStateToProps(state, ownProps) {
|
||
|
const to = ownProps.toAddress;
|
||
|
|
||
|
const contact = getAddressBookEntry(state, to);
|
||
|
return {
|
||
|
contact,
|
||
|
toName: contact && contact.name ? contact.name : ownProps.toName,
|
||
|
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,
|
||
|
)(ConfirmPageContainer);
|