lazy element, settings: account delete and secret update

This commit is contained in:
realaravinth
2021-07-21 20:44:22 +05:30
parent 2c2f79e1cd
commit 861998af75
15 changed files with 308 additions and 36 deletions

View File

@@ -17,13 +17,87 @@
import registerShowPassword from '../../components/showPassword/';
import CopyIcon from '../../components/clipboard/';
import createError from '../../components/error/';
import emailExists from '../../auth/register/ts/emailExists';
import LazyElement from '../../utils/lazyElement';
import isBlankString from '../../utils/isBlankString';
import getFormUrl from '../../utils/getFormUrl';
import genJsonPayload from '../../utils/genJsonPayload';
import VIEWS from '../../views/v1/routes';
const SECRET_COPY_ICON = 'settings__secret-copy';
const SECRET_COPY_DONE_ICON = 'settings__secret-copy-done';
const index = () => {
registerShowPassword();
// form IDs
const DELETE_FORM = 'settings__delete-form';
const EMAIL_FORM = 'settings__email-form';
const SECRET_FORM = 'settings__secret-form';
// form elements
const deleteForm = new LazyElement(DELETE_FORM);
const emailForm = new LazyElement(EMAIL_FORM);
const secretForm = new LazyElement(SECRET_FORM);
// field IDs
const EMAIL = 'email';
// field elements
const emailField = new LazyElement(EMAIL);
// form event handlers
const updateEmail = async (e: Event) => {
e.preventDefault();
const emailElement = <HTMLInputElement>emailField.get();
const email = emailElement.value;
isBlankString(email, 'email', e);
if (await emailExists(emailElement)) {
return;
} else {
const url = getFormUrl(<HTMLFormElement>emailForm.get());
const payload = {
email,
};
const res = await fetch(url, genJsonPayload(payload));
if (res.ok) {
window.location.reload();
} else {
const err = await res.json();
createError(err.error);
}
}
};
const updateSecret = (e: Event) => {
e.preventDefault();
const msg =
'WARNING: updating secret will cause service disruption if old secret is still in use post update';
if (confirm(msg)) {
window.location.assign(VIEWS.updateSecret);
}
};
const deleteAccount = (e: Event) => {
e.preventDefault();
const msg =
"WARNING: all CAPTCHA configurations will be lost. This action can't be undone";
if (confirm(msg)) {
window.location.assign(VIEWS.deleteAccount);
}
};
// regist form event handlers
const registerForms = () => {
deleteForm.get().addEventListener('submit', e => deleteAccount(e), true);
emailForm.get().addEventListener('submit', e => updateEmail(e), true);
secretForm.get().addEventListener('submit', e => updateSecret(e), true);
};
// set up copying account secret to clipboard
const initCopySecret = () => {
const secretElement = <HTMLElement>(
document.querySelector(`.${SECRET_COPY_ICON}`)
);
@@ -31,4 +105,12 @@ const index = () => {
new CopyIcon(writeText, secretElement, SECRET_COPY_DONE_ICON);
};
/// TODO email update button should only change if email value has been changed
const index = () => {
registerShowPassword();
initCopySecret();
registerForms();
};
export default index;