2021-09-07 23:12:56 +02:00
|
|
|
import { connect } from 'react-redux';
|
2021-09-16 21:28:02 +02:00
|
|
|
import { getAccountsWithLabels, getAddressBookEntry } from '../../../selectors';
|
2021-09-07 23:12:56 +02:00
|
|
|
import ConfirmPageContainer from './confirm-page-container.component';
|
|
|
|
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
|
|
const to = ownProps.toAddress;
|
|
|
|
|
|
|
|
const contact = getAddressBookEntry(state, to);
|
|
|
|
return {
|
|
|
|
contact,
|
2021-09-16 21:28:02 +02:00
|
|
|
toName: contact?.name || ownProps.toName,
|
|
|
|
isOwnedAccount: getAccountsWithLabels(state)
|
|
|
|
.map((accountWithLabel) => accountWithLabel.address)
|
|
|
|
.includes(to),
|
2021-09-07 23:12:56 +02:00
|
|
|
to,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-12-01 18:22:08 +01:00
|
|
|
export default connect(mapStateToProps)(ConfirmPageContainer);
|