adapted sidebar for tasks module

This commit is contained in:
2026-05-07 15:41:21 +02:00
parent fc1df1effb
commit 03547c2bac
2 changed files with 102 additions and 67 deletions

View File

@@ -898,24 +898,24 @@ function updateStatistics() {
const total = contributionsData.length;
// Counts per Category
const counts = {};
contributionsData.forEach(function (f) {
const cat = f.properties.category;
counts[cat] = (counts[cat] || 0) + 1;
});
// const counts = {};
// contributionsData.forEach(function (f) {
// const cat = f.properties.category;
// counts[cat] = (counts[cat] || 0) + 1;
// });
let html = '<p style="font-size:0.9rem;"><strong>' + total + '</strong> Beiträge insgesamt</p>';
let html = '<p style="font-size:0.8rem;"><strong>' + total + '</strong> Hinweise insgesamt</p>';
for (const key in CATEGORIES) {
const cat = CATEGORIES[key];
const count = counts[key] || 0;
if (count > 0) {
html += '<div style="display:flex;align-items:center;gap:8px;margin:4px 0;font-size:0.85rem;">' +
categoryIcon(cat) + ' ' +
cat.label + ': ' + count +
'</div>';
}
}
// for (const key in CATEGORIES) {
// const cat = CATEGORIES[key];
// const count = counts[key] || 0;
// if (count > 0) {
// html += '<div style="display:flex;align-items:center;gap:8px;margin:4px 0;font-size:0.8rem;">' +
// categoryIcon(cat) + ' ' +
// cat.label + ': ' + count +
// '</div>';
// }
// }
container.innerHTML = html;
}