aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorbrunobar79 <brunobar79@gmail.com>2018-07-12 09:21:36 +0800
committerbrunobar79 <brunobar79@gmail.com>2018-07-12 09:21:36 +0800
commit80e875308b4447ed38d7e0f677570d73956dd9de (patch)
treefb2f0bdf95c6358295e3894b8302867bc8a16d51 /ui/app/components
parent89cc48789af2bb6f0925384abe4d4a53179a3956 (diff)
downloadtangerine-wallet-browser-80e875308b4447ed38d7e0f677570d73956dd9de.tar
tangerine-wallet-browser-80e875308b4447ed38d7e0f677570d73956dd9de.tar.gz
tangerine-wallet-browser-80e875308b4447ed38d7e0f677570d73956dd9de.tar.bz2
tangerine-wallet-browser-80e875308b4447ed38d7e0f677570d73956dd9de.tar.lz
tangerine-wallet-browser-80e875308b4447ed38d7e0f677570d73956dd9de.tar.xz
tangerine-wallet-browser-80e875308b4447ed38d7e0f677570d73956dd9de.tar.zst
tangerine-wallet-browser-80e875308b4447ed38d7e0f677570d73956dd9de.zip
forget device and autiload account features added
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/pages/create-account/connect-hardware/account-list.js10
-rw-r--r--ui/app/components/pages/create-account/connect-hardware/index.js31
2 files changed, 40 insertions, 1 deletions
diff --git a/ui/app/components/pages/create-account/connect-hardware/account-list.js b/ui/app/components/pages/create-account/connect-hardware/account-list.js
index 170d8f0b3..3bd6a00a7 100644
--- a/ui/app/components/pages/create-account/connect-hardware/account-list.js
+++ b/ui/app/components/pages/create-account/connect-hardware/account-list.js
@@ -90,11 +90,20 @@ class AccountList extends Component {
])
}
+ renderForgetDevice () {
+ return h('div.hw-forget-device-container', {}, [
+ h('a', {
+ onClick: this.props.onForgetDevice.bind(this),
+ }, this.context.t('forgetDevice')),
+ ])
+ }
+
render () {
return h('div', {}, [
this.renderAccounts(),
this.renderPagination(),
this.renderButtons(),
+ this.renderForgetDevice(),
])
}
@@ -104,6 +113,7 @@ class AccountList extends Component {
AccountList.propTypes = {
accounts: PropTypes.array.isRequired,
onAccountChange: PropTypes.func.isRequired,
+ onForgetDevice: PropTypes.func.isRequired,
getPage: PropTypes.func.isRequired,
network: PropTypes.string,
selectedAccount: PropTypes.string,
diff --git a/ui/app/components/pages/create-account/connect-hardware/index.js b/ui/app/components/pages/create-account/connect-hardware/index.js
index 126102235..9aef36cfb 100644
--- a/ui/app/components/pages/create-account/connect-hardware/index.js
+++ b/ui/app/components/pages/create-account/connect-hardware/index.js
@@ -13,13 +13,19 @@ class ConnectHardwareForm extends Component {
super(props)
this.state = {
error: null,
- response: null,
btnText: context.t('connectToTrezor'),
selectedAccount: null,
accounts: [],
}
}
+ async componentDidMount () {
+ const unlocked = await this.props.checkHardwareStatus('trezor')
+ if (unlocked) {
+ this.getPage(0)
+ }
+ }
+
connectToTrezor = () => {
if (this.state.accounts.length) {
return null
@@ -70,6 +76,20 @@ class ConnectHardwareForm extends Component {
})
}
+ onForgetDevice = () => {
+ this.props.forgetDevice('trezor')
+ .then(_ => {
+ this.setState({
+ error: null,
+ btnText: this.context.t('connectToTrezor'),
+ selectedAccount: null,
+ accounts: [],
+ })
+ }).catch(e => {
+ this.setState({ error: e.toString() })
+ })
+ }
+
onUnlockAccount = () => {
if (this.state.selectedAccount === null) {
@@ -110,6 +130,7 @@ class ConnectHardwareForm extends Component {
getPage: this.getPage,
history: this.props.history,
onUnlockAccount: this.onUnlockAccount,
+ onForgetDevice: this.onForgetDevice,
onCancel: this.onCancel,
})
}
@@ -127,6 +148,8 @@ ConnectHardwareForm.propTypes = {
showImportPage: PropTypes.func,
showConnectPage: PropTypes.func,
connectHardware: PropTypes.func,
+ checkHardwareStatus: PropTypes.func,
+ forgetDevice: PropTypes.func,
unlockTrezorAccount: PropTypes.func,
numberOfExistingAccounts: PropTypes.number,
history: PropTypes.object,
@@ -154,6 +177,12 @@ const mapDispatchToProps = dispatch => {
connectHardware: (deviceName, page) => {
return dispatch(actions.connectHardware(deviceName, page))
},
+ checkHardwareStatus: (deviceName) => {
+ return dispatch(actions.checkHardwareStatus(deviceName))
+ },
+ forgetDevice: (deviceName) => {
+ return dispatch(actions.forgetDevice(deviceName))
+ },
unlockTrezorAccount: index => {
return dispatch(actions.unlockTrezorAccount(index))
},