2019-06-18 20:28:31 +00:00
|
|
|
<template>
|
2019-07-05 07:17:44 +00:00
|
|
|
<time
|
|
|
|
:datetime="time"
|
|
|
|
:title="localeDateString"
|
|
|
|
>
|
2019-06-18 20:28:31 +00:00
|
|
|
{{ $t(relativeTime.key, [relativeTime.num]) }}
|
|
|
|
</time>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import * as DateUtils from 'src/services/date_utils/date_utils.js'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Timeago',
|
|
|
|
props: ['time', 'autoUpdate', 'longFormat', 'nowThreshold'],
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
relativeTime: { key: 'time.now', num: 0 },
|
|
|
|
interval: null
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
localeDateString () {
|
|
|
|
return typeof this.time === 'string'
|
|
|
|
? new Date(Date.parse(this.time)).toLocaleString()
|
|
|
|
: this.time.toLocaleString()
|
|
|
|
}
|
|
|
|
},
|
2019-07-05 07:17:44 +00:00
|
|
|
created () {
|
|
|
|
this.refreshRelativeTimeObject()
|
|
|
|
},
|
|
|
|
destroyed () {
|
|
|
|
clearTimeout(this.interval)
|
|
|
|
},
|
2019-06-18 20:28:31 +00:00
|
|
|
methods: {
|
|
|
|
refreshRelativeTimeObject () {
|
|
|
|
const nowThreshold = typeof this.nowThreshold === 'number' ? this.nowThreshold : 1
|
|
|
|
this.relativeTime = this.longFormat
|
|
|
|
? DateUtils.relativeTime(this.time, nowThreshold)
|
|
|
|
: DateUtils.relativeTimeShort(this.time, nowThreshold)
|
|
|
|
|
|
|
|
if (this.autoUpdate) {
|
|
|
|
this.interval = setTimeout(
|
|
|
|
this.refreshRelativeTimeObject,
|
|
|
|
1000 * this.autoUpdate
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-05 07:17:44 +00:00
|
|
|
</script>
|