iceshrimp-legacy/src/web/app/common/views/components/time.vue

77 lines
2.1 KiB
Vue
Raw Normal View History

2018-02-05 06:25:19 +01:00
<template>
2018-02-16 19:18:48 +01:00
<time class="mk-time">
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-02-09 10:28:06 +01:00
2018-02-13 05:49:48 +01:00
export default Vue.extend({
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 {
const time = this._time;
return (
time.getFullYear() + '年' +
(time.getMonth() + 1) + '月' +
time.getDate() + '日' +
' ' +
time.getHours() + '時' +
time.getMinutes() + '分');
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 (
ago >= 31536000 ? '%i18n:common.time.years_ago%' .replace('{}', (~~(ago / 31536000)).toString()) :
ago >= 2592000 ? '%i18n:common.time.months_ago%' .replace('{}', (~~(ago / 2592000)).toString()) :
ago >= 604800 ? '%i18n:common.time.weeks_ago%' .replace('{}', (~~(ago / 604800)).toString()) :
ago >= 86400 ? '%i18n:common.time.days_ago%' .replace('{}', (~~(ago / 86400)).toString()) :
ago >= 3600 ? '%i18n:common.time.hours_ago%' .replace('{}', (~~(ago / 3600)).toString()) :
ago >= 60 ? '%i18n:common.time.minutes_ago%'.replace('{}', (~~(ago / 60)).toString()) :
ago >= 10 ? '%i18n:common.time.seconds_ago%'.replace('{}', (~~(ago % 60)).toString()) :
ago >= 0 ? '%i18n:common.time.just_now%' :
ago < 0 ? '%i18n:common.time.future%' :
'%i18n:common.time.unknown%');
}
},
created() {
if (this.mode == 'relative' || this.mode == 'detail') {
this.tick();
this.tickId = setInterval(this.tick, 1000);
}
},
destroyed() {
if (this.mode === 'relative' || this.mode === 'detail') {
clearInterval(this.tickId);
}
},
methods: {
tick() {
this.now = new Date();
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>