lemmy/ui/src/components/moment-time.tsx

45 lines
1.0 KiB
TypeScript
Raw Normal View History

import { Component } from 'inferno';
2019-03-27 19:54:55 +00:00
import * as moment from 'moment';
// import 'moment/locale/de';
import 'moment/locale/zh-cn';
2019-08-10 18:33:54 +00:00
import 'moment/locale/fr';
import 'moment/locale/sv';
import { getLanguage } from '../utils';
import { i18n } from '../i18next';
2019-03-27 19:54:55 +00:00
interface MomentTimeProps {
data: {
published?: string;
when_?: string;
2019-03-27 19:54:55 +00:00
updated?: string;
}
}
export class MomentTime extends Component<MomentTimeProps, any> {
constructor(props: any, context: any) {
2019-03-27 19:54:55 +00:00
super(props, context);
// Moment doesnt have zh, only zh-cn
let lang = getLanguage();
if (lang == 'zh') {
lang = 'zh-cn';
}
moment.locale(lang);
2019-03-27 19:54:55 +00:00
}
render() {
if (this.props.data.updated) {
return (
<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 {
let str = this.props.data.published || this.props.data.when_;
2019-03-27 19:54:55 +00:00
return (
<span title={str}>{moment.utc(str).fromNow()}</span>
2019-03-27 19:54:55 +00:00
)
}
}
}