mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-06 04:25:00 +00:00
30 lines
707 B
TypeScript
30 lines
707 B
TypeScript
import { Component } from 'inferno';
|
|
import * as moment from 'moment';
|
|
|
|
interface MomentTimeProps {
|
|
data: {
|
|
published?: string;
|
|
when_?: string;
|
|
updated?: string;
|
|
}
|
|
}
|
|
|
|
export class MomentTime extends Component<MomentTimeProps, any> {
|
|
|
|
constructor(props: any, context: any) {
|
|
super(props, context);
|
|
}
|
|
|
|
render() {
|
|
if (this.props.data.updated) {
|
|
return (
|
|
<span title={this.props.data.updated} className="font-italics">modified {moment.utc(this.props.data.updated).fromNow()}</span>
|
|
)
|
|
} else {
|
|
let str = this.props.data.published || this.props.data.when_;
|
|
return (
|
|
<span title={str}>{moment.utc(str).fromNow()}</span>
|
|
)
|
|
}
|
|
}
|
|
}
|