X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FUtils.ts;h=1a93669dbc334f4b7c2b1d18bd7f049d0625cc4f;hb=a82d03296ad3232474c9f769e02c840bb87d0178;hp=48d0587cbce16e9db798c48877795325e8088eff;hpb=d467756c6bffa394dc17e9a54b97a3679e9a512a;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Utils.ts b/src/utils/Utils.ts index 48d0587c..1a93669d 100644 --- a/src/utils/Utils.ts +++ b/src/utils/Utils.ts @@ -3,13 +3,16 @@ import { inspect } from 'node:util'; import { formatDuration, + hoursToMinutes, + hoursToSeconds, isDate, millisecondsToHours, millisecondsToMinutes, millisecondsToSeconds, + minutesToSeconds, secondsToMilliseconds, } from 'date-fns'; -import clone from 'just-clone'; +import deepClone from 'deep-clone'; import { Constants } from './Constants'; import { type TimestampedData, WebSocketCloseEventStatusString } from '../types'; @@ -36,9 +39,14 @@ export const formatDurationMilliSeconds = (duration: number): string => { duration = convertToInt(duration); const days = Math.floor(duration / (24 * 3600 * 1000)); const hours = Math.floor(millisecondsToHours(duration) - days * 24); - const minutes = Math.floor(millisecondsToMinutes(duration) - days * 24 * 60 - hours * 60); + const minutes = Math.floor( + millisecondsToMinutes(duration) - days * 24 * 60 - hoursToMinutes(hours), + ); const seconds = Math.floor( - millisecondsToSeconds(duration) - days * 24 * 3600 - hours * 3600 - minutes * 60, + millisecondsToSeconds(duration) - + days * 24 * 3600 - + hoursToSeconds(hours) - + minutesToSeconds(minutes), ); return formatDuration({ days, @@ -52,8 +60,8 @@ export const formatDurationSeconds = (duration: number): string => { return formatDurationMilliSeconds(secondsToMilliseconds(duration)); }; -// More efficient date validation function than the one provided by date-fns -export const isValidDate = (date: unknown): boolean => { +// More efficient time validation function than the one provided by date-fns +export const isValidTime = (date: unknown): boolean => { if (typeof date === 'number') { return !isNaN(date); } else if (isDate(date)) { @@ -62,19 +70,20 @@ export const isValidDate = (date: unknown): boolean => { return false; }; -export const convertToDate = ( - value: Date | string | number | null | undefined, -): Date | null | undefined => { +export const convertToDate = (value: Date | string | number | undefined): Date | undefined => { if (isNullOrUndefined(value)) { - return value as null | undefined; + return value as undefined; } - if (value instanceof Date) { - return value; + if (isDate(value)) { + return value as Date; } if (isString(value) || typeof value === 'number') { - return new Date(value!); + const valueToDate = new Date(value as string | number); + if (isNaN(valueToDate.getTime())) { + throw new Error(`Cannot convert to date: '${value as string | number}'`); + } + return valueToDate; } - return null; }; export const convertToInt = (value: unknown): number => { @@ -92,8 +101,7 @@ export const convertToInt = (value: unknown): number => { changedValue = parseInt(value as string); } if (isNaN(changedValue)) { - // eslint-disable-next-line @typescript-eslint/no-base-to-string - throw new Error(`Cannot convert to integer: ${value.toString()}`); + throw new Error(`Cannot convert to integer: '${String(value)}'`); } return changedValue; }; @@ -107,8 +115,7 @@ export const convertToFloat = (value: unknown): number => { changedValue = parseFloat(value as string); } if (isNaN(changedValue)) { - // eslint-disable-next-line @typescript-eslint/no-base-to-string - throw new Error(`Cannot convert to float: ${value.toString()}`); + throw new Error(`Cannot convert to float: '${String(value)}'`); } return changedValue; }; @@ -198,8 +205,19 @@ export const isObject = (item: unknown): boolean => { ); }; -export const cloneObject = (object: T): T => { - return clone(object); +type CloneableData = + | number + | string + | boolean + | null + | undefined + | Date + | CloneableData[] + | { [key: string]: CloneableData }; + +export const cloneObject = (object: T): T => { + // eslint-disable-next-line @typescript-eslint/no-unsafe-call + return deepClone(object as CloneableData) as T; }; export const hasOwnProp = (object: unknown, property: PropertyKey): boolean => {