mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 23:04:04 +00:00
Compare commits
3 commits
5dfd9b84ab
...
70c2ed8ccc
Author | SHA1 | Date | |
---|---|---|---|
|
70c2ed8ccc | ||
|
b000c1d532 | ||
|
2438e87efa |
3 changed files with 43 additions and 15 deletions
|
@ -215,38 +215,58 @@ export function getToastErrorTimeout() {
|
||||||
}
|
}
|
||||||
|
|
||||||
class RelativeTimeFormatter {
|
class RelativeTimeFormatter {
|
||||||
// Default locale and options
|
/**
|
||||||
|
* Default locale and options for Relative Time Formatter
|
||||||
|
*/
|
||||||
constructor() {
|
constructor() {
|
||||||
this.locale = currentLocale();
|
this.locale = currentLocale();
|
||||||
this.options = { numeric: "auto" };
|
this.options = { numeric: "auto" };
|
||||||
this.rtf = new Intl.RelativeTimeFormat(this.locale, this.options);
|
this.rtf = new Intl.RelativeTimeFormat(this.locale, this.options);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Method to get the singleton instance
|
/**
|
||||||
|
* Method to get the singleton instance
|
||||||
|
* @returns {object} Intl.RelativeTimeFormat instance
|
||||||
|
*/
|
||||||
getInstance() {
|
getInstance() {
|
||||||
return this.rtf;
|
return this.rtf;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Method to update the locale and options
|
/**
|
||||||
updateLocale(locale, options = {}) {
|
* Method to update the instance locale and options
|
||||||
|
* @param {string} locale Localization identifier (e.g., "en", "ar-sy") to update the instance with.
|
||||||
|
* @returns {void} No return value.
|
||||||
|
*/
|
||||||
|
updateLocale(locale) {
|
||||||
this.locale = locale;
|
this.locale = locale;
|
||||||
this.options = { ...this.options, ...options };
|
|
||||||
this.rtf = new Intl.RelativeTimeFormat(this.locale, this.options);
|
this.rtf = new Intl.RelativeTimeFormat(this.locale, this.options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method to convert seconds into Human readable format
|
||||||
|
* @param {number} seconds Receive value in seconds.
|
||||||
|
* @returns {string} String converted to Days Mins Seconds Format
|
||||||
|
*/
|
||||||
secondsToHumanReadableFormat(seconds) {
|
secondsToHumanReadableFormat(seconds) {
|
||||||
const days = Math.floor(seconds / 86400);
|
const days = Math.floor(seconds / 86400);
|
||||||
const hours = Math.floor((seconds % 86400) / 3600);
|
const hours = Math.floor((seconds % 86400) / 3600);
|
||||||
const minutes = Math.floor(((seconds % 86400) % 3600) / 60);
|
const minutes = Math.floor(((seconds % 86400) % 3600) / 60);
|
||||||
const secs = ((seconds % 86400) % 3600) % 60;
|
const secs = ((seconds % 86400) % 3600) % 60;
|
||||||
const parts = [];
|
const parts = [];
|
||||||
// Build the formatted string from parts
|
/**
|
||||||
|
* Build the formatted string from parts
|
||||||
|
* @param {number} value Receives value in seconds.
|
||||||
|
* @param {string} unitOfTime Expected unit of time after conversion.
|
||||||
|
* @returns {void}
|
||||||
|
*/
|
||||||
const toFormattedPart = (value, unitOfTime) => {
|
const toFormattedPart = (value, unitOfTime) => {
|
||||||
const res = this.getInstance().formatToParts(value, unitOfTime);
|
const res = this.getInstance().formatToParts(value, unitOfTime);
|
||||||
console.log(res)
|
|
||||||
let formattedString = res
|
let formattedString = res
|
||||||
.map((part, _idx) => {
|
.map((part, _idx) => {
|
||||||
if ((part.type === "literal" || part.type === "integer") && _idx > 0) {
|
if (
|
||||||
|
(part.type === "literal" || part.type === "integer") &&
|
||||||
|
_idx > 0
|
||||||
|
) {
|
||||||
return part.value;
|
return part.value;
|
||||||
}
|
}
|
||||||
return "";
|
return "";
|
||||||
|
@ -256,14 +276,22 @@ class RelativeTimeFormatter {
|
||||||
parts.push(formattedString);
|
parts.push(formattedString);
|
||||||
};
|
};
|
||||||
|
|
||||||
if (days > 0) toFormattedPart(days, "days");
|
if (days > 0) {
|
||||||
if (hours > 0) toFormattedPart(hours, "hour");
|
toFormattedPart(days, "days");
|
||||||
if (minutes > 0) toFormattedPart(minutes, "minute");
|
}
|
||||||
if (secs > 0) toFormattedPart(secs, "second");
|
if (hours > 0) {
|
||||||
|
toFormattedPart(hours, "hour");
|
||||||
|
}
|
||||||
|
if (minutes > 0) {
|
||||||
|
toFormattedPart(minutes, "minute");
|
||||||
|
}
|
||||||
|
if (secs > 0) {
|
||||||
|
toFormattedPart(secs, "second");
|
||||||
|
}
|
||||||
|
|
||||||
const result =
|
const result =
|
||||||
parts.length > 0
|
parts.length > 0
|
||||||
? `~ ${parts.join(" ")}`
|
? `${parts.join(" ")}`
|
||||||
: this.getInstance().format(0, "second"); // Handle case for 0 seconds
|
: this.getInstance().format(0, "second"); // Handle case for 0 seconds
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Reference in a new issue