aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-08-26 03:18:04 +0800
committerDan Finlay <dan@danfinlay.com>2016-08-26 03:18:04 +0800
commitd81bde9f6c83c72dd693550494503f8be23a1a20 (patch)
tree08636728d4e9ef1843216df67d49784414caac69 /ui
parentf30e4be1a69e5eba73ad78ee336e92a4cc35b864 (diff)
downloadtangerine-wallet-browser-d81bde9f6c83c72dd693550494503f8be23a1a20.tar
tangerine-wallet-browser-d81bde9f6c83c72dd693550494503f8be23a1a20.tar.gz
tangerine-wallet-browser-d81bde9f6c83c72dd693550494503f8be23a1a20.tar.bz2
tangerine-wallet-browser-d81bde9f6c83c72dd693550494503f8be23a1a20.tar.lz
tangerine-wallet-browser-d81bde9f6c83c72dd693550494503f8be23a1a20.tar.xz
tangerine-wallet-browser-d81bde9f6c83c72dd693550494503f8be23a1a20.tar.zst
tangerine-wallet-browser-d81bde9f6c83c72dd693550494503f8be23a1a20.zip
Make restore vault form persist
Diffstat (limited to 'ui')
-rw-r--r--ui/app/first-time/restore-vault.js17
1 files changed, 14 insertions, 3 deletions
diff --git a/ui/app/first-time/restore-vault.js b/ui/app/first-time/restore-vault.js
index 684781e50..4c1f21008 100644
--- a/ui/app/first-time/restore-vault.js
+++ b/ui/app/first-time/restore-vault.js
@@ -1,14 +1,14 @@
const inherits = require('util').inherits
-const Component = require('react').Component
+const PersistentForm = require('../../lib/persistent-form')
const connect = require('react-redux').connect
const h = require('react-hyperscript')
const actions = require('../actions')
module.exports = connect(mapStateToProps)(RestoreVaultScreen)
-inherits(RestoreVaultScreen, Component)
+inherits(RestoreVaultScreen, PersistentForm)
function RestoreVaultScreen () {
- Component.call(this)
+ PersistentForm.call(this)
}
function mapStateToProps (state) {
@@ -19,6 +19,8 @@ function mapStateToProps (state) {
RestoreVaultScreen.prototype.render = function () {
var state = this.props
+ this.persistentFormParentId = 'restore-vault-form'
+
return (
h('.initialize-screen.flex-column.flex-center.flex-grow', [
@@ -39,6 +41,9 @@ RestoreVaultScreen.prototype.render = function () {
// wallet seed entry
h('h3', 'Wallet Seed'),
h('textarea.twelve-word-phrase.letter-spacey', {
+ dataset: {
+ persistentFormId: 'wallet-seed',
+ },
placeholder: 'Enter your secret twelve word phrase here to restore your vault.',
}),
@@ -47,6 +52,9 @@ RestoreVaultScreen.prototype.render = function () {
type: 'password',
id: 'password-box',
placeholder: 'New Password (min 8 chars)',
+ dataset: {
+ persistentFormId: 'password',
+ },
style: {
width: 260,
marginTop: 12,
@@ -59,6 +67,9 @@ RestoreVaultScreen.prototype.render = function () {
id: 'password-box-confirm',
placeholder: 'Confirm Password',
onKeyPress: this.onMaybeCreate.bind(this),
+ dataset: {
+ persistentFormId: 'password-confirmation',
+ },
style: {
width: 260,
marginTop: 16,