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-10 00:14:43 +00:00
|
|
|
// import 'moment/locale/de.js';
|
|
|
|
import { getLanguage } from '../utils';
|
|
|
|
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 00:14:43 +00:00
|
|
|
moment.locale(getLanguage());
|
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
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|