2019-04-08 05:19:02 +00:00
|
|
|
import { Component } from 'inferno';
|
2020-01-23 03:29:11 +00:00
|
|
|
import moment from 'moment';
|
2020-03-03 15:14:50 +00:00
|
|
|
import { getMomentLanguage, setupTippy, capitalizeFirstLetter } 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
|
|
|
}
|
|
|
|
|
2020-03-03 07:29:45 +00:00
|
|
|
componentDidMount() {
|
|
|
|
setupTippy();
|
|
|
|
}
|
|
|
|
|
2019-03-27 19:54:55 +00:00
|
|
|
render() {
|
|
|
|
if (this.props.data.updated) {
|
|
|
|
return (
|
2020-03-03 07:29:45 +00:00
|
|
|
<span
|
2020-03-03 15:14:50 +00:00
|
|
|
data-tippy-content={`${capitalizeFirstLetter(
|
|
|
|
i18n.t('modified')
|
|
|
|
)} ${this.format(this.props.data.updated)}`}
|
2020-03-03 07:29:45 +00:00
|
|
|
className="font-italics pointer unselectable"
|
|
|
|
>
|
2020-03-03 15:14:50 +00:00
|
|
|
<svg class="icon icon-inline mr-1">
|
|
|
|
<use xlinkHref="#icon-edit-2"></use>
|
|
|
|
</svg>
|
2020-03-04 19:24:45 +00:00
|
|
|
{moment.utc(this.props.data.updated).fromNow(true)}
|
2019-10-19 00:20:27 +00:00
|
|
|
</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_;
|
2020-03-03 07:29:45 +00:00
|
|
|
return (
|
|
|
|
<span
|
|
|
|
className="pointer unselectable"
|
|
|
|
data-tippy-content={this.format(str)}
|
|
|
|
>
|
2020-03-04 19:24:45 +00:00
|
|
|
{moment.utc(str).fromNow(true)}
|
2020-03-03 07:29:45 +00:00
|
|
|
</span>
|
|
|
|
);
|
2019-03-27 19:54:55 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-03 07:29:45 +00:00
|
|
|
|
|
|
|
format(input: string): string {
|
|
|
|
return moment
|
|
|
|
.utc(input)
|
|
|
|
.local()
|
|
|
|
.format('LLLL');
|
|
|
|
}
|
2019-03-27 19:54:55 +00:00
|
|
|
}
|