import {hideElem, queryElems, showElem} from '../utils/dom.ts'; import {initAvatarUploaderWithCropper} from './comp/Cropper.ts'; export function initUserSettings() { if (!document.querySelector('.user.settings.profile')) return; queryElems(document, '.avatar-file-with-cropper', initAvatarUploaderWithCropper); const usernameInput = document.querySelector('#username'); if (!usernameInput) return; usernameInput.addEventListener('input', function () { const prompt = document.querySelector('#name-change-prompt'); const promptRedirect = document.querySelector('#name-change-redirect-prompt'); if (this.value.toLowerCase() !== this.getAttribute('data-name').toLowerCase()) { showElem(prompt); showElem(promptRedirect); } else { hideElem(prompt); hideElem(promptRedirect); } }); }