forked from fa/breadcrumb-the-shire
- Add icanhazstring/composer-unused as dev dependency for dependency hygiene checks - Add German documentation (docs/) covering architecture, conventions, workflows, and developer checklists - Add API layer (ApiAuth, ApiBootstrap, ApiResponse), audit, scheduler, custom fields, and SSO services - Add Microsoft OIDC SSO, API token management, and user lifecycle features - Add swagger-ui vendor integration and OpenAPI spec - Add production Docker setup and bin/ scripts - Update composer dependencies, config, templates, and frontend assets throughout Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
99 lines
3.0 KiB
JavaScript
99 lines
3.0 KiB
JavaScript
import { warnOnce } from '../core/app-dom.js';
|
|
|
|
const TYPES_WITH_OPTIONS = new Set(['select', 'multiselect']);
|
|
const FILTERABLE_TYPES = new Set(['select', 'multiselect', 'boolean', 'date']);
|
|
const sources = document.querySelectorAll('[data-custom-field-type-source]');
|
|
|
|
const syncOptionsVisibility = (source, target) => {
|
|
const selectedType = String(source.value || '').trim().toLowerCase();
|
|
const showOptions = TYPES_WITH_OPTIONS.has(selectedType);
|
|
|
|
target.hidden = !showOptions;
|
|
|
|
target.querySelectorAll('textarea, input, select').forEach((control) => {
|
|
if (!control.dataset.initialDisabled) {
|
|
control.dataset.initialDisabled = control.hasAttribute('disabled') ? '1' : '0';
|
|
}
|
|
|
|
if (!showOptions) {
|
|
control.setAttribute('disabled', 'disabled');
|
|
return;
|
|
}
|
|
|
|
if (control.dataset.initialDisabled === '1') {
|
|
control.setAttribute('disabled', 'disabled');
|
|
return;
|
|
}
|
|
|
|
control.removeAttribute('disabled');
|
|
});
|
|
};
|
|
|
|
const syncFilterableAvailability = (source, target) => {
|
|
const selectedType = String(source.value || '').trim().toLowerCase();
|
|
const filterableAllowed = FILTERABLE_TYPES.has(selectedType);
|
|
const checkbox = target.querySelector('[data-custom-field-filterable-input]');
|
|
|
|
if (!checkbox) {
|
|
warnOnce('UI_EL_MISSING', 'Missing filterable checkbox in custom field group', {
|
|
module: 'custom-field-options-toggle'
|
|
});
|
|
return;
|
|
}
|
|
|
|
if (!checkbox.dataset.initialDisabled) {
|
|
checkbox.dataset.initialDisabled = checkbox.hasAttribute('disabled') ? '1' : '0';
|
|
}
|
|
|
|
if (!filterableAllowed) {
|
|
checkbox.checked = false;
|
|
checkbox.setAttribute('disabled', 'disabled');
|
|
target.setAttribute('aria-disabled', 'true');
|
|
return;
|
|
}
|
|
|
|
target.removeAttribute('aria-disabled');
|
|
if (checkbox.dataset.initialDisabled === '1') {
|
|
checkbox.setAttribute('disabled', 'disabled');
|
|
return;
|
|
}
|
|
|
|
checkbox.removeAttribute('disabled');
|
|
};
|
|
|
|
sources.forEach((source) => {
|
|
const group = String(source.dataset.customFieldGroup || '').trim();
|
|
if (!group) {
|
|
warnOnce('UI_EL_MISSING', 'Missing data-custom-field-group', { module: 'custom-field-options-toggle' });
|
|
return;
|
|
}
|
|
|
|
const target = document.querySelector(
|
|
`[data-custom-field-options-target][data-custom-field-group="${group}"]`
|
|
);
|
|
if (!target) {
|
|
warnOnce('UI_EL_MISSING', `Missing custom field options target for group: ${group}`, {
|
|
module: 'custom-field-options-toggle'
|
|
});
|
|
return;
|
|
}
|
|
|
|
const filterableTarget = document.querySelector(
|
|
`[data-custom-field-filterable-target][data-custom-field-group="${group}"]`
|
|
);
|
|
if (!filterableTarget) {
|
|
warnOnce('UI_EL_MISSING', `Missing custom field filterable target for group: ${group}`, {
|
|
module: 'custom-field-options-toggle'
|
|
});
|
|
return;
|
|
}
|
|
|
|
source.addEventListener('change', () => {
|
|
syncOptionsVisibility(source, target);
|
|
syncFilterableAvailability(source, filterableTarget);
|
|
});
|
|
|
|
syncOptionsVisibility(source, target);
|
|
syncFilterableAvailability(source, filterableTarget);
|
|
});
|