import { Component } from "inferno"; import moment from "moment"; import { i18n } from "../../i18next"; import { capitalizeFirstLetter, getLanguages } from "../../utils"; import { Icon } from "./icon"; interface MomentTimeProps { published: string; updated?: string; showAgo?: boolean; ignoreUpdated?: boolean; } export class MomentTime extends Component { constructor(props: any, context: any) { super(props, context); const lang = getLanguages(); moment.locale(lang); } createdAndModifiedTimes() { const updated = this.props.updated; let line = `${capitalizeFirstLetter(i18n.t("created"))}: ${this.format( this.props.published )}`; if (updated) { line += `\n\n\n${capitalizeFirstLetter(i18n.t("modified"))} ${this.format( updated )}`; } return line; } render() { if (!this.props.ignoreUpdated && this.props.updated) { return ( {moment.utc(this.props.updated).fromNow(!this.props.showAgo)} ); } else { const published = this.props.published; return ( {moment.utc(published).fromNow(!this.props.showAgo)} ); } } format(input: string): string { return moment.utc(input).local().format("LLLL"); } }