From 5fe65e41fdf7301647206c770e5e8d93a51354b6 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 31 May 2021 12:02:16 +0200 Subject: sort --- cli.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'cli.js') diff --git a/cli.js b/cli.js index a248c6f..01eeb67 100755 --- a/cli.js +++ b/cli.js @@ -144,6 +144,8 @@ if ((idx = params.indexOf("-r")) > -1) { if (y10progs[user.id] && y10progs[user.id].length > 0) comments = [...comments, ...y10progs[user.id].map((comment) => ({ comment }))]; + comments = comments.sort((a, b) => a.comment.length - b.comment.length); + // Comments contents intents indents events if (comments && comments.length > 0) { textex += @@ -284,7 +286,10 @@ if ((idx = params.indexOf("-r")) > -1) { let flip = 1; for (const prof of profs) { const [t, a, p, s] = prof.split(";").map(sanitize); - textex += `\\def\\profname{${t}}\\def\\profabi{${a}}\\def\\profprof{${p}}\\def\\profsecret{${s}}\\def\\profnum{${flip}}\\def\\proflast{${+(flip % 3 === 0)}}\\teacherprofile\n`; + textex += `\\def\\profname{${t}}\\def\\profabi{${a}}\\def\\profprof{${p}}\\def\\profsecret{${s}}\\def\\profnum{${flip}}\\def\\proflast{${+( + flip % 3 === + 0 + )}}\\teacherprofile\n`; if (flip % 3 === 0) { textex += "\\clearpage\n"; } -- cgit v1.2.3