mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
62f41600f2
* Fix account name duplicates * Change button disabling logic * Fix function error * Requested changes * Move functions from selectors file into components * Applying requested changes
37 lines
1.0 KiB
JavaScript
37 lines
1.0 KiB
JavaScript
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);
|