UX: Always use relative age for post notices.

This commit is contained in:
Dan Ungureanu 2019-03-31 17:49:36 +03:00
parent e32af7fb0f
commit d59abff2d8
No known key found for this signature in database
GPG Key ID: 0AA2A00D6ACC8B84
2 changed files with 7 additions and 7 deletions

View File

@ -13,7 +13,7 @@ import {
formatUsername
} from "discourse/lib/utilities";
import hbs from "discourse/widgets/hbs-compiler";
import { relativeAge } from "discourse/lib/formatter";
import { durationTiny } from "discourse/lib/formatter";
function transformWithCallbacks(post) {
let transformed = transformBasicPost(post);
@ -461,12 +461,10 @@ createWidget("post-notice", {
text = I18n.t("post.notice.first", { user });
} else if (attrs.postNoticeType === "returning") {
icon = "far-smile";
const distance = (new Date() - new Date(attrs.postNoticeTime)) / 1000;
text = I18n.t("post.notice.return", {
user,
time: relativeAge(attrs.postNoticeTime, {
format: "tiny",
addAgo: true
})
time: durationTiny(distance, { addAgo: true })
});
}

View File

@ -874,11 +874,13 @@ widgetTest("pm map", {
widgetTest("post notice - with username", {
template: '{{mount-widget widget="post" args=args}}',
beforeEach() {
const date_2d_ago = new Date();
date_2d_ago.setDate(date_2d_ago.getDate() - 2);
this.siteSettings.prioritize_username_in_ux = true;
this.siteSettings.old_post_notice_days = 14;
this.set("args", {
postNoticeType: "returning",
postNoticeTime: new Date(2010, 0, 1),
postNoticeTime: date_2d_ago,
username: "codinghorror",
name: "Jeff",
created_at: new Date()
@ -889,7 +891,7 @@ widgetTest("post notice - with username", {
find(".post-notice.returning-user:not(.old)")
.text()
.trim(),
I18n.t("post.notice.return", { user: "codinghorror", time: "Jan '10" })
I18n.t("post.notice.return", { user: "codinghorror", time: "2d ago" })
);
}
});