2021-09-07 23:12:56 +02:00
|
|
|
import { connect } from 'react-redux';
|
2022-03-25 15:02:08 +01:00
|
|
|
import {
|
|
|
|
getAccountsWithLabels,
|
|
|
|
getAddressBookEntry,
|
|
|
|
getIsBuyableChain,
|
2022-04-25 19:34:44 +02:00
|
|
|
getNetworkIdentifier,
|
2022-09-21 16:15:34 +02:00
|
|
|
getSwapsDefaultToken,
|
2022-11-08 09:34:21 +01:00
|
|
|
getMetadataContractName,
|
|
|
|
getAccountName,
|
2022-03-25 15:02:08 +01:00
|
|
|
} from '../../../selectors';
|
2022-02-23 16:03:01 +01:00
|
|
|
import { showModal } from '../../../store/actions';
|
2021-09-07 23:12:56 +02:00
|
|
|
import ConfirmPageContainer from './confirm-page-container.component';
|
|
|
|
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
|
|
const to = ownProps.toAddress;
|
2022-03-25 15:02:08 +01:00
|
|
|
const isBuyableChain = getIsBuyableChain(state);
|
2021-09-07 23:12:56 +02:00
|
|
|
const contact = getAddressBookEntry(state, to);
|
2022-04-25 19:34:44 +02:00
|
|
|
const networkIdentifier = getNetworkIdentifier(state);
|
2022-09-21 16:15:34 +02:00
|
|
|
const defaultToken = getSwapsDefaultToken(state);
|
|
|
|
const accountBalance = defaultToken.string;
|
2022-11-08 09:34:21 +01:00
|
|
|
const toName = getAccountName(state, to);
|
|
|
|
const toMetadataName = getMetadataContractName(to);
|
2022-09-21 16:15:34 +02:00
|
|
|
|
2021-09-07 23:12:56 +02:00
|
|
|
return {
|
2022-03-25 15:02:08 +01:00
|
|
|
isBuyableChain,
|
2021-09-07 23:12:56 +02:00
|
|
|
contact,
|
2022-11-08 09:34:21 +01:00
|
|
|
toName,
|
|
|
|
toMetadataName,
|
2021-09-16 21:28:02 +02:00
|
|
|
isOwnedAccount: getAccountsWithLabels(state)
|
|
|
|
.map((accountWithLabel) => accountWithLabel.address)
|
|
|
|
.includes(to),
|
2021-09-07 23:12:56 +02:00
|
|
|
to,
|
2022-04-25 19:34:44 +02:00
|
|
|
networkIdentifier,
|
2022-09-21 16:15:34 +02:00
|
|
|
accountBalance,
|
2021-09-07 23:12:56 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-02-23 16:03:01 +01:00
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
|
|
return {
|
|
|
|
showBuyModal: () => dispatch(showModal({ name: 'DEPOSIT_ETHER' })),
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
mapStateToProps,
|
|
|
|
mapDispatchToProps,
|
|
|
|
)(ConfirmPageContainer);
|