2023-02-19 05:06:14 +01:00
|
|
|
import {hideElem, showElem} from '../utils/dom.js';
|
2022-01-28 22:00:11 +01:00
|
|
|
|
2021-10-16 19:28:04 +02:00
|
|
|
export function initUserSettings() {
|
2024-02-16 16:52:50 +01:00
|
|
|
if (document.querySelectorAll('.user.settings.profile').length === 0) return;
|
|
|
|
|
|
|
|
const usernameInput = document.getElementById('username');
|
|
|
|
if (!usernameInput) return;
|
|
|
|
usernameInput.addEventListener('input', function () {
|
|
|
|
const prompt = document.getElementById('name-change-prompt');
|
|
|
|
const promptRedirect = document.getElementById('name-change-redirect-prompt');
|
|
|
|
if (this.value.toLowerCase() !== this.getAttribute('data-name').toLowerCase()) {
|
|
|
|
showElem(prompt);
|
|
|
|
showElem(promptRedirect);
|
|
|
|
} else {
|
|
|
|
hideElem(prompt);
|
|
|
|
hideElem(promptRedirect);
|
|
|
|
}
|
|
|
|
});
|
2021-10-16 19:28:04 +02:00
|
|
|
}
|