Slightly better time display
authorBenjamin Auder <benjamin.auder@somewhere>
Tue, 3 Mar 2020 23:26:43 +0000 (00:26 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Tue, 3 Mar 2020 23:26:43 +0000 (00:26 +0100)
client/src/utils/datetime.js

index 75e85d7..c4bbea9 100644 (file)
@@ -36,15 +36,16 @@ export function ppt(t) {
   const minutes = Math.floor((t % hourInSeconds) / 60);
   const seconds = Math.floor(t % 60);
   let res = "";
+  // NOTE: 3 days limit is rather arbitrary
+  if (days >= 3 && hours >= 12) days++;
   if (days > 0) res += days + "d ";
-  if (days <= 3 && hours > 0)
-    //NOTE: 3 is arbitrary
-    res += hours + "h ";
+  if (days < 3 && hours > 0) res += hours + "h ";
   if (days == 0 && minutes > 0)
     res += hours > 0 ? padDigits(minutes) + "m " : minutes + ":";
   if (days == 0 && hours == 0) {
     res += padDigits(seconds);
-    if (minutes == 0) res += "s"; //seconds indicator, since this is the only number printed
+    // Seconds indicator, since this is the only number printed:
+    if (minutes == 0) res += "s";
   }
   return res.trim(); //remove potential last space
 }