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";
|
|
|
|
import { capitalizeFirstLetter, getMomentLanguage } from "../../utils";
|
2021-02-22 02:39:04 +00:00
|
|
|
import { Icon } from "./icon";
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
interface MomentTimeProps {
|
|
|
|
data: {
|
|
|
|
published?: string;
|
|
|
|
when_?: string;
|
|
|
|
updated?: string;
|
|
|
|
};
|
|
|
|
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);
|
|
|
|
|
|
|
|
let lang = getMomentLanguage();
|
|
|
|
|
|
|
|
moment.locale(lang);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2021-02-02 17:26:08 +00:00
|
|
|
if (!this.props.ignoreUpdated && this.props.data.updated) {
|
2020-09-06 16:15:25 +00:00
|
|
|
return (
|
|
|
|
<span
|
|
|
|
data-tippy-content={`${capitalizeFirstLetter(
|
2021-02-22 02:39:04 +00:00
|
|
|
i18n.t("modified")
|
2020-09-06 16:15:25 +00:00
|
|
|
)} ${this.format(this.props.data.updated)}`}
|
|
|
|
className="font-italics pointer unselectable"
|
|
|
|
>
|
2021-02-11 20:35:27 +00:00
|
|
|
<Icon icon="edit-2" classes="icon-inline mr-1" />
|
2020-09-06 16:15:25 +00:00
|
|
|
{moment.utc(this.props.data.updated).fromNow(!this.props.showAgo)}
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
let str = this.props.data.published || this.props.data.when_;
|
|
|
|
return (
|
|
|
|
<span
|
|
|
|
className="pointer unselectable"
|
|
|
|
data-tippy-content={this.format(str)}
|
|
|
|
>
|
|
|
|
{moment.utc(str).fromNow(!this.props.showAgo)}
|
|
|
|
</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
|
|
|
}
|
|
|
|
}
|