From aa3bf6f1094b0aff43a0784a591d322984d1d718 Mon Sep 17 00:00:00 2001 From: LarsVomMars Date: Wed, 7 Oct 2020 13:25:40 +0200 Subject: New sort --- quotes/public/script.js | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'quotes') diff --git a/quotes/public/script.js b/quotes/public/script.js index 5f40a27..55eeb5f 100644 --- a/quotes/public/script.js +++ b/quotes/public/script.js @@ -1,14 +1,19 @@ const dropdown = document.getElementById("author"); +const classes = ["TGM13.1", "TGM13.2", "TGTM13.1", "TGI13.1", "TGI13.2", "Lehrer"]; dropdown.insertAdjacentHTML("beforeend", ''); +dropdown.insertAdjacentHTML("beforeend", ``); function appendOption(response) { - response.forEach((elem) => { + response.forEach((elem, i) => { dropdown.insertAdjacentHTML( "beforeend", - ``, + (response[i - 1 < 0 ? 0 : i - 1]["class_id"] !== elem["class_id"] + ? `` + : "") + + ``, ); }); } @@ -44,7 +49,6 @@ fetch("api/list") .then((response) => response.json()) .then((response) => appendQuote(response)); -const classes = ["TGI13.1", "TGI13.2", "TGM13.1", "TGM13.2", "TGTM13.1", "teacher"]; classes.forEach((clazz) => { document.getElementById("open_" + clazz).addEventListener("click", () => { const ul = document.getElementById(clazz); -- cgit v1.2.3