2019-04-08 05:19:02 +00:00
|
|
|
import { Component } from 'inferno';
|
2020-01-23 03:29:11 +00:00
|
|
|
import moment from 'moment';
|
2019-08-17 17:22:38 +00:00
|
|
|
import { getMomentLanguage } from '../utils';
|
2019-08-10 00:14:43 +00:00
|
|
|
import { i18n } from '../i18next';
|
2019-03-27 19:54:55 +00:00
|
|
|
|
|
|
|
interface MomentTimeProps {
|
|
|
|
data: {
|
2019-04-15 23:12:06 +00:00
|
|
|
published?: string;
|
|
|
|
when_?: string;
|
2019-03-27 19:54:55 +00:00
|
|
|
updated?: string;
|
2019-10-19 00:20:27 +00:00
|
|
|
};
|
2019-03-27 19:54:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class MomentTime extends Component<MomentTimeProps, any> {
|
2019-04-08 05:19:02 +00:00
|
|
|
constructor(props: any, context: any) {
|
2019-03-27 19:54:55 +00:00
|
|
|
super(props, context);
|
2019-08-10 18:26:28 +00:00
|
|
|
|
2019-08-17 17:22:38 +00:00
|
|
|
let lang = getMomentLanguage();
|
2019-08-10 18:26:28 +00:00
|
|
|
|
|
|
|
moment.locale(lang);
|
2019-03-27 19:54:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
if (this.props.data.updated) {
|
|
|
|
return (
|
2019-10-19 00:20:27 +00:00
|
|
|
<span title={this.props.data.updated} className="font-italics">
|
|
|
|
{i18n.t('modified')} {moment.utc(this.props.data.updated).fromNow()}
|
|
|
|
</span>
|
|
|
|
);
|
2019-03-27 19:54:55 +00:00
|
|
|
} else {
|
2019-04-15 23:12:06 +00:00
|
|
|
let str = this.props.data.published || this.props.data.when_;
|
2019-10-19 00:20:27 +00:00
|
|
|
return <span title={str}>{moment.utc(str).fromNow()}</span>;
|
2019-03-27 19:54:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|