aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/import-account/json.js
blob: c7d232d3027a41c7ca041af3cc8d896fe91325a0 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
const inherits = require('util').inherits
const Component = require('react').Component
const h = require('react-hyperscript')
const connect = require('react-redux').connect
const actions = require('../../../actions')
const FileInput = require('react-simple-file-input').default

const HELP_LINK = 'https://support.metamask.io/kb/article/7-importing-accounts'

module.exports = connect(mapStateToProps)(JsonImportSubview)

function mapStateToProps (state) {
  return {
    error: state.appState.warning,
  }
}

inherits(JsonImportSubview, Component)
function JsonImportSubview () {
  Component.call(this)
}

JsonImportSubview.prototype.render = function () {
  const { error } = this.props

  return (
    h('div.new-account-import-form__json', [

      h('p', 'Used by a variety of different clients'),
      h('a.warning', { href: HELP_LINK, target: '_blank' }, 'File import not working? Click here!'),

      h(FileInput, {
        readAs: 'text',
        onLoad: this.onLoad.bind(this),
        style: {
          margin: '20px 0px 12px 34%',
          fontSize: '15px',
          display: 'flex',
          justifyContent: 'center',
        },
      }),

      h('input.new-account-import-form__input-password', {
        type: 'password',
        placeholder: 'Enter password',
        id: 'json-password-box',
        onKeyPress: this.createKeyringOnEnter.bind(this),
      }),

      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.createNewKeychain.bind(this),
        }, [
          'IMPORT',
        ]),

      ]),

      error ? h('span.error', error) : null,
    ])
  )
}

JsonImportSubview.prototype.onLoad = function (event, file) {
  this.setState({file: file, fileContents: event.target.result})
}

JsonImportSubview.prototype.createKeyringOnEnter = function (event) {
  if (event.key === 'Enter') {
    event.preventDefault()
    this.createNewKeychain()
  }
}

JsonImportSubview.prototype.createNewKeychain = function () {
  const state = this.state
  const { fileContents } = state

  if (!fileContents) {
    const message = 'You must select a file to import.'
    return this.props.dispatch(actions.displayWarning(message))
  }

  const passwordInput = document.getElementById('json-password-box')
  const password = passwordInput.value

  if (!password) {
    const message = 'You must enter a password for the selected file.'
    return this.props.dispatch(actions.displayWarning(message))
  }

  this.props.dispatch(actions.importNewAccount('JSON File', [ fileContents, password ]))
}