MyCrypto/common/components/WalletDecrypt/PrivateKey.jsx

128 lines
3.2 KiB
React
Raw Normal View History

2017-06-29 23:03:11 +00:00
// @flow
import React, { Component } from 'react';
import translate, { translateRaw } from 'translations';
import { isValidPrivKey, isValidEncryptedPrivKey } from 'libs/validators';
2017-06-29 23:03:11 +00:00
export type PrivateKeyValue = {
key: string,
password: string,
2017-07-04 03:21:19 +00:00
valid: boolean
2017-06-29 23:03:11 +00:00
};
function fixPkey(key) {
2017-07-04 03:21:19 +00:00
if (key.indexOf('0x') === 0) {
return key.slice(2);
}
return key;
2017-06-29 23:03:11 +00:00
}
type validated = {
fixedPkey: string,
isValidPkey: boolean,
isPassRequired: boolean,
valid: boolean
};
function validatePkeyAndPass(pkey: string, pass: string): validated {
const fixedPkey = fixPkey(pkey);
const validPkey = isValidPrivKey(fixedPkey);
const validEncPkey = isValidEncryptedPrivKey(fixedPkey);
const isValidPkey = validPkey || validEncPkey;
let isValidPass = false;
if (validPkey) {
isValidPass = true;
} else if (validEncPkey) {
isValidPass = pass.length > 0;
}
return {
fixedPkey,
isValidPkey,
isPassRequired: validEncPkey,
valid: isValidPkey && isValidPass
};
}
2017-06-29 23:03:11 +00:00
export default class PrivateKeyDecrypt extends Component {
2017-07-04 03:21:19 +00:00
props: {
value: PrivateKeyValue,
onChange: (value: PrivateKeyValue) => void,
2017-07-04 03:21:19 +00:00
onUnlock: () => void
};
2017-06-29 23:03:11 +00:00
2017-07-04 03:21:19 +00:00
render() {
const { key, password } = this.props.value;
const { isValidPkey, isPassRequired } = validatePkeyAndPass(key, password);
2017-06-29 23:03:11 +00:00
2017-07-04 03:21:19 +00:00
return (
<section className="col-md-4 col-sm-6">
<div id="selectedTypeKey">
<h4>
{translate('ADD_Radio_3')}
</h4>
<div className="form-group">
<textarea
id="aria-private-key"
className={`form-control ${isValidPkey
? 'is-valid'
: 'is-invalid'}`}
2017-07-04 03:21:19 +00:00
value={key}
onChange={this.onPkeyChange}
onKeyDown={this.onKeyDown}
placeholder={translateRaw('x_PrivKey2')}
2017-07-04 03:21:19 +00:00
rows="4"
/>
</div>
{isValidPkey &&
2017-07-04 03:21:19 +00:00
isPassRequired &&
<div className="form-group">
<p>
{translate('ADD_Label_3')}
</p>
<input
className={`form-control ${password.length > 0
? 'is-valid'
: 'is-invalid'}`}
value={password}
onChange={this.onPasswordChange}
onKeyDown={this.onKeyDown}
placeholder={translateRaw('x_Password')}
2017-07-04 03:21:19 +00:00
type="password"
/>
</div>}
</div>
</section>
);
}
2017-06-29 23:03:11 +00:00
2017-07-04 03:21:19 +00:00
onPkeyChange = (e: SyntheticInputEvent) => {
const pkey = e.target.value;
const pass = this.props.value.password;
const { fixedPkey, valid } = validatePkeyAndPass(pkey, pass);
2017-06-29 23:03:11 +00:00
this.props.onChange({ ...this.props.value, key: fixedPkey, valid });
2017-07-04 03:21:19 +00:00
};
2017-06-29 23:03:11 +00:00
2017-07-04 03:21:19 +00:00
onPasswordChange = (e: SyntheticInputEvent) => {
const pkey = this.props.value.key;
const pass = e.target.value;
const { valid } = validatePkeyAndPass(pkey, pass);
2017-06-29 23:03:11 +00:00
2017-07-04 03:21:19 +00:00
this.props.onChange({
...this.props.value,
password: pass,
2017-07-04 03:21:19 +00:00
valid
});
};
2017-06-29 23:03:11 +00:00
2017-07-04 03:21:19 +00:00
onKeyDown = (e: SyntheticKeyboardEvent) => {
if (e.keyCode === 13) {
e.preventDefault();
e.stopPropagation();
this.props.onUnlock();
}
};
2017-06-29 23:03:11 +00:00
}