2019-10-29 17:12:41 +01:00
|
|
|
import { connect } from 'react-redux'
|
2020-01-09 04:34:58 +01:00
|
|
|
import * as actions from '../../store/actions'
|
2020-06-01 19:54:32 +02:00
|
|
|
import { getMostRecentOverviewPage } from '../../ducks/history/history'
|
2020-08-18 21:18:25 +02:00
|
|
|
import NewAccountCreateForm from './new-account.component'
|
2019-10-29 17:12:41 +01:00
|
|
|
|
2020-02-15 21:34:12 +01:00
|
|
|
const mapStateToProps = (state) => {
|
2020-11-03 00:41:28 +01:00
|
|
|
const {
|
|
|
|
metamask: { identities = {} },
|
|
|
|
} = state
|
2019-10-29 17:12:41 +01:00
|
|
|
const numberOfExistingAccounts = Object.keys(identities).length
|
|
|
|
const newAccountNumber = numberOfExistingAccounts + 1
|
|
|
|
|
|
|
|
return {
|
|
|
|
newAccountNumber,
|
2020-06-01 19:54:32 +02:00
|
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
2019-10-29 17:12:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-15 21:34:12 +01:00
|
|
|
const mapDispatchToProps = (dispatch) => {
|
2019-10-29 17:12:41 +01:00
|
|
|
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))
|
|
|
|
}
|
|
|
|
})
|
2019-10-29 17:12:41 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export default connect(
|
|
|
|
mapStateToProps,
|
|
|
|
mapDispatchToProps,
|
|
|
|
)(NewAccountCreateForm)
|