Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
22 Zeilen
668 B
JavaScript
22 Zeilen
668 B
JavaScript
import { registerUnbound } from "discourse-common/lib/helpers";
|
|
import { longDate, number, relativeAge } from "discourse/lib/formatter";
|
|
|
|
export default registerUnbound("date-node", function (dt) {
|
|
if (typeof dt === "string") {
|
|
dt = new Date(dt);
|
|
}
|
|
if (dt) {
|
|
const attributes = {
|
|
title: longDate(dt),
|
|
"data-time": dt.getTime(),
|
|
"data-format": "tiny",
|
|
};
|
|
|
|
const finalString = `<span class="relative-date" title="${
|
|
attributes["title"]
|
|
}" data-time="${attributes["data-time"]}" data-format="${
|
|
attributes["data-format"]
|
|
}">${relativeAge(dt)}</span>`;
|
|
return new Handlebars.SafeString(finalString);
|
|
}
|
|
});
|