2021-10-16 17:28:04 +00:00
|
|
|
import {initCompLabelEdit} from './comp/LabelEdit.js';
|
2023-04-17 15:35:57 +00:00
|
|
|
import {toggleElem} from '../utils/dom.js';
|
2021-10-16 17:28:04 +00:00
|
|
|
|
|
|
|
export function initCommonOrganization() {
|
2024-02-16 15:48:01 +00:00
|
|
|
if (!document.querySelectorAll('.organization').length) {
|
2021-10-16 17:28:04 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-02-16 16:03:52 +00:00
|
|
|
document.querySelector('.organization.settings.options #org_name')?.addEventListener('input', function () {
|
2024-02-16 15:48:01 +00:00
|
|
|
const nameChanged = this.value.toLowerCase() !== this.getAttribute('data-org-name').toLowerCase();
|
2023-04-17 15:35:57 +00:00
|
|
|
toggleElem('#org-name-change-prompt', nameChanged);
|
|
|
|
});
|
2021-10-16 17:28:04 +00:00
|
|
|
|
|
|
|
// Labels
|
|
|
|
initCompLabelEdit('.organization.settings.labels');
|
|
|
|
}
|