2021-02-04 19:15:23 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import * as actions from '../../store/actions';
|
|
|
|
import { getMostRecentOverviewPage } from '../../ducks/history/history';
|
2021-12-16 11:41:55 +01:00
|
|
|
import { getMetaMaskAccountsOrdered } from '../../selectors';
|
2021-02-04 19:15:23 +01:00
|
|
|
import NewAccountCreateForm from './new-account.component';
|
2019-10-29 17:12:41 +01:00
|
|
|
|
2020-02-15 21:34:12 +01:00
|
|
|
const mapStateToProps = (state) => {
|
2020-11-03 00:41:28 +01:00
|
|
|
const {
|
|
|
|
metamask: { identities = {} },
|
2021-02-04 19:15:23 +01:00
|
|
|
} = state;
|
|
|
|
const numberOfExistingAccounts = Object.keys(identities).length;
|
|
|
|
const newAccountNumber = numberOfExistingAccounts + 1;
|
2019-10-29 17:12:41 +01:00
|
|
|
|
|
|
|
return {
|
|
|
|
newAccountNumber,
|
2020-06-01 19:54:32 +02:00
|
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
2021-12-16 11:41:55 +01:00
|
|
|
accounts: getMetaMaskAccountsOrdered(state),
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
|
|
|
};
|
2019-10-29 17:12:41 +01:00
|
|
|
|
2020-02-15 21:34:12 +01:00
|
|
|
const mapDispatchToProps = (dispatch) => {
|
2019-10-29 17:12:41 +01:00
|
|
|
return {
|
2020-02-15 21:34:12 +01:00
|
|
|
createAccount: (newAccountName) => {
|
2020-11-03 00:41:28 +01:00
|
|
|
return dispatch(actions.addNewAccount()).then((newAccountAddress) => {
|
|
|
|
if (newAccountName) {
|
2021-02-04 19:15:23 +01:00
|
|
|
dispatch(actions.setAccountLabel(newAccountAddress, newAccountName));
|
2020-11-03 00:41:28 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2019-10-29 17:12:41 +01:00
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
|
|
|
};
|
2019-10-29 17:12:41 +01:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export default connect(
|
|
|
|
mapStateToProps,
|
|
|
|
mapDispatchToProps,
|
2021-02-04 19:15:23 +01:00
|
|
|
)(NewAccountCreateForm);
|