2024-07-07 15:32:30 +00:00
|
|
|
import {hideElem, showElem} from '../utils/dom.ts';
|
2022-01-28 21:00:11 +00:00
|
|
|
|
2021-10-16 17:28:04 +00:00
|
|
|
export function initUserSettings() {
|
2024-03-25 18:37:55 +00:00
|
|
|
if (!document.querySelectorAll('.user.settings.profile').length) return;
|
2024-02-16 15:52:50 +00:00
|
|
|
|
2024-06-10 20:49:33 +00:00
|
|
|
const usernameInput = document.querySelector('#username');
|
2024-02-16 15:52:50 +00:00
|
|
|
if (!usernameInput) return;
|
|
|
|
usernameInput.addEventListener('input', function () {
|
2024-06-10 20:49:33 +00:00
|
|
|
const prompt = document.querySelector('#name-change-prompt');
|
|
|
|
const promptRedirect = document.querySelector('#name-change-redirect-prompt');
|
2024-02-16 15:52:50 +00:00
|
|
|
if (this.value.toLowerCase() !== this.getAttribute('data-name').toLowerCase()) {
|
|
|
|
showElem(prompt);
|
|
|
|
showElem(promptRedirect);
|
|
|
|
} else {
|
|
|
|
hideElem(prompt);
|
|
|
|
hideElem(promptRedirect);
|
|
|
|
}
|
|
|
|
});
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|