improve time input (#307)

* add the ability to parse time like 2h20m

---------

Co-authored-by: Fabian Posenau <fabian@fphome.de>
This commit is contained in:
Fabian Posenau
2023-03-06 19:47:09 +01:00
committed by GitHub
parent 5b977790b0
commit 11648ee546
2 changed files with 58 additions and 40 deletions
@@ -299,6 +299,15 @@ describe('test forgivingStringToMillis()', () => {
{ value: '010000', expect: 1000 * 60 * 60 }, { value: '010000', expect: 1000 * 60 * 60 },
{ value: '230000', expect: 1000 * 60 * 60 * 23 }, { value: '230000', expect: 1000 * 60 * 60 * 23 },
{ value: '121212', expect: 12 * 1000 + 12 * 60 * 1000 + 12 * 1000 * 60 * 60 }, { value: '121212', expect: 12 * 1000 + 12 * 60 * 1000 + 12 * 1000 * 60 * 60 },
{ value: '0h0m0s', expect: 0 },
{ value: '0h0m1s', expect: 1000 },
{ value: '0h1m0s', expect: 1000 * 60 },
{ value: '1h0m0s', expect: 1000 * 60 * 60 },
{ value: '23h0m0s', expect: 1000 * 60 * 60 * 23 },
{ value: '12h12m12s', expect: 12 * 1000 + 12 * 60 * 1000 + 12 * 1000 * 60 * 60 },
{ value: '2m', expect: 2 * 60 * 1000 },
{ value: '1h5s', expect: 1000 * 60 * 60 + 1000 * 5 },
{ value: '1h2m', expect: 1000 * 60 * 60 + 1000 * 60 * 2 },
]; ];
for (const s of testData) { for (const s of testData) {
@@ -10,13 +10,13 @@ export const timeFormatSeconds = 'HH:mm:ss';
* @param {boolean} [hideZero] - whether to show hours in case its 00 * @param {boolean} [hideZero] - whether to show hours in case its 00
* @returns {string} String representing absolute time 00:12:02 * @returns {string} String representing absolute time 00:12:02
*/ */
export function formatDisplay(seconds, hideZero = false) { export function formatDisplay(seconds: number | null, hideZero = false): string {
if (typeof seconds !== 'number') { if (typeof seconds !== 'number') {
return hideZero ? '00:00' : '00:00:00'; return hideZero ? '00:00' : '00:00:00';
} }
// add an extra 0 if necessary // add an extra 0 if necessary
const format = (val) => `0${Math.floor(val)}`.slice(-2); const format = (val: number) => `0${Math.floor(val)}`.slice(-2);
const s = Math.abs(seconds); const s = Math.abs(seconds);
const hours = Math.floor((s / 3600) % 24); const hours = Math.floor((s / 3600) % 24);
@@ -31,7 +31,7 @@ export function formatDisplay(seconds, hideZero = false) {
* @param {number | null} millis - time in seconds * @param {number | null} millis - time in seconds
* @returns {number} Amount in seconds * @returns {number} Amount in seconds
*/ */
export const millisToSeconds = (millis) => { export const millisToSeconds = (millis: number | null): number => {
if (millis === null) { if (millis === null) {
return 0; return 0;
} }
@@ -43,7 +43,7 @@ export const millisToSeconds = (millis) => {
* @param {number} millis - time in seconds * @param {number} millis - time in seconds
* @returns {number} Amount in seconds * @returns {number} Amount in seconds
*/ */
export const millisToMinutes = (millis) => { export const millisToMinutes = (millis: number): number => {
return millis < 0 ? Math.ceil(millis / mtm) : Math.floor(millis / mtm); return millis < 0 ? Math.ceil(millis / mtm) : Math.floor(millis / mtm);
}; };
@@ -52,7 +52,7 @@ export const millisToMinutes = (millis) => {
* @param {string} string - time string "23:00:12" * @param {string} string - time string "23:00:12"
* @returns {number} Amount in milliseconds * @returns {number} Amount in milliseconds
*/ */
export const timeStringToMillis = (string) => { export const timeStringToMillis = (string: string): number => {
if (typeof string !== 'string') return 0; if (typeof string !== 'string') return 0;
const time = string.split(':'); const time = string.split(':');
if (time.length === 1) return Math.abs(time[0] * mts); if (time.length === 1) return Math.abs(time[0] * mts);
@@ -66,7 +66,7 @@ export const timeStringToMillis = (string) => {
* @param {string} string - time string "23:00:12" * @param {string} string - time string "23:00:12"
* @returns {boolean} string represents time * @returns {boolean} string represents time
*/ */
export const isTimeString = (string) => { export const isTimeString = (string: string): boolean => {
// ^ # Start of string // ^ # Start of string
// (?: # Try to match... // (?: # Try to match...
// (?: # Try to match... // (?: # Try to match...
@@ -83,10 +83,10 @@ export const isTimeString = (string) => {
/** /**
* @description safe parse string to int * @description safe parse string to int
* @param valueAsString * @param {string} valueAsString
* @return {number} * @return {number}
*/ */
const parse = (valueAsString) => { const parse = (valueAsString: string): number => {
const parsed = parseInt(valueAsString, 10); const parsed = parseInt(valueAsString, 10);
if (isNaN(parsed)) { if (isNaN(parsed)) {
return 0; return 0;
@@ -100,44 +100,53 @@ const parse = (valueAsString) => {
* @param {boolean} fillLeft - autofill left = hours / right = seconds * @param {boolean} fillLeft - autofill left = hours / right = seconds
* @returns {number} - time string in millis * @returns {number} - time string in millis
*/ */
export const forgivingStringToMillis = (value, fillLeft = true) => { export const forgivingStringToMillis = (value: string, fillLeft = true): number => {
let millis = 0; let millis = 0;
// split string at known separators : , . const hours = parseInt(value.match(/(\d+)h/)?.[0] ?? 0, 10);
const separatorRegex = /[\s,:.]+/; const minutes = parseInt(value.match(/(\d+)m/)?.[0] ?? 0, 10);
const [first, second, third] = value.split(separatorRegex); const seconds = parseInt(value.match(/(\d+)s/)?.[0] ?? 0, 10);
if (first != null && second != null && third != null) { if (hours > 0 || minutes > 0 || seconds > 0) {
// if string has three sections, treat as [hours] [minutes] [seconds] millis = hours * mth + minutes * mtm + seconds * mts;
millis = parse(first) * mth; } else {
millis += parse(second) * mtm; // split string at known separators : , .
millis += parse(third) * mts; const separatorRegex = /[\s,:.]+/;
} else if (first != null && second == null && third == null) { const [first, second, third] = value.split(separatorRegex);
// if string has one section,
// could be a complete string like 121010 - 12:10:10 if (first != null && second != null && third != null) {
if (first.length === 6) { // if string has three sections, treat as [hours] [minutes] [seconds]
const hours = first.substring(0, 2);
const minutes = first.substring(2, 4);
const seconds = first.substring(4);
millis = parse(hours) * mth;
millis += parse(minutes) * mtm;
millis += parse(seconds) * mts;
} else {
// otherwise lets treat as [minutes]
millis = parse(first) * mtm;
}
}
if (first != null && second != null && third == null) {
// if string has two sections
if (fillLeft) {
// treat as [hours] [minutes]
millis = parse(first) * mth; millis = parse(first) * mth;
millis += parse(second) * mtm; millis += parse(second) * mtm;
} else { millis += parse(third) * mts;
// treat as [minutes] [seconds] } else if (first != null && second == null && third == null) {
millis = parse(first) * mtm; // if string has one section,
millis += parse(second) * mts; // could be a complete string like 121010 - 12:10:10
if (first.length === 6) {
const hours = first.substring(0, 2);
const minutes = first.substring(2, 4);
const seconds = first.substring(4);
millis = parse(hours) * mth;
millis += parse(minutes) * mtm;
millis += parse(seconds) * mts;
} else {
// otherwise lets treat as [minutes]
millis = parse(first) * mtm;
}
}
if (first != null && second != null && third == null) {
// if string has two sections
if (fillLeft) {
// treat as [hours] [minutes]
millis = parse(first) * mth;
millis += parse(second) * mtm;
} else {
// treat as [minutes] [seconds]
millis = parse(first) * mtm;
millis += parse(second) * mts;
}
} }
} }
return millis; return millis;
}; };