nifty-wallet/ui/app/first-time/init-menu.js

226 lines
6.1 KiB
JavaScript
Raw Normal View History

const { EventEmitter } = require('events')
const { Component } = require('react')
const PropTypes = require('prop-types')
const connect = require('react-redux').connect
const h = require('react-hyperscript')
const Mascot = require('../components/mascot')
const actions = require('../actions')
2016-10-27 16:02:34 -07:00
const Tooltip = require('../components/tooltip')
const getCaretCoordinates = require('textarea-caret')
const { RESTORE_VAULT_ROUTE, DEFAULT_ROUTE } = require('../routes')
const environmentType = require('../../../app/scripts/lib/environment-type')
const { OLD_UI_NETWORK_TYPE } = require('../../../app/scripts/config').enums
class InitializeMenuScreen extends Component {
constructor (props) {
super(props)
this.animationEventEmitter = new EventEmitter()
this.state = {
warning: null,
}
}
componentWillMount () {
const { isInitialized, isUnlocked, history } = this.props
if (isInitialized || isUnlocked) {
history.push(DEFAULT_ROUTE)
}
}
componentDidMount () {
document.getElementById('password-box').focus()
}
render () {
const { warning } = this.state
return (
2017-12-03 22:24:30 -08:00
h('.initialize-screen.flex-column.flex-center', [
h(Mascot, {
animationEventEmitter: this.animationEventEmitter,
}),
h('h1', {
style: {
fontSize: '1.3em',
textTransform: 'uppercase',
color: '#7F8082',
marginBottom: 10,
},
2018-03-30 16:18:48 -07:00
}, this.context.t('appName')),
h('div', [
h('h3', {
style: {
fontSize: '0.8em',
color: '#7F8082',
display: 'inline',
},
2018-03-30 16:18:48 -07:00
}, this.context.t('encryptNewDen')),
h(Tooltip, {
2018-03-30 16:18:48 -07:00
title: this.context.t('denExplainer'),
}, [
h('i.fa.fa-question-circle.pointer', {
style: {
fontSize: '18px',
position: 'relative',
color: 'rgb(247, 134, 28)',
top: '2px',
marginLeft: '4px',
},
}),
]),
]),
h('span.error.in-progress-notification', warning),
// password
h('input.large-input.letter-spacey', {
type: 'password',
id: 'password-box',
2018-03-30 16:18:48 -07:00
placeholder: this.context.t('newPassword'),
onInput: this.inputChanged.bind(this),
style: {
width: 260,
marginTop: 12,
},
}),
// confirm password
h('input.large-input.letter-spacey', {
type: 'password',
id: 'password-box-confirm',
2018-03-30 16:18:48 -07:00
placeholder: this.context.t('confirmPassword'),
onKeyPress: this.createVaultOnEnter.bind(this),
onInput: this.inputChanged.bind(this),
style: {
width: 260,
marginTop: 16,
},
}),
2016-10-27 16:02:34 -07:00
h('button.primary', {
onClick: this.createNewVaultAndKeychain.bind(this),
2016-10-27 16:02:34 -07:00
style: {
margin: 12,
2016-10-27 16:02:34 -07:00
},
2018-03-30 16:18:48 -07:00
}, this.context.t('createDen')),
2016-10-27 16:02:34 -07:00
h('.flex-row.flex-center.flex-grow', [
h('p.pointer', {
2018-03-27 00:20:35 -07:00
onClick: () => this.showRestoreVault(),
2016-10-27 16:02:34 -07:00
style: {
fontSize: '0.8em',
2016-10-27 16:02:34 -07:00
color: 'rgb(247, 134, 28)',
textDecoration: 'underline',
2016-10-27 16:02:34 -07:00
},
2018-03-30 16:18:48 -07:00
}, this.context.t('importDen')),
2018-03-27 00:20:35 -07:00
]),
2018-03-27 00:20:35 -07:00
h('.flex-row.flex-center.flex-grow', [
h('p.pointer', {
onClick: this.showOldUI.bind(this),
style: {
fontSize: '0.8em',
color: '#aeaeae',
textDecoration: 'underline',
marginTop: '32px',
},
}, 'Use classic interface'),
2016-10-27 16:02:34 -07:00
]),
2016-11-23 15:29:42 -08:00
])
)
}
createVaultOnEnter (event) {
if (event.key === 'Enter') {
event.preventDefault()
this.createNewVaultAndKeychain()
}
2016-10-27 16:02:34 -07:00
}
createNewVaultAndKeychain () {
const { history } = this.props
var passwordBox = document.getElementById('password-box')
var password = passwordBox.value
var passwordConfirmBox = document.getElementById('password-box-confirm')
var passwordConfirm = passwordConfirmBox.value
this.setState({ warning: null })
if (password.length < 8) {
2018-03-30 16:18:48 -07:00
this.setState({ warning: this.context.t('passwordShort') })
return
}
2018-03-27 00:20:35 -07:00
if (password !== passwordConfirm) {
2018-03-30 16:18:48 -07:00
this.setState({ warning: this.context.t('passwordMismatch') })
return
}
this.props.createNewVaultAndKeychain(password)
.then(() => history.push(DEFAULT_ROUTE))
}
inputChanged (event) {
// tell mascot to look at page action
var element = event.target
var boundingRect = element.getBoundingClientRect()
var coordinates = getCaretCoordinates(element, element.selectionEnd)
this.animationEventEmitter.emit('point', {
x: boundingRect.left + coordinates.left - element.scrollLeft,
y: boundingRect.top + coordinates.top - element.scrollTop,
})
}
2018-03-27 00:20:35 -07:00
showRestoreVault () {
this.props.markPasswordForgotten()
if (environmentType() === 'popup') {
global.platform.openExtensionInBrowser()
}
2016-10-27 16:02:34 -07:00
2018-03-27 00:20:35 -07:00
this.props.history.push(RESTORE_VAULT_ROUTE)
2016-10-27 16:02:34 -07:00
}
2018-03-27 00:20:35 -07:00
showOldUI () {
this.props.dispatch(actions.setFeatureFlag('betaUI', false, 'OLD_UI_NOTIFICATION_MODAL'))
.then(() => this.props.dispatch(actions.setNetworkEndpoints(OLD_UI_NETWORK_TYPE)))
2016-10-27 16:02:34 -07:00
}
2016-10-30 14:08:14 -07:00
}
InitializeMenuScreen.propTypes = {
history: PropTypes.object,
isInitialized: PropTypes.bool,
isUnlocked: PropTypes.bool,
createNewVaultAndKeychain: PropTypes.func,
2018-03-27 00:20:35 -07:00
markPasswordForgotten: PropTypes.func,
dispatch: PropTypes.func,
}
2018-03-30 16:18:48 -07:00
InitializeMenuScreen.contextTypes = {
t: PropTypes.func,
}
2016-10-27 16:02:34 -07:00
const mapStateToProps = state => {
const { metamask: { isInitialized, isUnlocked } } = state
2016-10-27 16:02:34 -07:00
return {
isInitialized,
isUnlocked,
2016-10-27 16:02:34 -07:00
}
}
2016-10-27 16:02:34 -07:00
const mapDispatchToProps = dispatch => {
return {
createNewVaultAndKeychain: password => dispatch(actions.createNewVaultAndKeychain(password)),
2018-03-27 00:20:35 -07:00
markPasswordForgotten: () => dispatch(actions.markPasswordForgotten()),
}
2016-10-27 16:02:34 -07:00
}
module.exports = connect(mapStateToProps, mapDispatchToProps)(InitializeMenuScreen)