2023-02-19 04:06:14 +00:00
|
|
|
import {hideElem, showElem} from '../utils/dom.js';
|
2022-01-28 21:00:11 +00:00
|
|
|
|
2023-09-26 05:56:20 +00:00
|
|
|
function onPronounsDropdownUpdate() {
|
|
|
|
const pronounsCustom = document.getElementById('pronouns-custom');
|
2023-09-26 06:21:52 +00:00
|
|
|
const pronounsDropdown = document.getElementById('pronouns-dropdown');
|
|
|
|
const pronounsInput = pronounsDropdown.querySelector('input');
|
2024-02-26 19:43:04 +00:00
|
|
|
// must be kept in sync with `routers/web/user/setting/profile.go`
|
2023-09-26 05:56:20 +00:00
|
|
|
const isCustom = !(
|
2023-09-26 06:21:52 +00:00
|
|
|
pronounsInput.value === '' ||
|
2023-09-26 05:56:20 +00:00
|
|
|
pronounsInput.value === 'he/him' ||
|
|
|
|
pronounsInput.value === 'she/her' ||
|
|
|
|
pronounsInput.value === 'they/them' ||
|
2023-09-26 17:54:18 +00:00
|
|
|
pronounsInput.value === 'it/its' ||
|
2024-02-24 18:24:12 +00:00
|
|
|
pronounsInput.value === 'any pronouns'
|
2023-09-26 05:56:20 +00:00
|
|
|
);
|
|
|
|
if (isCustom) {
|
2023-09-26 06:21:52 +00:00
|
|
|
if (pronounsInput.value === '!') {
|
|
|
|
pronounsCustom.value = '';
|
|
|
|
} else {
|
|
|
|
pronounsCustom.value = pronounsInput.value;
|
|
|
|
}
|
2023-09-26 05:56:20 +00:00
|
|
|
pronounsCustom.style.display = '';
|
|
|
|
} else {
|
|
|
|
pronounsCustom.style.display = 'none';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function onPronounsCustomUpdate() {
|
|
|
|
const pronounsCustom = document.getElementById('pronouns-custom');
|
|
|
|
const pronounsInput = document.querySelector('#pronouns-dropdown input');
|
|
|
|
pronounsInput.value = pronounsCustom.value;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
});
|
2023-09-26 05:56:20 +00:00
|
|
|
|
|
|
|
const pronounsDropdown = document.getElementById('pronouns-dropdown');
|
|
|
|
const pronounsCustom = document.getElementById('pronouns-custom');
|
|
|
|
const pronounsInput = pronounsDropdown.querySelector('input');
|
2024-02-26 19:43:04 +00:00
|
|
|
|
|
|
|
// If JS is disabled, the page will show the custom input, as the dropdown requires JS to work.
|
|
|
|
// JS progressively enhances the input by adding a dropdown, but it works regardless.
|
2023-09-26 05:56:20 +00:00
|
|
|
pronounsCustom.removeAttribute('name');
|
2024-02-26 19:47:05 +00:00
|
|
|
pronounsInput.setAttribute('name', 'pronouns');
|
2023-09-26 05:56:20 +00:00
|
|
|
pronounsDropdown.style.display = '';
|
2024-02-26 19:43:04 +00:00
|
|
|
|
2023-09-26 05:56:20 +00:00
|
|
|
onPronounsDropdownUpdate();
|
|
|
|
pronounsInput.addEventListener('change', onPronounsDropdownUpdate);
|
|
|
|
pronounsCustom.addEventListener('input', onPronounsCustomUpdate);
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|