Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c4a7150f41 | |||
| 993b3aa774 | |||
| a03612dc9c | |||
| b525f37862 | |||
| 1b477c24da | |||
| 85b669d214 |
@@ -1,14 +1,19 @@
|
|||||||
<div id="eventfilters" data-eventlist-id="{{ targetEventListId|default('eventlist')|e('html_attr') }}">
|
<div id="eventfilters" data-eventlist-id="{{ targetEventListId|default('eventlist')|e('html_attr') }}">
|
||||||
<button type="button" data-filter-tag="all" class="active">Alle</button>
|
<div class="select-filters">
|
||||||
|
<div class="widget-select category">
|
||||||
|
<label for="tag-filter" class="visually-hidden">Kategorie wählen</label>
|
||||||
|
<select id="tag-filter">
|
||||||
|
<option value="all" data-placeholder="true">Kategorie wählen</option>
|
||||||
{% for tag in tagButtons|default([]) %}
|
{% for tag in tagButtons|default([]) %}
|
||||||
<button type="button" data-filter-tag="{{ tag.id }}">{{ tag.title }} ({{ tag.count }})</button>
|
<option value="tag-{{ tag.id }}">{{ tag.title }} ({{ tag.count }})</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="widget-select places">
|
<div class="widget-select places">
|
||||||
<label for="location-filter">Orte:</label>
|
<label for="location-filter" class="visually-hidden">Ort wählen</label>
|
||||||
<select id="location-filter">
|
<select id="location-filter">
|
||||||
<option value="all">Orte</option>
|
<option value="all" data-placeholder="true">Ort wählen</option>
|
||||||
{% for location in locations|default([]) %}
|
{% for location in locations|default([]) %}
|
||||||
<option value="location-{{ location.id }}">{{ location.title }} ({{ location.count }})</option>
|
<option value="location-{{ location.id }}">{{ location.title }} ({{ location.count }})</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
@@ -16,17 +21,34 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="widget-select org">
|
<div class="widget-select org">
|
||||||
<label for="org-filter">Veranstalter:</label>
|
<label for="org-filter" class="visually-hidden">Veranstalter wählen</label>
|
||||||
<select id="org-filter">
|
<select id="org-filter">
|
||||||
<option value="all">Veranstalter</option>
|
<option value="all" data-placeholder="true">Veranstalter wählen</option>
|
||||||
{% for organization in organizations|default([]) %}
|
{% for organization in organizations|default([]) %}
|
||||||
<option value="org-{{ organization.id }}">{{ organization.title }} ({{ organization.count }})</option>
|
<option value="org-{{ organization.id }}">{{ organization.title }} ({{ organization.count }})</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button type="button" id="eventfilter-reset" class="eventfilter-reset" hidden>Filter zurücksetzen</button>
|
||||||
|
|
||||||
|
<p id="eventfilter-status" class="visually-hidden" aria-live="polite"></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
.visually-hidden {
|
||||||
|
position: absolute;
|
||||||
|
width: 1px;
|
||||||
|
height: 1px;
|
||||||
|
padding: 0;
|
||||||
|
margin: -1px;
|
||||||
|
overflow: hidden;
|
||||||
|
clip: rect(0, 0, 0, 0);
|
||||||
|
white-space: nowrap;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.event-filter-target-list {
|
.event-filter-target-list {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
|
||||||
@@ -46,13 +68,24 @@
|
|||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#eventfilters .active,
|
#eventfilters .widget-select.active .ss-main {
|
||||||
#eventfilters select.active {
|
|
||||||
outline: 2px solid currentColor;
|
outline: 2px solid currentColor;
|
||||||
outline-offset: 2px;
|
outline-offset: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#eventfilters .ss-main:focus-visible {
|
||||||
|
outline: 2px solid currentColor;
|
||||||
|
outline-offset: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#eventfilters .eventfilter-reset[hidden] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/slim-select@3/dist/slimselect.css">
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/slim-select@3/dist/slimselect.min.js"></script>
|
||||||
|
|
||||||
<script type="module">
|
<script type="module">
|
||||||
const filters = document.getElementById('eventfilters');
|
const filters = document.getElementById('eventfilters');
|
||||||
|
|
||||||
@@ -70,13 +103,61 @@
|
|||||||
list?.classList.add('event-filter-target-list');
|
list?.classList.add('event-filter-target-list');
|
||||||
|
|
||||||
const events = list ? Array.from(list.querySelectorAll(':scope > .event')) : [];
|
const events = list ? Array.from(list.querySelectorAll(':scope > .event')) : [];
|
||||||
const tagButtons = Array.from(filters.querySelectorAll('button[data-filter-tag]'));
|
const tagSelect = filters.querySelector('#tag-filter');
|
||||||
const locationSelect = filters.querySelector('#location-filter');
|
const locationSelect = filters.querySelector('#location-filter');
|
||||||
const orgSelect = filters.querySelector('#org-filter');
|
const orgSelect = filters.querySelector('#org-filter');
|
||||||
|
const tagWidget = tagSelect?.closest('.widget-select');
|
||||||
|
const locationWidget = locationSelect?.closest('.widget-select');
|
||||||
|
const orgWidget = orgSelect?.closest('.widget-select');
|
||||||
|
const resetButton = filters.querySelector('#eventfilter-reset');
|
||||||
|
const status = filters.querySelector('#eventfilter-status');
|
||||||
|
|
||||||
const animationMs = 220;
|
const animationMs = 220;
|
||||||
let hideTimers = new WeakMap();
|
let hideTimers = new WeakMap();
|
||||||
let currentFilter = { type: 'tag', value: 'all' };
|
let currentFilter = { type: 'all', value: 'all' };
|
||||||
|
let suppressedChangeEvents = 0;
|
||||||
|
|
||||||
|
const initSlimSelect = (selectElement) => {
|
||||||
|
if (!selectElement || 'undefined' === typeof window.SlimSelect) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new window.SlimSelect({
|
||||||
|
select: selectElement,
|
||||||
|
settings: {
|
||||||
|
showSearch: false,
|
||||||
|
allowDeselect: false,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const tagSlim = initSlimSelect(tagSelect);
|
||||||
|
const locationSlim = initSlimSelect(locationSelect);
|
||||||
|
const orgSlim = initSlimSelect(orgSelect);
|
||||||
|
|
||||||
|
const setSelectValue = (selectElement, slimInstance, value) => {
|
||||||
|
if (!selectElement) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (selectElement.value === value) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
suppressedChangeEvents += 1;
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (slimInstance) {
|
||||||
|
slimInstance.setSelected(value);
|
||||||
|
} else {
|
||||||
|
selectElement.value = value;
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
queueMicrotask(() => {
|
||||||
|
suppressedChangeEvents = Math.max(0, suppressedChangeEvents - 1);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const clearHideTimer = (eventItem) => {
|
const clearHideTimer = (eventItem) => {
|
||||||
const timer = hideTimers.get(eventItem);
|
const timer = hideTimers.get(eventItem);
|
||||||
@@ -109,16 +190,16 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
const setActiveControl = ({ type, value }) => {
|
const setActiveControl = ({ type, value }) => {
|
||||||
tagButtons.forEach((button) => {
|
const hasActiveTag = type === 'tag' && value !== 'all';
|
||||||
button.classList.toggle('active', type === 'tag' && button.dataset.filterTag === value);
|
const hasActiveLocation = type === 'location' && value !== 'all';
|
||||||
});
|
const hasActiveOrg = type === 'org' && value !== 'all';
|
||||||
|
|
||||||
if (locationSelect) {
|
tagWidget?.classList.toggle('active', hasActiveTag);
|
||||||
locationSelect.classList.toggle('active', type === 'location');
|
locationWidget?.classList.toggle('active', hasActiveLocation);
|
||||||
}
|
orgWidget?.classList.toggle('active', hasActiveOrg);
|
||||||
|
|
||||||
if (orgSelect) {
|
if (resetButton) {
|
||||||
orgSelect.classList.toggle('active', type === 'org');
|
resetButton.hidden = !(hasActiveTag || hasActiveLocation || hasActiveOrg);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -144,7 +225,37 @@
|
|||||||
return parseIdList(eventItem.dataset.org).includes(filterState.value);
|
return parseIdList(eventItem.dataset.org).includes(filterState.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (filterState.type === 'all') {
|
||||||
return true;
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
|
const updateStatus = (filterState) => {
|
||||||
|
if (!status) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const visibleCount = events.filter((eventItem) => !eventItem.hidden).length;
|
||||||
|
let filterText = 'alle';
|
||||||
|
|
||||||
|
if (filterState.type === 'tag' && tagSelect) {
|
||||||
|
const option = tagSelect.options[tagSelect.selectedIndex];
|
||||||
|
filterText = option ? option.textContent.trim() : 'Kategorie wählen';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (filterState.type === 'location' && locationSelect) {
|
||||||
|
const option = locationSelect.options[locationSelect.selectedIndex];
|
||||||
|
filterText = option ? option.textContent.trim() : 'Ort';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (filterState.type === 'org' && orgSelect) {
|
||||||
|
const option = orgSelect.options[orgSelect.selectedIndex];
|
||||||
|
filterText = option ? option.textContent.trim() : 'Veranstalter';
|
||||||
|
}
|
||||||
|
|
||||||
|
status.textContent = `${visibleCount} Veranstaltungen angezeigt, Filter: ${filterText}.`;
|
||||||
};
|
};
|
||||||
|
|
||||||
const applyFilter = (filterState) => {
|
const applyFilter = (filterState) => {
|
||||||
@@ -158,49 +269,68 @@
|
|||||||
hideEvent(eventItem);
|
hideEvent(eventItem);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
updateStatus(filterState);
|
||||||
};
|
};
|
||||||
|
|
||||||
tagButtons.forEach((button) => {
|
tagSelect?.addEventListener('change', () => {
|
||||||
button.addEventListener('click', () => {
|
if (suppressedChangeEvents > 0) {
|
||||||
if (locationSelect) {
|
return;
|
||||||
locationSelect.value = 'all';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (orgSelect) {
|
const selectedValue = tagSelect.value;
|
||||||
orgSelect.value = 'all';
|
|
||||||
}
|
|
||||||
|
|
||||||
applyFilter({ type: 'tag', value: button.dataset.filterTag ?? 'all' });
|
setSelectValue(locationSelect, locationSlim, 'all');
|
||||||
});
|
setSelectValue(orgSelect, orgSlim, 'all');
|
||||||
});
|
|
||||||
|
|
||||||
locationSelect?.addEventListener('change', () => {
|
|
||||||
const selectedValue = locationSelect.value;
|
|
||||||
|
|
||||||
if (orgSelect) {
|
|
||||||
orgSelect.value = 'all';
|
|
||||||
}
|
|
||||||
|
|
||||||
applyFilter(
|
applyFilter(
|
||||||
selectedValue === 'all'
|
selectedValue === 'all'
|
||||||
? { type: 'tag', value: 'all' }
|
? { type: 'all', value: 'all' }
|
||||||
|
: { type: 'tag', value: selectedValue.replace('tag-', '') },
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
locationSelect?.addEventListener('change', () => {
|
||||||
|
if (suppressedChangeEvents > 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const selectedValue = locationSelect.value;
|
||||||
|
|
||||||
|
setSelectValue(tagSelect, tagSlim, 'all');
|
||||||
|
setSelectValue(orgSelect, orgSlim, 'all');
|
||||||
|
|
||||||
|
applyFilter(
|
||||||
|
selectedValue === 'all'
|
||||||
|
? { type: 'all', value: 'all' }
|
||||||
: { type: 'location', value: selectedValue.replace('location-', '') },
|
: { type: 'location', value: selectedValue.replace('location-', '') },
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
orgSelect?.addEventListener('change', () => {
|
orgSelect?.addEventListener('change', () => {
|
||||||
|
if (suppressedChangeEvents > 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const selectedValue = orgSelect.value;
|
const selectedValue = orgSelect.value;
|
||||||
|
|
||||||
if (locationSelect) {
|
setSelectValue(tagSelect, tagSlim, 'all');
|
||||||
locationSelect.value = 'all';
|
setSelectValue(locationSelect, locationSlim, 'all');
|
||||||
}
|
|
||||||
|
|
||||||
applyFilter(
|
applyFilter(
|
||||||
selectedValue === 'all'
|
selectedValue === 'all'
|
||||||
? { type: 'tag', value: 'all' }
|
? { type: 'all', value: 'all' }
|
||||||
: { type: 'org', value: selectedValue.replace('org-', '') },
|
: { type: 'org', value: selectedValue.replace('org-', '') },
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
resetButton?.addEventListener('click', () => {
|
||||||
|
setSelectValue(tagSelect, tagSlim, 'all');
|
||||||
|
setSelectValue(locationSelect, locationSlim, 'all');
|
||||||
|
setSelectValue(orgSelect, orgSlim, 'all');
|
||||||
|
|
||||||
|
applyFilter({ type: 'all', value: 'all' });
|
||||||
|
});
|
||||||
|
|
||||||
applyFilter(currentFilter);
|
applyFilter(currentFilter);
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user