Improve message history

This commit is contained in:
Thomas Nordquist
2019-04-03 17:55:39 +02:00
parent 9e5d944df3
commit f23f6c908f
2 changed files with 44 additions and 8 deletions

View File

@@ -3,14 +3,30 @@ import * as moment from 'moment'
interface Props {
date: Date
intervalSince?: Date
}
const unitMapping = {
s: 'seconds',
m: 'minutes',
h: 'hours',
}
class DateFormatter extends React.Component<Props, {}> {
public render() {
const locale = window.navigator.language
if (this.props.intervalSince) {
return <span>{this.intervalSince(this.props.intervalSince)}</span>
}
return <span>{locale ? this.localizedDate(locale) : this.legacyDate()}</span>
}
private intervalSince(intervalSince: Date) {
const interval = intervalSince.getTime() - this.props.date.getTime()
const unit = this.unitForInterval(interval)
return `${moment.duration(interval).as(unit)} ${unitMapping[unit]}`
}
private legacyDate() {
return `${this.props.date.toLocaleDateString()} ${this.props.date.toLocaleTimeString()}`
}
@@ -18,6 +34,21 @@ class DateFormatter extends React.Component<Props, {}> {
private localizedDate(locale: string) {
return moment(this.props.date).locale(locale).format('L LTS')
}
private unitForInterval(millis: number) {
const oneMinute = 1000 * 60
const oneHour = oneMinute * 60
if (millis > oneHour * 2) {
return 'h'
}
if (millis > oneMinute * 2) {
return 'm'
}
return 's'
}
}
export default DateFormatter