ui: Show "now" if the pretty time difference is less than 500ms

This commit is contained in:
TwiN 2022-11-01 00:44:41 -04:00
parent e13730f119
commit 8f9eca51c0

View File

@ -2,6 +2,9 @@ export const helper = {
methods: {
generatePrettyTimeAgo(t) {
let differenceInMs = new Date().getTime() - new Date(t).getTime();
if (differenceInMs < 500) {
return "now";
}
if (differenceInMs > 3 * 86400000) { // If it was more than 3 days ago, we'll display the number of days ago
let days = (differenceInMs / 86400000).toFixed(0);
return days + " day" + (days !== "1" ? "s" : "") + " ago";