You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
2.5 KiB
97 lines
2.5 KiB
7 years ago
|
const { Component } = require('react')
|
||
|
const PropTypes = require('prop-types')
|
||
|
const h = require('react-hyperscript')
|
||
|
const { connect } = require('react-redux')
|
||
|
const actions = require('../../actions')
|
||
|
|
||
|
class NewAccountCreateForm extends Component {
|
||
|
constructor (props) {
|
||
|
super(props)
|
||
|
const { numberOfExistingAccounts = 0 } = props
|
||
|
const newAccountNumber = numberOfExistingAccounts + 1
|
||
|
|
||
|
this.state = {
|
||
|
newAccountName: `Account ${newAccountNumber}`,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
render () {
|
||
|
const { newAccountName } = this.state
|
||
|
|
||
|
return h('div.new-account-create-form', [
|
||
|
|
||
|
h('div.new-account-create-form__input-label', {}, [
|
||
|
'Account Name',
|
||
|
]),
|
||
|
|
||
|
h('div.new-account-create-form__input-wrapper', {}, [
|
||
|
h('input.new-account-create-form__input', {
|
||
|
value: this.state.newAccountName,
|
||
|
placeholder: 'E.g. My new account',
|
||
|
onChange: event => this.setState({ newAccountName: event.target.value }),
|
||
|
}, []),
|
||
|
]),
|
||
|
|
||
|
h('div.new-account-create-form__buttons', {}, [
|
||
|
|
||
|
h('button.new-account-create-form__button-cancel', {
|
||
|
onClick: () => this.props.goHome(),
|
||
|
}, [
|
||
|
'CANCEL',
|
||
|
]),
|
||
|
|
||
|
h('button.new-account-create-form__button-create', {
|
||
|
onClick: () => this.props.createAccount(newAccountName),
|
||
|
}, [
|
||
|
'CREATE',
|
||
|
]),
|
||
|
|
||
|
]),
|
||
|
|
||
|
])
|
||
|
}
|
||
|
}
|
||
|
|
||
|
NewAccountCreateForm.propTypes = {
|
||
|
hideModal: PropTypes.func,
|
||
|
showImportPage: PropTypes.func,
|
||
|
createAccount: PropTypes.func,
|
||
|
goHome: PropTypes.func,
|
||
|
numberOfExistingAccounts: PropTypes.number,
|
||
|
}
|
||
|
|
||
|
const mapStateToProps = state => {
|
||
|
const { metamask: { network, selectedAddress, identities = {} } } = state
|
||
|
const numberOfExistingAccounts = Object.keys(identities).length
|
||
|
|
||
|
return {
|
||
|
network,
|
||
|
address: selectedAddress,
|
||
|
numberOfExistingAccounts,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const mapDispatchToProps = dispatch => {
|
||
|
return {
|
||
|
toCoinbase: (address) => {
|
||
|
dispatch(actions.buyEth({ network: '1', address, amount: 0 }))
|
||
|
},
|
||
|
hideModal: () => {
|
||
|
dispatch(actions.hideModal())
|
||
|
},
|
||
|
createAccount: (newAccountName) => {
|
||
|
dispatch(actions.addNewAccount())
|
||
|
.then((newAccountAddress) => {
|
||
|
if (newAccountName) {
|
||
|
dispatch(actions.saveAccountLabel(newAccountAddress, newAccountName))
|
||
|
}
|
||
|
dispatch(actions.goHome())
|
||
|
})
|
||
|
},
|
||
|
showImportPage: () => dispatch(actions.showImportPage()),
|
||
|
goHome: () => dispatch(actions.goHome()),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = connect(mapStateToProps, mapDispatchToProps)(NewAccountCreateForm)
|