mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
ded43cbcdf
A number of unused parameters and `propTypes` have been merged, along with an unused function.
31 lines
942 B
JavaScript
31 lines
942 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: { identities = {} } } = state
|
|
const numberOfExistingAccounts = Object.keys(identities).length
|
|
const newAccountNumber = numberOfExistingAccounts + 1
|
|
|
|
return {
|
|
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)
|