aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/notification-modals/confirm-reset-account.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-02-09 01:18:25 +0800
committerDan <danjm.com@gmail.com>2018-02-09 07:53:16 +0800
commitcd976a2765b9e442642faec8a985c049f8cb393b (patch)
tree67994c756bf66d2f0395d94d79cf95fe2685502b /ui/app/components/modals/notification-modals/confirm-reset-account.js
parentf39222c9afd9dcab4c6234940eb9a9cb06dbc6f0 (diff)
downloadtangerine-wallet-browser-cd976a2765b9e442642faec8a985c049f8cb393b.tar.gz
tangerine-wallet-browser-cd976a2765b9e442642faec8a985c049f8cb393b.tar.zst
tangerine-wallet-browser-cd976a2765b9e442642faec8a985c049f8cb393b.zip
Add reset account button to new UI.
Diffstat (limited to 'ui/app/components/modals/notification-modals/confirm-reset-account.js')
-rw-r--r--ui/app/components/modals/notification-modals/confirm-reset-account.js46
1 files changed, 46 insertions, 0 deletions
diff --git a/ui/app/components/modals/notification-modals/confirm-reset-account.js b/ui/app/components/modals/notification-modals/confirm-reset-account.js
new file mode 100644
index 000000000..e1bc91b24
--- /dev/null
+++ b/ui/app/components/modals/notification-modals/confirm-reset-account.js
@@ -0,0 +1,46 @@
+const { Component } = require('react')
+const PropTypes = require('prop-types')
+const h = require('react-hyperscript')
+const { connect } = require('react-redux')
+const actions = require('../../../actions')
+const NotifcationModal = require('../notification-modal')
+
+class ConfirmResetAccount extends Component {
+ render () {
+ const { resetAccount } = this.props
+
+ return h(NotifcationModal, {
+ header: 'Are you sure you want to reset account?',
+ message: h('div', [
+
+ h('span', `Resetting is for developer use only. This button wipes the current account's transaction history,
+ which is used to calculate the current account nonce. `),
+
+ h('a.notification-modal__link', {
+ href: 'http://metamask.helpscoutdocs.com/article/36-resetting-an-account',
+ target: '_blank',
+ onClick (event) { global.platform.openWindow({ url: event.target.href }) },
+ }, 'Read more.'),
+
+ ]),
+ showCancelButton: true,
+ showConfirmButton: true,
+ onConfirm: resetAccount,
+
+ })
+ }
+}
+
+ConfirmResetAccount.propTypes = {
+ resetAccount: PropTypes.func,
+}
+
+const mapDispatchToProps = dispatch => {
+ return {
+ resetAccount: () => {
+ dispatch(actions.resetAccount())
+ },
+ }
+}
+
+module.exports = connect(null, mapDispatchToProps)(ConfirmResetAccount)