Merge pull request #660 from Bilb/385-handle-focus-registration-page

Update input focus on registration page
pull/671/head
Audric Ackermann 5 years ago committed by GitHub
commit af58d52b0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -145,7 +145,10 @@
this.$('#display-name').focus();
},
onKeyup(event) {
if (currentPageIndex !== PROFILE_INDEX) {
if (
currentPageIndex !== PROFILE_INDEX &&
currentPageIndex !== REGISTER_INDEX
) {
// Only want enter/escape keys to work on profile page
return;
}
@ -153,7 +156,11 @@
const validName = this.sanitiseNameInput();
switch (event.key) {
case 'Enter':
if (validName) {
if (event.target.id === 'mnemonic') {
this.registerWithMnemonic();
} else if (event.target.id === 'primary-pubkey') {
this.registerSecondaryDevice();
} else if (validName) {
this.onSaveProfile();
}
break;
@ -388,13 +395,22 @@
this.$('#number-container').addClass('invalid');
}
},
toggleSection(e) {
function focusInput() {
const inputs = $(this).find('input');
if ($(this).is(':visible')) {
if (inputs[0]) {
inputs[0].focus();
}
}
}
// Expand or collapse this panel
const $target = this.$(e.currentTarget);
const $next = $target.next();
// Toggle section visibility
$next.slideToggle('fast');
$next.slideToggle('fast', focusInput);
$target.toggleClass('section-toggle-visible');
// Hide the other sections

Loading…
Cancel
Save