1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/app/pages/create-account/new-account.container.js
Whymarrh Whitby c1e3c229bc
Fix import/order issues (#9239)
See [`import/order`](https://eslint.org/docs/rules/import/order) for more information.

This change enables `import/order` and fixes the issues raised by the rule.
2020-08-18 16:48:25 -02:30

33 lines
1011 B
JavaScript

import { connect } from 'react-redux'
import * as actions from '../../store/actions'
import { getMostRecentOverviewPage } from '../../ducks/history/history'
import NewAccountCreateForm from './new-account.component'
const mapStateToProps = (state) => {
const { metamask: { network, selectedAddress, identities = {} } } = state
const numberOfExistingAccounts = Object.keys(identities).length
const newAccountNumber = numberOfExistingAccounts + 1
return {
network,
address: selectedAddress,
newAccountNumber,
mostRecentOverviewPage: getMostRecentOverviewPage(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)