Filter des Dropdowns angepasst

This commit is contained in:
2026-04-27 16:03:49 +02:00
parent 5396010b53
commit 707bc1ce02
+22 -13
View File
@@ -1,8 +1,8 @@
// ==UserScript== // ==UserScript==
// @name academyFIVE::AddSelectBox // @name academyFIVE::AddSelectBox
// @namespace dakp/academyfive // @namespace dakp/academyfive
// @version 2026.04.001 // @version 2026.04.002
// @description Füge Selectbox für Kohorten hinzu // @description Füge Selectbox für Kohorten/Planungsgruppen hinzu
// @author Dims Akpan // @author Dims Akpan
// @match https://a5.fhdw-hannover.de/* // @match https://a5.fhdw-hannover.de/*
// @match https://a5.fhdw.de/* // @match https://a5.fhdw.de/*
@@ -15,20 +15,29 @@
(function() { (function() {
'use strict'; 'use strict';
function getDropdownSelector() {
const url = window.location.href;
if (url.includes('/course/planning-group/list')) {
return 'select[name="cohort-ids[]"]';
}
if (url.includes('/course/list')) {
return 'select[name="planningGroupIds[]"]';
}
return null;
}
function addSelectButtons() { function addSelectButtons() {
// Prüfe ob wir auf der richtigen Seite sind const selector = getDropdownSelector();
if (!window.location.href.includes('/course/list') && !window.location.href.includes('/course/planning-group/list')) { if (!selector) return;
const dropdown = document.querySelector(selector);
if (!dropdown) {
console.log('Dropdown nicht gefunden:', selector);
return; return;
} }
const cohortsDropdown = document.querySelector('select[name="cohort-ids[]"]'); const dropdownContainer = dropdown.closest('.btn-group.bootstrap-select');
if (!cohortsDropdown) {
console.log('Kohorten-Dropdown nicht gefunden');
return;
}
const dropdownContainer = cohortsDropdown.closest('.btn-group.bootstrap-select');
const searchBox = dropdownContainer?.querySelector('.bs-searchbox'); const searchBox = dropdownContainer?.querySelector('.bs-searchbox');
if (!searchBox) { if (!searchBox) {
@@ -41,7 +50,7 @@
console.log('Select/Deselect Buttons bereits vorhanden'); console.log('Select/Deselect Buttons bereits vorhanden');
return; return;
} }
// Füge die Buttons hinzu
const actionsBox = document.createElement('div'); const actionsBox = document.createElement('div');
actionsBox.className = 'bs-actionsbox'; actionsBox.className = 'bs-actionsbox';
actionsBox.innerHTML = ` actionsBox.innerHTML = `