1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/accounts/import/index.js

95 lines
2.3 KiB
JavaScript
Raw Normal View History

const inherits = require('util').inherits
const Component = require('react').Component
const h = require('react-hyperscript')
2018-03-16 01:29:45 +01:00
const connect = require('../../metamask-connect')
import Select from 'react-select'
2016-11-04 23:08:50 +01:00
// Subviews
const JsonImportView = require('./json.js')
const PrivateKeyImportView = require('./private-key.js')
2016-11-04 23:08:50 +01:00
module.exports = connect(mapStateToProps)(AccountImportSubview)
function mapStateToProps (state) {
return {
2018-03-15 00:31:45 +01:00
menuItems: [
this.props.t('privateKey'),
this.props.t('jsonFile'),
2018-03-15 00:31:45 +01:00
],
}
}
inherits(AccountImportSubview, Component)
function AccountImportSubview () {
Component.call(this)
}
AccountImportSubview.prototype.render = function () {
const props = this.props
const state = this.state || {}
const { menuItems } = props
const { type } = state
return (
h('div.new-account-import-form', [
2018-03-03 03:24:09 +01:00
h('.new-account-import-disclaimer', [
h('span', this.props.t('importAccountMsg')),
2018-02-27 21:01:09 +01:00
h('span', {
style: {
cursor: 'pointer',
textDecoration: 'underline',
},
onClick: () => {
global.platform.openWindow({
url: 'https://metamask.helpscoutdocs.com/article/17-what-are-loose-accounts',
})
},
}, this.props.t('here')),
2018-02-27 21:01:09 +01:00
]),
h('div.new-account-import-form__select-section', [
2016-11-04 23:08:50 +01:00
h('div.new-account-import-form__select-label', this.props.t('selectType')),
h(Select, {
className: 'new-account-import-form__select',
name: 'import-type-select',
clearable: false,
value: type || menuItems[0],
options: menuItems.map((type) => {
return {
value: type,
label: type,
}
}),
onChange: (opt) => {
this.setState({ type: opt.value })
},
2016-11-04 23:08:50 +01:00
}),
2016-11-04 23:08:50 +01:00
]),
this.renderImportView(),
])
)
}
2017-04-27 06:05:45 +02:00
AccountImportSubview.prototype.renderImportView = function () {
2016-11-04 23:08:50 +01:00
const props = this.props
const state = this.state || {}
const { type } = state
const { menuItems } = props
const current = type || menuItems[0]
2016-11-04 23:08:50 +01:00
switch (current) {
case this.props.t('privateKey'):
return h(PrivateKeyImportView)
case this.props.t('jsonFile'):
return h(JsonImportView)
2016-11-04 23:08:50 +01:00
default:
return h(JsonImportView)
}
}