2023-06-23 14:33:07 +00:00
|
|
|
import { capitalizeFirstLetter, formatPastDate } from "@utils/helpers";
|
2023-06-22 23:33:02 +00:00
|
|
|
import format from "date-fns/format";
|
|
|
|
import parseISO from "date-fns/parseISO";
|
2021-02-22 02:39:04 +00:00
|
|
|
import { Component } from "inferno";
|
2023-06-22 00:54:35 +00:00
|
|
|
import { I18NextService } from "../../services";
|
2021-02-22 02:39:04 +00:00
|
|
|
import { Icon } from "./icon";
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
interface MomentTimeProps {
|
2022-06-21 21:42:29 +00:00
|
|
|
published: string;
|
2023-01-04 16:56:24 +00:00
|
|
|
updated?: string;
|
2020-09-06 16:15:25 +00:00
|
|
|
showAgo?: boolean;
|
2021-02-02 17:26:08 +00:00
|
|
|
ignoreUpdated?: boolean;
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
2023-06-22 23:33:02 +00:00
|
|
|
function momentFormat(input: string) {
|
|
|
|
return format(parseISO(input), "PPPPpppp");
|
|
|
|
}
|
|
|
|
|
2020-09-06 16:15:25 +00:00
|
|
|
export class MomentTime extends Component<MomentTimeProps, any> {
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
}
|
|
|
|
|
2021-10-18 01:46:15 +00:00
|
|
|
createdAndModifiedTimes() {
|
2023-06-05 21:31:12 +00:00
|
|
|
const updated = this.props.updated;
|
2023-06-22 00:54:35 +00:00
|
|
|
let line = `${capitalizeFirstLetter(
|
|
|
|
I18NextService.i18n.t("created")
|
2023-06-22 23:33:02 +00:00
|
|
|
)}: ${momentFormat(this.props.published)}`;
|
2023-01-04 16:56:24 +00:00
|
|
|
if (updated) {
|
2023-06-22 00:54:35 +00:00
|
|
|
line += `\n\n\n${capitalizeFirstLetter(
|
|
|
|
I18NextService.i18n.t("modified")
|
2023-06-22 23:33:02 +00:00
|
|
|
)} ${momentFormat(updated)}`;
|
2023-01-04 16:56:24 +00:00
|
|
|
}
|
|
|
|
return line;
|
2021-10-18 01:46:15 +00:00
|
|
|
}
|
|
|
|
|
2020-09-06 16:15:25 +00:00
|
|
|
render() {
|
2023-01-04 16:56:24 +00:00
|
|
|
if (!this.props.ignoreUpdated && this.props.updated) {
|
2020-09-06 16:15:25 +00:00
|
|
|
return (
|
|
|
|
<span
|
2021-10-18 01:46:15 +00:00
|
|
|
data-tippy-content={this.createdAndModifiedTimes()}
|
2023-06-20 18:46:16 +00:00
|
|
|
className="moment-time font-italics pointer unselectable"
|
2020-09-06 16:15:25 +00:00
|
|
|
>
|
2023-06-20 12:01:29 +00:00
|
|
|
<Icon icon="edit-2" classes="icon-inline me-1" />
|
2023-06-23 14:33:07 +00:00
|
|
|
{formatPastDate(this.props.updated)}
|
2020-09-06 16:15:25 +00:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
} else {
|
2023-06-05 21:31:12 +00:00
|
|
|
const published = this.props.published;
|
2020-09-06 16:15:25 +00:00
|
|
|
return (
|
|
|
|
<span
|
2023-06-20 18:46:16 +00:00
|
|
|
className="moment-time pointer unselectable"
|
2023-06-22 23:33:02 +00:00
|
|
|
data-tippy-content={momentFormat(published)}
|
2020-09-06 16:15:25 +00:00
|
|
|
>
|
2023-06-23 14:33:07 +00:00
|
|
|
{formatPastDate(published)}
|
2020-09-06 16:15:25 +00:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|