Report mnemonic error in a toast instead of silently fail

pull/391/head
sachaaaaa 6 years ago
parent 5885f2d901
commit 1f3f63dcc6

@ -579,6 +579,7 @@
<div class='standalone-mnemonic-inputs'> <div class='standalone-mnemonic-inputs'>
<input class='form-control' type='text' id='mnemonic' placeholder='Mnemonic Seed' autocomplete='off' spellcheck='false' /> <input class='form-control' type='text' id='mnemonic' placeholder='Mnemonic Seed' autocomplete='off' spellcheck='false' />
</div> </div>
<div id='error' class='collapse'></div>
<div class='restore standalone-register-language'> <div class='restore standalone-register-language'>
<span>Language:</span> <span>Language:</span>
<div class='select-container'> <div class='select-container'>
@ -586,7 +587,6 @@
</div> </div>
</div> </div>
<a class='button' id='register-mnemonic'>Restore</a> <a class='button' id='register-mnemonic'>Restore</a>
<div id='error' class='collapse'></div>
<div id=status></div> <div id=status></div>
</div> </div>
<h4 class='section-toggle section-toggle-visible'>Register a new account</h4> <h4 class='section-toggle section-toggle-visible'>Register a new account</h4>

@ -90,7 +90,7 @@
async register(mnemonic, language) { async register(mnemonic, language) {
// Make sure the password is valid // Make sure the password is valid
if (this.validatePassword()) { if (this.validatePassword()) {
this.showToast('Invalid password'); this.showToast(i18n('invalidPassword'));
return; return;
} }
@ -119,6 +119,16 @@
registerWithMnemonic() { registerWithMnemonic() {
const mnemonic = this.$('#mnemonic').val(); const mnemonic = this.$('#mnemonic').val();
const language = this.$('#mnemonic-language').val(); const language = this.$('#mnemonic-language').val();
try {
window.mnemonic.mn_decode(mnemonic, language);
} catch (error) {
this.$('#mnemonic').addClass('error-input');
this.$('#error').text(error);
this.$('#error').show();
return;
}
this.$('#error').hide();
this.$('#mnemonic').removeClass('error-input');
if (!mnemonic) { if (!mnemonic) {
this.log('Please provide a mnemonic word list'); this.log('Please provide a mnemonic word list');
} else { } else {
@ -148,11 +158,7 @@
onCopyMnemonic() { onCopyMnemonic() {
window.clipboard.writeText(this.$('#mnemonic-display').text()); window.clipboard.writeText(this.$('#mnemonic-display').text());
const toast = new Whisper.MessageToastView({ this.showToast(i18n('copiedMnemonic'));
message: i18n('copiedMnemonic'),
});
toast.$el.appendTo(this.$el);
toast.render();
}, },
log(s) { log(s) {
window.log.info(s); window.log.info(s);

@ -141,7 +141,7 @@ function mn_decode(str, wordset_name) {
checksum_word.slice(0, wordset.prefix_len) checksum_word.slice(0, wordset.prefix_len)
) { ) {
throw new MnemonicError( throw new MnemonicError(
'Your private key could not be verified, please try again' 'Your private key could not be verified, please verify the checksum word'
); );
} }
} }

@ -806,7 +806,8 @@ $loading-height: 16px;
} }
} }
.password-inputs { .password-inputs,
.standalone-mnemonic-inputs {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;

Loading…
Cancel
Save