2021-08-17 08:41:12 +00:00
|
|
|
import dayjs from "dayjs";
|
|
|
|
import relativeTime from "dayjs/plugin/relativeTime";
|
2021-09-28 06:07:42 +00:00
|
|
|
import timezone from "dayjs/plugin/timezone";
|
|
|
|
import utc from "dayjs/plugin/utc";
|
2021-08-17 08:41:12 +00:00
|
|
|
dayjs.extend(utc);
|
|
|
|
dayjs.extend(timezone);
|
|
|
|
dayjs.extend(relativeTime);
|
|
|
|
|
2021-08-17 08:43:59 +00:00
|
|
|
/**
|
|
|
|
* DateTime Mixin
|
|
|
|
* Handled timezone and format
|
|
|
|
*/
|
2021-08-17 08:41:12 +00:00
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
userTimezone: localStorage.timezone || "auto",
|
2021-09-28 06:07:42 +00:00
|
|
|
};
|
2021-08-17 08:41:12 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
2022-01-24 21:33:15 +00:00
|
|
|
isActiveMaintenance(endDate) {
|
|
|
|
return (dayjs.utc(endDate).unix() >= dayjs.utc().unix());
|
|
|
|
},
|
|
|
|
|
|
|
|
toUTC(value) {
|
|
|
|
return dayjs.tz(value, this.timezone).utc().format();
|
|
|
|
},
|
|
|
|
|
2021-08-17 08:41:12 +00:00
|
|
|
datetime(value) {
|
|
|
|
return this.datetimeFormat(value, "YYYY-MM-DD HH:mm:ss");
|
|
|
|
},
|
|
|
|
|
2022-01-23 14:22:00 +00:00
|
|
|
datetimeMaintenance(value) {
|
|
|
|
const inputDate = new Date(value);
|
|
|
|
const now = new Date(Date.now());
|
|
|
|
|
2022-01-24 21:33:15 +00:00
|
|
|
if (inputDate.getFullYear() === now.getUTCFullYear() && inputDate.getMonth() === now.getUTCMonth() && inputDate.getDay() === now.getUTCDay())
|
|
|
|
return this.datetimeFormat(value, "HH:mm");
|
2022-01-23 14:22:00 +00:00
|
|
|
else
|
2022-01-24 21:33:15 +00:00
|
|
|
return this.datetimeFormat(value, "YYYY-MM-DD HH:mm");
|
2022-01-23 14:22:00 +00:00
|
|
|
},
|
|
|
|
|
2021-08-17 08:41:12 +00:00
|
|
|
date(value) {
|
|
|
|
return this.datetimeFormat(value, "YYYY-MM-DD");
|
|
|
|
},
|
|
|
|
|
|
|
|
time(value, second = true) {
|
|
|
|
let secondString;
|
|
|
|
if (second) {
|
|
|
|
secondString = ":ss";
|
|
|
|
} else {
|
|
|
|
secondString = "";
|
|
|
|
}
|
|
|
|
return this.datetimeFormat(value, "HH:mm" + secondString);
|
|
|
|
},
|
|
|
|
|
|
|
|
datetimeFormat(value, format) {
|
|
|
|
if (value !== undefined && value !== "") {
|
|
|
|
return dayjs.utc(value).tz(this.timezone).format(format);
|
|
|
|
}
|
|
|
|
return "";
|
2022-01-23 14:22:00 +00:00
|
|
|
},
|
2021-08-17 08:41:12 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
timezone() {
|
|
|
|
if (this.userTimezone === "auto") {
|
2021-09-28 06:07:42 +00:00
|
|
|
return dayjs.tz.guess();
|
2021-08-17 08:41:12 +00:00
|
|
|
}
|
|
|
|
|
2021-09-28 06:07:42 +00:00
|
|
|
return this.userTimezone;
|
2021-08-17 08:41:12 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2021-09-28 06:07:42 +00:00
|
|
|
};
|