2018-02-05 06:25:19 +01:00
|
|
|
<template>
|
2019-01-16 22:40:11 +01:00
|
|
|
<time class="mk-time" :title="absolute">
|
2018-02-13 05:49:48 +01:00
|
|
|
<span v-if=" mode == 'relative' ">{{ relative }}</span>
|
|
|
|
<span v-if=" mode == 'absolute' ">{{ absolute }}</span>
|
|
|
|
<span v-if=" mode == 'detail' ">{{ absolute }} ({{ relative }})</span>
|
|
|
|
</time>
|
2018-02-05 06:25:19 +01:00
|
|
|
</template>
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-02-13 05:49:48 +01:00
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../../i18n';
|
2018-02-09 10:28:06 +01:00
|
|
|
|
2018-02-13 05:49:48 +01:00
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n(),
|
2018-02-13 05:49:48 +01:00
|
|
|
props: {
|
|
|
|
time: {
|
|
|
|
type: [Date, String],
|
|
|
|
required: true
|
2018-02-05 06:25:19 +01:00
|
|
|
},
|
2018-02-13 05:49:48 +01:00
|
|
|
mode: {
|
|
|
|
type: String,
|
|
|
|
default: 'relative'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
tickId: null,
|
|
|
|
now: new Date()
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
_time(): Date {
|
|
|
|
return typeof this.time == 'string' ? new Date(this.time) : this.time;
|
2018-02-05 06:25:19 +01:00
|
|
|
},
|
2018-02-13 05:49:48 +01:00
|
|
|
absolute(): string {
|
2018-12-18 17:10:53 +01:00
|
|
|
return this._time.toLocaleString();
|
2018-02-05 06:25:19 +01:00
|
|
|
},
|
2018-02-13 05:49:48 +01:00
|
|
|
relative(): string {
|
|
|
|
const time = this._time;
|
|
|
|
const ago = (this.now.getTime() - time.getTime()) / 1000/*ms*/;
|
|
|
|
return (
|
2018-11-08 19:44:35 +01:00
|
|
|
ago >= 31536000 ? this.$t('@.time.years_ago') .replace('{}', (~~(ago / 31536000)).toString()) :
|
|
|
|
ago >= 2592000 ? this.$t('@.time.months_ago') .replace('{}', (~~(ago / 2592000)).toString()) :
|
|
|
|
ago >= 604800 ? this.$t('@.time.weeks_ago') .replace('{}', (~~(ago / 604800)).toString()) :
|
|
|
|
ago >= 86400 ? this.$t('@.time.days_ago') .replace('{}', (~~(ago / 86400)).toString()) :
|
|
|
|
ago >= 3600 ? this.$t('@.time.hours_ago') .replace('{}', (~~(ago / 3600)).toString()) :
|
|
|
|
ago >= 60 ? this.$t('@.time.minutes_ago').replace('{}', (~~(ago / 60)).toString()) :
|
|
|
|
ago >= 10 ? this.$t('@.time.seconds_ago').replace('{}', (~~(ago % 60)).toString()) :
|
2018-11-17 12:57:23 +01:00
|
|
|
ago >= -1 ? this.$t('@.time.just_now') :
|
|
|
|
ago < -1 ? this.$t('@.time.future') :
|
2018-11-08 19:44:35 +01:00
|
|
|
this.$t('@.time.unknown'));
|
2018-02-13 05:49:48 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
if (this.mode == 'relative' || this.mode == 'detail') {
|
2018-06-10 01:03:02 +02:00
|
|
|
this.tickId = window.requestAnimationFrame(this.tick);
|
2018-02-13 05:49:48 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
destroyed() {
|
|
|
|
if (this.mode === 'relative' || this.mode === 'detail') {
|
2018-06-10 01:03:02 +02:00
|
|
|
window.clearTimeout(this.tickId);
|
2018-02-13 05:49:48 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
tick() {
|
|
|
|
this.now = new Date();
|
2018-06-10 01:03:02 +02:00
|
|
|
|
|
|
|
this.tickId = setTimeout(() => {
|
|
|
|
window.requestAnimationFrame(this.tick);
|
|
|
|
}, 10000);
|
2018-02-05 06:25:19 +01:00
|
|
|
}
|
2018-02-13 05:49:48 +01:00
|
|
|
}
|
|
|
|
});
|
2018-02-05 06:25:19 +01:00
|
|
|
</script>
|