mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-12-29 07:29:46 -08:00
8a92054c2b
* Added JSDoc to eslint rules Signed-off-by: Matthew Nickson <[email protected]> * Fixed JSDoc eslint errors Signed-off-by: Matthew Nickson <[email protected]> * Update the check-linters workflow to Node.js 20 --------- Signed-off-by: Matthew Nickson <[email protected]> Co-authored-by: Louis Lam <[email protected]>
112 lines
3.2 KiB
JavaScript
112 lines
3.2 KiB
JavaScript
import dayjs from "dayjs";
|
|
|
|
/**
|
|
* DateTime Mixin
|
|
* Handled timezone and format
|
|
*/
|
|
export default {
|
|
data() {
|
|
return {
|
|
userTimezone: localStorage.timezone || "auto",
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
/**
|
|
* Convert value to UTC
|
|
* @param {string | number | Date | dayjs.Dayjs} value Time
|
|
* value to convert
|
|
* @returns {dayjs.Dayjs} Converted time
|
|
*/
|
|
toUTC(value) {
|
|
return dayjs.tz(value, this.timezone).utc().format();
|
|
},
|
|
|
|
/**
|
|
* Used for <input type="datetime" />
|
|
* @param {string | number | Date | dayjs.Dayjs} value Value to
|
|
* convert
|
|
* @returns {string} Datetime string
|
|
*/
|
|
toDateTimeInputFormat(value) {
|
|
return this.datetimeFormat(value, "YYYY-MM-DDTHH:mm");
|
|
},
|
|
|
|
/**
|
|
* Return a given value in the format YYYY-MM-DD HH:mm:ss
|
|
* @param {any} value Value to format as date time
|
|
* @returns {string} Formatted string
|
|
*/
|
|
datetime(value) {
|
|
return this.datetimeFormat(value, "YYYY-MM-DD HH:mm:ss");
|
|
},
|
|
|
|
/**
|
|
* Get time for maintenance
|
|
* @param {string | number | Date | dayjs.Dayjs} value Time to
|
|
* format
|
|
* @returns {string} Formatted string
|
|
*/
|
|
datetimeMaintenance(value) {
|
|
const inputDate = new Date(value);
|
|
const now = new Date(Date.now());
|
|
|
|
if (inputDate.getFullYear() === now.getUTCFullYear() && inputDate.getMonth() === now.getUTCMonth() && inputDate.getDay() === now.getUTCDay()) {
|
|
return this.datetimeFormat(value, "HH:mm");
|
|
} else {
|
|
return this.datetimeFormat(value, "YYYY-MM-DD HH:mm");
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Return a given value in the format YYYY-MM-DD
|
|
* @param {any} value Value to format as date
|
|
* @returns {string} Formatted string
|
|
*/
|
|
date(value) {
|
|
return this.datetimeFormat(value, "YYYY-MM-DD");
|
|
},
|
|
|
|
/**
|
|
* Return a given value in the format HH:mm or if second is set
|
|
* to true, HH:mm:ss
|
|
* @param {any} value Value to format
|
|
* @param {boolean} second Should seconds be included?
|
|
* @returns {string} Formatted string
|
|
*/
|
|
time(value, second = true) {
|
|
let secondString;
|
|
if (second) {
|
|
secondString = ":ss";
|
|
} else {
|
|
secondString = "";
|
|
}
|
|
return this.datetimeFormat(value, "HH:mm" + secondString);
|
|
},
|
|
|
|
/**
|
|
* Return a value in a custom format
|
|
* @param {any} value Value to format
|
|
* @param {any} format Format to return value in
|
|
* @returns {string} Formatted string
|
|
*/
|
|
datetimeFormat(value, format) {
|
|
if (value !== undefined && value !== "") {
|
|
return dayjs.utc(value).tz(this.timezone).format(format);
|
|
}
|
|
return "";
|
|
},
|
|
},
|
|
|
|
computed: {
|
|
timezone() {
|
|
if (this.userTimezone === "auto") {
|
|
return dayjs.tz.guess();
|
|
}
|
|
|
|
return this.userTimezone;
|
|
},
|
|
}
|
|
|
|
};
|