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.
36 lines
1.0 KiB
36 lines
1.0 KiB
import { connect } from 'react-redux';
|
|
import * as actions from '../../store/actions';
|
|
import { getMostRecentOverviewPage } from '../../ducks/history/history';
|
|
import { getMetaMaskAccountsOrdered } from '../../selectors';
|
|
import NewAccountCreateForm from './new-account.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
const {
|
|
metamask: { identities = {} },
|
|
} = state;
|
|
const numberOfExistingAccounts = Object.keys(identities).length;
|
|
const newAccountNumber = numberOfExistingAccounts + 1;
|
|
|
|
return {
|
|
newAccountNumber,
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
|
accounts: getMetaMaskAccountsOrdered(state),
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
createAccount: (newAccountName) => {
|
|
return dispatch(actions.addNewAccount()).then((newAccountAddress) => {
|
|
if (newAccountName) {
|
|
dispatch(actions.setAccountLabel(newAccountAddress, newAccountName));
|
|
}
|
|
});
|
|
},
|
|
};
|
|
};
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps,
|
|
)(NewAccountCreateForm);
|
|
|