mirror of
https://github.com/go-gitea/gitea.git
synced 2025-02-21 10:01:10 +08:00
23 lines
856 B
TypeScript
23 lines
856 B
TypeScript
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<HTMLInputElement>('#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);
|
|
}
|
|
});
|
|
}
|