mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
Compare commits
3 commits
5dfd9b84ab
...
70c2ed8ccc
Author | SHA1 | Date | |
---|---|---|---|
|
70c2ed8ccc | ||
|
b000c1d532 | ||
|
2438e87efa |
3 changed files with 43 additions and 15 deletions
|
@ -530,7 +530,7 @@
|
|||
<div class="my-3">
|
||||
<label for="interval" class="form-label">{{ $t("Heartbeat Interval") }} ({{ $t("checkEverySecond", [ monitor.interval ]) }})</label>
|
||||
<input id="interval" v-model="monitor.interval" type="number" class="form-control" required :min="minInterval" step="1" :max="maxInterval" @blur="finishUpdateInterval">
|
||||
<div class="form-text">
|
||||
<div class="form-text">
|
||||
{{ monitor.humanReadableInterval }}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -215,38 +215,58 @@ export function getToastErrorTimeout() {
|
|||
}
|
||||
|
||||
class RelativeTimeFormatter {
|
||||
// Default locale and options
|
||||
/**
|
||||
* Default locale and options for Relative Time Formatter
|
||||
*/
|
||||
constructor() {
|
||||
this.locale = currentLocale();
|
||||
this.options = { numeric: "auto" };
|
||||
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() {
|
||||
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.options = { ...this.options, ...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) {
|
||||
const days = Math.floor(seconds / 86400);
|
||||
const hours = Math.floor((seconds % 86400) / 3600);
|
||||
const minutes = Math.floor(((seconds % 86400) % 3600) / 60);
|
||||
const secs = ((seconds % 86400) % 3600) % 60;
|
||||
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 res = this.getInstance().formatToParts(value, unitOfTime);
|
||||
console.log(res)
|
||||
let formattedString = res
|
||||
.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 "";
|
||||
|
@ -256,14 +276,22 @@ class RelativeTimeFormatter {
|
|||
parts.push(formattedString);
|
||||
};
|
||||
|
||||
if (days > 0) toFormattedPart(days, "days");
|
||||
if (hours > 0) toFormattedPart(hours, "hour");
|
||||
if (minutes > 0) toFormattedPart(minutes, "minute");
|
||||
if (secs > 0) toFormattedPart(secs, "second");
|
||||
if (days > 0) {
|
||||
toFormattedPart(days, "days");
|
||||
}
|
||||
if (hours > 0) {
|
||||
toFormattedPart(hours, "hour");
|
||||
}
|
||||
if (minutes > 0) {
|
||||
toFormattedPart(minutes, "minute");
|
||||
}
|
||||
if (secs > 0) {
|
||||
toFormattedPart(secs, "second");
|
||||
}
|
||||
|
||||
const result =
|
||||
parts.length > 0
|
||||
? `~ ${parts.join(" ")}`
|
||||
? `${parts.join(" ")}`
|
||||
: this.getInstance().format(0, "second"); // Handle case for 0 seconds
|
||||
|
||||
return result;
|
||||
|
|
Loading…
Reference in a new issue