From 3db332b82530784501389bd3f8d1b8e800241a3a Mon Sep 17 00:00:00 2001 From: LarsVomMars Date: Sat, 6 Feb 2021 14:34:49 +0100 Subject: Wow! So cool! Amazing! --- admin/public/prediction.js | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) (limited to 'admin/public/prediction.js') diff --git a/admin/public/prediction.js b/admin/public/prediction.js index 66afb06..914f910 100644 --- a/admin/public/prediction.js +++ b/admin/public/prediction.js @@ -4,8 +4,29 @@ fetch("api/prediction") .then((r) => r.json()) .then((r) => { r.forEach((d) => { - const elem = document.createElement("li"); - elem.innerText = `${d.uname} ${d.umid || ""} ${d.usur}: ${d.tname} ${d.tmid || ""} ${d.tsur}`; - list.appendChild(elem); + const teacherList = list.querySelector(`div[data-teacher="${d.tid}"]`); + if (teacherList) { + const ul = teacherList.querySelector("ul"); + addLI(d, ul); + } else { + const div = document.createElement("div"); + div.dataset.teacher = `${d.tid}`; + const h3 = document.createElement("h3"); + const email = `${san(d.tname)}.${san(d.tsur)}@rbs-ulm.de`; + h3.textContent = `${d.tname} ${d.tsur}: ${email}`; + const ul = document.createElement("ul"); + addLI(d, ul); + div.append(h3, ul); + list.appendChild(div); + } }); }); + +function addLI(d, ul) { + const li = document.createElement("li"); + li.textContent = `${d.uname} ${d.umid || ""} ${d.usur} (${d.class})`; + ul.appendChild(li); +} + +const san = (name) => + name.toLowerCase().replace(/ß/g, "ss").replace(/ä/g, "ae").replace(/ü/g, "ue").replace(/ö/g, "oe"); -- cgit v1.2.3