nifty-wallet/ui/app/unlock.js

110 lines
2.8 KiB
JavaScript
Raw Normal View History

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 Mascot = require('./components/mascot')
const getCaretCoordinates = require('textarea-caret')
const EventEmitter = require('events').EventEmitter
module.exports = connect(mapStateToProps)(UnlockScreen)
inherits(UnlockScreen, Component)
2016-06-21 13:18:32 -07:00
function UnlockScreen () {
Component.call(this)
this.animationEventEmitter = new EventEmitter()
}
2016-06-21 13:18:32 -07:00
function mapStateToProps (state) {
return {
warning: state.appState.warning,
}
}
2016-06-21 13:18:32 -07:00
UnlockScreen.prototype.render = function () {
const state = this.props
const warning = state.warning
return (
h('.unlock-screen.flex-column.flex-center.flex-grow', [
h(Mascot, {
animationEventEmitter: this.animationEventEmitter,
}),
2016-05-13 18:07:47 -07:00
h('h1', {
style: {
fontSize: '1.4em',
textTransform: 'uppercase',
color: '#7F8082',
},
}, 'MetaMask'),
2016-05-18 12:13:19 -07:00
h('input.large-input', {
type: 'password',
id: 'password-box',
2016-05-13 18:07:47 -07:00
placeholder: 'enter password',
style: {
},
onKeyPress: this.onKeyPress.bind(this),
onInput: this.inputChanged.bind(this),
}),
h('.error', {
style: {
display: warning ? 'block' : 'none',
2016-06-21 13:18:32 -07:00
},
}, warning),
h('button.primary.cursor-pointer', {
onClick: this.onSubmit.bind(this),
2016-05-18 12:13:19 -07:00
style: {
margin: 10,
},
}, 'Unlock'),
])
)
}
2016-06-21 13:18:32 -07:00
UnlockScreen.prototype.componentDidMount = function () {
document.getElementById('password-box').focus()
}
2016-06-21 13:18:32 -07:00
UnlockScreen.prototype.onSubmit = function (event) {
const input = document.getElementById('password-box')
const password = input.value
this.props.dispatch(actions.tryUnlockMetamask(password))
}
2016-06-21 13:18:32 -07:00
UnlockScreen.prototype.onKeyPress = function (event) {
if (event.key === 'Enter') {
this.submitPassword(event)
}
}
2016-06-21 13:18:32 -07:00
UnlockScreen.prototype.submitPassword = function (event) {
var element = event.target
var password = element.value
// reset input
element.value = ''
this.props.dispatch(actions.tryUnlockMetamask(password))
}
2016-06-21 13:18:32 -07:00
UnlockScreen.prototype.inputChanged = function (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,
})
}
2016-06-21 13:18:32 -07:00
UnlockScreen.prototype.emitAnim = function (name, a, b, c) {
this.animationEventEmitter.emit(name, a, b, c)
}