import React from 'react'; import classNames from 'classnames'; import moment from 'moment'; import { formatRelativeTime } from '../../util/formatRelativeTime'; import { Localizer } from '../../types/Util'; interface Props { timestamp: number | null; extended: boolean; module?: string; withImageNoCaption?: boolean; direction?: 'incoming' | 'outgoing'; i18n: Localizer; } const UPDATE_FREQUENCY = 60 * 1000; export class Timestamp extends React.Component { private interval: any; constructor(props: Props) { super(props); this.interval = null; } public componentDidMount() { const update = () => { this.setState({ lastUpdated: Date.now(), }); }; this.interval = setInterval(update, UPDATE_FREQUENCY); } public componentWillUnmount() { if (this.interval) { clearInterval(this.interval); } } public render() { const { direction, i18n, module, timestamp, withImageNoCaption, extended, } = this.props; const moduleName = module || 'module-timestamp'; if (timestamp === null || timestamp === undefined) { return null; } return ( {formatRelativeTime(timestamp, { i18n, extended })} ); } }