Autogenerate subscriber name from e-mail on the UI if it's empty. Closes #525.

This commit is contained in:
Kailash Nadh 2021-10-20 21:54:22 +05:30
parent 0f896c1b6e
commit bc9252f410
2 changed files with 14 additions and 0 deletions

View file

@ -103,6 +103,8 @@ export default class Utils {
// https://stackoverflow.com/a/12034334
escapeHTML = (html) => html.replace(/[&<>"'`=/]/g, (s) => htmlEntities[s]);
titleCase = (str) => str[0].toUpperCase() + str.substr(1).toLowerCase();
// UI shortcuts.
confirm = (msg, onConfirm, onCancel) => {
Dialog.confirm({

View file

@ -165,6 +165,18 @@ export default Vue.extend({
},
onSubmit() {
// If there is no name, auto-generate one from the e-mail.
if (!this.form.name) {
let name = '';
[name] = this.form.email.toLowerCase().split('@');
if (name.includes('.')) {
this.form.name = name.split('.').map((c) => this.$utils.titleCase(c)).join(' ');
} else {
this.form.name = this.$utils.titleCase(name);
}
}
if (this.isEditing) {
this.updateSubscriber();
return;