2021-02-22 02:39:04 +00:00
|
|
|
import { Component } from "inferno";
|
|
|
|
import moment from "moment";
|
2021-07-17 20:42:55 +00:00
|
|
|
import { i18n } from "../../i18next";
|
2023-06-16 14:49:23 +00:00
|
|
|
import { capitalizeFirstLetter } from "../../utils";
|
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
|
|
|
}
|
|
|
|
|
|
|
|
export class MomentTime extends Component<MomentTimeProps, any> {
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
|
2023-06-16 14:49:23 +00:00
|
|
|
moment.locale([...i18n.languages]);
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
2021-10-18 01:46:15 +00:00
|
|
|
createdAndModifiedTimes() {
|
2023-06-05 21:31:12 +00:00
|
|
|
const updated = this.props.updated;
|
2023-01-04 16:56:24 +00:00
|
|
|
let line = `${capitalizeFirstLetter(i18n.t("created"))}: ${this.format(
|
2022-06-21 21:42:29 +00:00
|
|
|
this.props.published
|
2023-01-04 16:56:24 +00:00
|
|
|
)}`;
|
|
|
|
if (updated) {
|
|
|
|
line += `\n\n\n${capitalizeFirstLetter(i18n.t("modified"))} ${this.format(
|
|
|
|
updated
|
|
|
|
)}`;
|
|
|
|
}
|
|
|
|
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-01-04 16:56:24 +00:00
|
|
|
{moment.utc(this.props.updated).fromNow(!this.props.showAgo)}
|
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"
|
2022-06-21 21:42:29 +00:00
|
|
|
data-tippy-content={this.format(published)}
|
2020-09-06 16:15:25 +00:00
|
|
|
>
|
2022-06-21 21:42:29 +00:00
|
|
|
{moment.utc(published).fromNow(!this.props.showAgo)}
|
2020-09-06 16:15:25 +00:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
format(input: string): string {
|
2021-02-22 02:39:04 +00:00
|
|
|
return moment.utc(input).local().format("LLLL");
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
}
|