1 |
export function stringToTimeInterval(input: string, { milliseconds = false } = {}) { |
2 |
let seconds = 0; |
3 |
let number = ""; |
4 |
|
5 |
for (let i = 0; i < input.length; i++) { |
6 |
if (["1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "."].includes(input[i])) { |
7 |
number += input[i]; |
8 |
} else { |
9 |
const unit = input.substring(i); |
10 |
const float = parseFloat(number.toString()); |
11 |
|
12 |
if (Number.isNaN(float)) { |
13 |
return { error: "Invalid numeric time value", result: NaN }; |
14 |
} |
15 |
|
16 |
if (["s", "sec", "secs", "second", "seconds"].includes(`${unit}`)) { |
17 |
seconds += float; |
18 |
} else if (["m", "min", "mins", "minute", "minutes"].includes(`${unit}`)) { |
19 |
seconds += float * 60; |
20 |
} else if (["h", "hr", "hrs", "hour", "hours"].includes(unit)) { |
21 |
seconds += float * 60 * 60; |
22 |
} else if (["d", "dy", "dys", "day", "days"].includes(unit)) { |
23 |
seconds += float * 60 * 60 * 24; |
24 |
} else if (["w", "wk", "wks", "week", "weeks"].includes(unit)) { |
25 |
seconds += float * 60 * 60 * 24 * 7; |
26 |
} else if (["M", "mo", "mos", "month", "months"].includes(unit)) { |
27 |
seconds += float * 60 * 60 * 24 * 30; |
28 |
} else if (["y", "yr", "yrs", "year", "years"].includes(unit)) { |
29 |
seconds += float * 60 * 60 * 24 * 365; |
30 |
} else { |
31 |
return { error: "Invalid time unit", result: NaN }; |
32 |
} |
33 |
|
34 |
break; |
35 |
} |
36 |
} |
37 |
|
38 |
return { error: undefined, result: seconds * (milliseconds ? 1000 : 1) }; |
39 |
} |
40 |
|
41 |
export function displayDate(date: Date) { |
42 |
return displayTimeSeconds(Math.round(date.getTime() / 1000)); |
43 |
} |
44 |
|
45 |
export function displayTimeSeconds(seconds: number) { |
46 |
return `<t:${seconds}:f> (<t:${seconds}:R>)`; |
47 |
} |