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';
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
if (this.props.data.updated) {
|
|
|
|
return (
|
2019-04-09 03:28:07 +00:00
|
|
|
<span title={this.props.data.updated} className="font-italics">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
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|