Disallow pasting recovery phrases on first run (#6602)
* Fix disallowing paste of recovery phrase on first run, ref #6581 * Allow the leader of CATS pasting recovery phrases.
This commit is contained in:
parent
931a7a2210
commit
41c3b05a20
@ -35,6 +35,7 @@ export default class Store {
|
|||||||
@observable gethAddresses = [];
|
@observable gethAddresses = [];
|
||||||
@observable gethImported = [];
|
@observable gethImported = [];
|
||||||
@observable isBusy = false;
|
@observable isBusy = false;
|
||||||
|
@observable isTest = false;
|
||||||
@observable isWindowsPhrase = false;
|
@observable isWindowsPhrase = false;
|
||||||
@observable name = '';
|
@observable name = '';
|
||||||
@observable nameError = ERRORS.noName;
|
@observable nameError = ERRORS.noName;
|
||||||
@ -310,6 +311,10 @@ export default class Store {
|
|||||||
this.stage--;
|
this.stage--;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@action setIsTest = isTest => {
|
||||||
|
this.isTest = isTest;
|
||||||
|
}
|
||||||
|
|
||||||
createAccount = (vaultStore) => {
|
createAccount = (vaultStore) => {
|
||||||
if (!this.canCreate) {
|
if (!this.canCreate) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -78,16 +78,23 @@ class FirstRun extends Component {
|
|||||||
hasAccounts: PropTypes.bool.isRequired,
|
hasAccounts: PropTypes.bool.isRequired,
|
||||||
newError: PropTypes.func.isRequired,
|
newError: PropTypes.func.isRequired,
|
||||||
onClose: PropTypes.func.isRequired,
|
onClose: PropTypes.func.isRequired,
|
||||||
visible: PropTypes.bool.isRequired
|
visible: PropTypes.bool.isRequired,
|
||||||
|
isTest: PropTypes.bool.isRequired
|
||||||
}
|
}
|
||||||
|
|
||||||
createStore = new CreateStore(this.context.api, {}, true, false);
|
createStore = new CreateStore(this.context.api, {}, this.props.isTest, false);
|
||||||
|
|
||||||
state = {
|
state = {
|
||||||
stage: 0,
|
stage: 0,
|
||||||
hasAcceptedTnc: false
|
hasAcceptedTnc: false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
componentWillReceiveProps (nextProps) {
|
||||||
|
if (nextProps.isTest !== this.props.isTest) {
|
||||||
|
this.createStore.setIsTest(nextProps.isTest);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
const { visible } = this.props;
|
const { visible } = this.props;
|
||||||
const { stage } = this.state;
|
const { stage } = this.state;
|
||||||
@ -348,9 +355,10 @@ class FirstRun extends Component {
|
|||||||
|
|
||||||
function mapStateToProps (state) {
|
function mapStateToProps (state) {
|
||||||
const { hasAccounts } = state.personal;
|
const { hasAccounts } = state.personal;
|
||||||
|
const { isTest } = state.nodeStatus;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
hasAccounts
|
hasAccounts, isTest
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -35,6 +35,9 @@ function createRedux () {
|
|||||||
return {
|
return {
|
||||||
personal: {
|
personal: {
|
||||||
hasAccounts: false
|
hasAccounts: false
|
||||||
|
},
|
||||||
|
nodeStatus: {
|
||||||
|
isTest: false
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,7 @@ import React, { Component, PropTypes } from 'react';
|
|||||||
import { TextField } from 'material-ui';
|
import { TextField } from 'material-ui';
|
||||||
import { noop } from 'lodash';
|
import { noop } from 'lodash';
|
||||||
import keycode from 'keycode';
|
import keycode from 'keycode';
|
||||||
|
import localStore from 'store';
|
||||||
|
|
||||||
import { nodeOrStringProptype } from '~/util/proptypes';
|
import { nodeOrStringProptype } from '~/util/proptypes';
|
||||||
import { toString } from '~/util/messages';
|
import { toString } from '~/util/messages';
|
||||||
@ -223,7 +224,9 @@ export default class Input extends Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onChange = (event, value) => {
|
onChange = (event, value) => {
|
||||||
if (!this.props.allowPaste) {
|
const isDev = localStore.get('allYourBaseAreBelongToUs') || false;
|
||||||
|
|
||||||
|
if (!this.props.allowPaste && !isDev) {
|
||||||
if (value.length - this.state.value.length > 8) {
|
if (value.length - this.state.value.length > 8) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user