lemmy/ui/src/components/moment-time.tsx
Dessalines 44bbc45973 A first pass at adding icons, and tippy tooltips.
- Adding icons for post-listing, comment-node, and navbar.
- Adding html titles.
- Updating moment expand to use users locale.
2020-03-03 02:29:45 -05:00

56 lines
1.2 KiB
TypeScript
Vendored

import { Component } from 'inferno';
import moment from 'moment';
import { getMomentLanguage, setupTippy } from '../utils';
import { i18n } from '../i18next';
interface MomentTimeProps {
data: {
published?: string;
when_?: string;
updated?: string;
};
}
export class MomentTime extends Component<MomentTimeProps, any> {
constructor(props: any, context: any) {
super(props, context);
let lang = getMomentLanguage();
moment.locale(lang);
}
componentDidMount() {
setupTippy();
}
render() {
if (this.props.data.updated) {
return (
<span
data-tippy-content={this.format(this.props.data.updated)}
className="font-italics pointer unselectable"
>
{i18n.t('modified')} {moment.utc(this.props.data.updated).fromNow()}
</span>
);
} else {
let str = this.props.data.published || this.props.data.when_;
return (
<span
className="pointer unselectable"
data-tippy-content={this.format(str)}
>
{moment.utc(str).fromNow()}
</span>
);
}
}
format(input: string): string {
return moment
.utc(input)
.local()
.format('LLLL');
}
}