1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/create-account/new-account.container.js

37 lines
1.0 KiB
JavaScript
Raw Normal View History

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';
2020-02-15 21:34:12 +01:00
const mapStateToProps = (state) => {
2020-11-03 00:41:28 +01:00
const {
metamask: { identities = {} },
} = state;
const numberOfExistingAccounts = Object.keys(identities).length;
const newAccountNumber = numberOfExistingAccounts + 1;
return {
newAccountNumber,
mostRecentOverviewPage: getMostRecentOverviewPage(state),
accounts: getMetaMaskAccountsOrdered(state),
};
};
2020-02-15 21:34:12 +01:00
const mapDispatchToProps = (dispatch) => {
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) {
dispatch(actions.setAccountLabel(newAccountAddress, newAccountName));
2020-11-03 00:41:28 +01:00
}
});
},
};
};
2020-11-03 00:41:28 +01:00
export default connect(
mapStateToProps,
mapDispatchToProps,
)(NewAccountCreateForm);