|
|
|
@ -57,21 +57,13 @@
|
|
|
|
|
|
|
|
|
|
this.onValidatePassword();
|
|
|
|
|
|
|
|
|
|
const sanitiseNameInput = () => {
|
|
|
|
|
const oldVal = this.$('#display-name').val();
|
|
|
|
|
this.$('#display-name').val(oldVal.replace(/[^a-zA-Z0-9_]/g, ''));
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
this.$('#display-name').get(0).oninput = () => {
|
|
|
|
|
sanitiseNameInput();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
this.$('#display-name').get(0).onpaste = () => {
|
|
|
|
|
// Sanitise data immediately after paste because it's easier
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
sanitiseNameInput();
|
|
|
|
|
this.sanitiseNameInput();
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
this.sanitiseNameInput();
|
|
|
|
|
},
|
|
|
|
|
events: {
|
|
|
|
|
keyup: 'onKeyup',
|
|
|
|
@ -91,6 +83,18 @@
|
|
|
|
|
'keyup #password': 'onValidatePassword',
|
|
|
|
|
'keyup #password-confirmation': 'onValidatePassword',
|
|
|
|
|
},
|
|
|
|
|
sanitiseNameInput() {
|
|
|
|
|
const oldVal = this.$('#display-name').val();
|
|
|
|
|
const newVal = oldVal.replace(/[^a-zA-Z0-9_]/g, '');
|
|
|
|
|
this.$('#display-name').val(newVal);
|
|
|
|
|
if (_.isEmpty(newVal)) {
|
|
|
|
|
this.$('#save-button').attr('disabled', 'disabled');
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
this.$('#save-button').removeAttr('disabled');
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
async showPage(pageIndex) {
|
|
|
|
|
// eslint-disable-next-line func-names
|
|
|
|
|
this.$pages.each(function(index) {
|
|
|
|
@ -123,9 +127,12 @@
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const validName = this.sanitiseNameInput();
|
|
|
|
|
switch (event.key) {
|
|
|
|
|
case 'Enter':
|
|
|
|
|
this.onSaveProfile();
|
|
|
|
|
if (validName) {
|
|
|
|
|
this.onSaveProfile();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'Escape':
|
|
|
|
|
case 'Esc':
|
|
|
|
|