aboutsummaryrefslogtreecommitdiff
path: root/cli.js
diff options
context:
space:
mode:
authorMarvin Borner2021-05-31 12:02:16 +0200
committerMarvin Borner2021-05-31 12:02:16 +0200
commit5fe65e41fdf7301647206c770e5e8d93a51354b6 (patch)
tree9ae4b94bc74137cde374a336d1646acf84d62221 /cli.js
parent6644c92863a6d3cf57bedde42e6c64d4989790fd (diff)
sort
Diffstat (limited to 'cli.js')
-rwxr-xr-xcli.js7
1 files changed, 6 insertions, 1 deletions
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";
}