aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/notification-modals/confirm-reset-account.js
blob: 89fa9bef1a770d28e027498cf9d568801ea65787 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
const { Component } = require('react')
const PropTypes = require('prop-types')
const h = require('react-hyperscript')
const connect = require('react-redux').connect
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)