2018-05-17 17:51:37 +08:00
|
|
|
<template>
|
2018-05-17 18:27:34 +08:00
|
|
|
<span :class="classes" @click="handleClick">{{ date }}</span>
|
2018-05-17 17:51:37 +08:00
|
|
|
</template>
|
|
|
|
<script>
|
2018-05-17 18:24:26 +08:00
|
|
|
import Vue from 'vue';
|
|
|
|
const isServer = Vue.prototype.$isServer;
|
2018-05-17 18:06:42 +08:00
|
|
|
import { oneOf } from '../../utils/assist';
|
2018-09-24 15:17:54 +09:00
|
|
|
import Locale from '../../mixins/locale';
|
2018-05-18 10:32:51 +08:00
|
|
|
import Time from './time';
|
2018-05-17 18:06:42 +08:00
|
|
|
|
|
|
|
const prefixCls = 'ivu-time';
|
2018-05-17 17:51:37 +08:00
|
|
|
|
2018-05-17 18:06:42 +08:00
|
|
|
export default {
|
|
|
|
name: 'Time',
|
2018-09-24 15:17:54 +09:00
|
|
|
mixins: [Locale],
|
2018-05-17 18:06:42 +08:00
|
|
|
props: {
|
|
|
|
time: {
|
2018-07-03 13:59:12 +08:00
|
|
|
type: [Number, Date, String],
|
2018-05-17 18:06:42 +08:00
|
|
|
required: true
|
|
|
|
},
|
|
|
|
type: {
|
|
|
|
type: String,
|
|
|
|
validator (value) {
|
|
|
|
return oneOf(value, ['relative', 'date', 'datetime']);
|
|
|
|
},
|
|
|
|
default: 'relative'
|
|
|
|
},
|
|
|
|
hash: {
|
|
|
|
type: String,
|
|
|
|
default: ''
|
|
|
|
},
|
|
|
|
interval: {
|
|
|
|
type: Number,
|
|
|
|
default: 60
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
date: ''
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
classes () {
|
|
|
|
return [
|
|
|
|
`${prefixCls}`,
|
|
|
|
{
|
|
|
|
[`${prefixCls}-with-hash`]: this.hash
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
handleClick () {
|
|
|
|
if (this.hash !== '') window.location.hash = this.hash;
|
2018-05-17 18:24:26 +08:00
|
|
|
},
|
|
|
|
setTime () {
|
2018-05-18 10:32:51 +08:00
|
|
|
const type = typeof this.time;
|
|
|
|
let time;
|
|
|
|
|
|
|
|
if (type === 'number') {
|
|
|
|
const timestamp = this.time.toString().length > 10 ? this.time : this.time * 1000;
|
|
|
|
time = (new Date(timestamp)).getTime();
|
|
|
|
} else if (type === 'object') {
|
|
|
|
time = this.time.getTime();
|
2018-07-03 13:59:12 +08:00
|
|
|
} else if (type === 'string') {
|
|
|
|
time = (new Date(this.time)).getTime();
|
2018-05-18 10:32:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.type === 'relative') {
|
2018-09-24 15:17:54 +09:00
|
|
|
this.date = Time(time, this.t);
|
2018-05-18 10:32:51 +08:00
|
|
|
} else {
|
|
|
|
const date = new Date(this.time);
|
|
|
|
const year = date.getFullYear();
|
|
|
|
const month = (date.getMonth() + 1) < 10 ? '0' + (date.getMonth() + 1) : (date.getMonth() + 1);
|
|
|
|
const day = date.getDate() < 10 ? '0' + date.getDate() : date.getDate();
|
|
|
|
const hour = date.getHours() < 10 ? '0' + date.getHours() : date.getHours();
|
|
|
|
const minute = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes();
|
|
|
|
const second = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds();
|
|
|
|
|
|
|
|
if (this.type === 'datetime') {
|
|
|
|
this.date = `${year}-${month}-${day} ${hour}:${minute}:${second}`;
|
|
|
|
} else if (this.type === 'date') {
|
|
|
|
this.date = `${year}-${month}-${day}`;
|
|
|
|
}
|
|
|
|
}
|
2018-05-17 18:06:42 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted () {
|
|
|
|
this.setTime();
|
2018-05-17 18:24:26 +08:00
|
|
|
if (isServer) return;
|
2018-05-17 18:06:42 +08:00
|
|
|
this.timer = setInterval(() => {
|
|
|
|
this.setTime();
|
|
|
|
}, 1000 * this.interval);
|
|
|
|
},
|
|
|
|
beforeDestroy () {
|
|
|
|
if (this.timer) clearInterval(this.timer);
|
|
|
|
}
|
2018-05-17 17:51:37 +08:00
|
|
|
};
|
|
|
|
</script>
|