A Metamask fork with Infura removed and default networks editable
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.
ciphermask/ui/app/components/pages/create-account/connect-hardware/index.js

155 lines
4.0 KiB

6 years ago
const { Component } = require('react')
const PropTypes = require('prop-types')
const h = require('react-hyperscript')
const connect = require('react-redux').connect
6 years ago
const actions = require('../../../../actions')
6 years ago
const ConnectScreen = require('./connect-screen')
const AccountList = require('./account-list')
6 years ago
const { DEFAULT_ROUTE } = require('../../../../routes')
6 years ago
class ConnectHardwareForm extends Component {
constructor (props, context) {
super(props)
this.state = {
error: null,
response: null,
btnText: context.t('connectToTrezor'),
6 years ago
selectedAccount: null,
6 years ago
accounts: [],
}
}
connectToTrezor = () => {
if (this.state.accounts.length) {
return null
}
this.setState({ btnText: this.context.t('connecting')})
6 years ago
this.getPage(0)
6 years ago
}
onAccountChange = (account) => {
6 years ago
this.setState({selectedAccount: account.toString(), error: null})
6 years ago
}
getPage = (page) => {
this.props
.connectHardware('trezor', page)
.then(accounts => {
if (accounts.length) {
6 years ago
const newState = { accounts: accounts }
// Default to the first account
if (this.state.selectedAccount === null) {
const firstAccount = accounts[0]
newState.selectedAccount = firstAccount.index.toString()
// If the page doesn't contain the selected account, let's deselect it
} else if (!accounts.filter(a => a.index.toString() === '').lenght) {
newState.selectedAccount = null
}
this.setState(newState)
6 years ago
}
})
.catch(e => {
this.setState({ btnText: this.context.t('connectToTrezor') })
})
}
6 years ago
onUnlockAccount = () => {
if (this.state.selectedAccount === null) {
this.setState({ error: this.context.t('accountSelectionRequired') })
6 years ago
}
6 years ago
this.props.unlockTrezorAccount(this.state.selectedAccount)
.then(_ => {
this.props.history.push(DEFAULT_ROUTE)
}).catch(e => {
this.setState({ error: e.toString() })
})
6 years ago
}
6 years ago
onCancel = () => {
this.props.history.push(DEFAULT_ROUTE)
}
6 years ago
renderError () {
return this.state.error
? h('span.error', { style: { marginBottom: 40 } }, this.state.error)
: null
}
renderContent () {
if (!this.state.accounts.length) {
return h(ConnectScreen, {
connectToTrezor: this.connectToTrezor,
btnText: this.state.btnText,
})
}
return h(AccountList, {
accounts: this.state.accounts,
6 years ago
selectedAccount: this.state.selectedAccount,
6 years ago
onAccountChange: this.onAccountChange,
network: this.props.network,
getPage: this.getPage,
history: this.props.history,
6 years ago
onUnlockAccount: this.onUnlockAccount,
onCancel: this.onCancel,
6 years ago
})
}
render () {
return h('div.new-account-create-form', [
this.renderError(),
this.renderContent(),
])
}
}
ConnectHardwareForm.propTypes = {
hideModal: PropTypes.func,
showImportPage: PropTypes.func,
showConnectPage: PropTypes.func,
connectHardware: PropTypes.func,
unlockTrezorAccount: PropTypes.func,
numberOfExistingAccounts: PropTypes.number,
history: PropTypes.object,
t: PropTypes.func,
network: PropTypes.string,
accounts: PropTypes.object,
}
const mapStateToProps = state => {
const {
metamask: { network, selectedAddress, identities = {}, accounts = [] },
} = state
const numberOfExistingAccounts = Object.keys(identities).length
return {
network,
accounts,
address: selectedAddress,
numberOfExistingAccounts,
}
}
const mapDispatchToProps = dispatch => {
return {
connectHardware: (deviceName, page) => {
return dispatch(actions.connectHardware(deviceName, page))
},
unlockTrezorAccount: index => {
return dispatch(actions.unlockTrezorAccount(index))
},
showImportPage: () => dispatch(actions.showImportPage()),
showConnectPage: () => dispatch(actions.showConnectPage()),
}
}
ConnectHardwareForm.contextTypes = {
t: PropTypes.func,
}
module.exports = connect(mapStateToProps, mapDispatchToProps)(
ConnectHardwareForm
)