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-11-10 11:28:34 +01:00
|
|
|
getMetaMaskIdentities,
|
2022-03-25 15:02:08 +01:00
|
|
|
} 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;
|
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-10 11:28:34 +01:00
|
|
|
const identities = getMetaMaskIdentities(state);
|
|
|
|
const toName = getAccountName(identities, to);
|
|
|
|
const toMetadataName = getMetadataContractName(state, 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-11-09 16:36:21 +01:00
|
|
|
export default connect(mapStateToProps)(ConfirmPageContainer);
|