mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
7181779576
* Start refactor * Use import syntax * Add create-account.component * Continue refactor * Add new line * Start using JSX and make tabs a bit more DRY * 👋 bye-bye hyperscript * These can be disabled when active * Start JSX in new account component * 👋 bye-bye hyperscript * Move newAccountNumber into container * Validate newAccountNumber prop
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
import { connect } from 'react-redux'
|
|
import actions from '../../store/actions'
|
|
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,
|
|
numberOfExistingAccounts,
|
|
newAccountNumber,
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
toCoinbase: address => dispatch(actions.buyEth({ network: '1', address, amount: 0 })),
|
|
hideModal: () => dispatch(actions.hideModal()),
|
|
createAccount: newAccountName => {
|
|
return dispatch(actions.addNewAccount())
|
|
.then(newAccountAddress => {
|
|
if (newAccountName) {
|
|
dispatch(actions.setAccountLabel(newAccountAddress, newAccountName))
|
|
}
|
|
})
|
|
},
|
|
showImportPage: () => dispatch(actions.showImportPage()),
|
|
showConnectPage: () => dispatch(actions.showConnectPage()),
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(NewAccountCreateForm)
|