2019-04-08 05:19:02 +00:00
|
|
|
import { Component } from 'inferno';
|
2019-03-27 19:54:55 +00:00
|
|
|
import * as moment from 'moment';
|
2019-08-17 20:32:59 +00:00
|
|
|
import 'moment/locale/de';
|
2019-08-10 18:26:28 +00:00
|
|
|
import 'moment/locale/zh-cn';
|
2019-08-10 18:33:54 +00:00
|
|
|
import 'moment/locale/fr';
|
2019-08-15 21:11:22 +00:00
|
|
|
import 'moment/locale/sv';
|
2019-08-19 21:29:28 +00:00
|
|
|
import 'moment/locale/ru';
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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-08-10 00:14:43 +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-03-27 19:54:55 +00:00
|
|
|
return (
|
2019-04-15 23:12:06 +00:00
|
|
|
<span title={str}>{moment.utc(str).fromNow()}</span>
|
2019-03-27 19:54:55 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|