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

31 lines
942 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux'
import * as actions from '../../store/actions'
import { getMostRecentOverviewPage } from '../../ducks/history/history'
import NewAccountCreateForm from './new-account.component'
2020-02-15 21:34:12 +01:00
const mapStateToProps = (state) => {
const { metamask: { identities = {} } } = state
const numberOfExistingAccounts = Object.keys(identities).length
const newAccountNumber = numberOfExistingAccounts + 1
return {
newAccountNumber,
mostRecentOverviewPage: getMostRecentOverviewPage(state),
}
}
2020-02-15 21:34:12 +01:00
const mapDispatchToProps = (dispatch) => {
return {
2020-02-15 21:34:12 +01:00
createAccount: (newAccountName) => {
return dispatch(actions.addNewAccount())
2020-02-15 21:34:12 +01:00
.then((newAccountAddress) => {
if (newAccountName) {
dispatch(actions.setAccountLabel(newAccountAddress, newAccountName))
}
})
},
}
}
export default connect(mapStateToProps, mapDispatchToProps)(NewAccountCreateForm)