2023-06-12 21:15:23 +10:00
|
|
|
import { IconName, IconSrc } from 'folds';
|
|
|
|
|
|
|
|
|
|
export const bytesToSize = (bytes: number): string => {
|
|
|
|
|
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
|
|
|
|
|
if (bytes === 0) return '0KB';
|
|
|
|
|
|
|
|
|
|
let sizeIndex = Math.floor(Math.log(bytes) / Math.log(1000));
|
|
|
|
|
|
|
|
|
|
if (sizeIndex === 0) sizeIndex = 1;
|
|
|
|
|
|
|
|
|
|
return `${(bytes / 1000 ** sizeIndex).toFixed(1)} ${sizes[sizeIndex]}`;
|
|
|
|
|
};
|
|
|
|
|
|
2023-10-06 13:44:06 +11:00
|
|
|
export const millisecondsToMinutesAndSeconds = (milliseconds: number): string => {
|
|
|
|
|
const seconds = Math.floor(milliseconds / 1000);
|
|
|
|
|
const mm = Math.floor(seconds / 60);
|
|
|
|
|
const ss = Math.round(seconds % 60);
|
|
|
|
|
return `${mm}:${ss < 10 ? '0' : ''}${ss}`;
|
|
|
|
|
};
|
|
|
|
|
|
2025-08-05 18:37:07 +05:30
|
|
|
export const millisecondsToMinutes = (milliseconds: number): string => {
|
|
|
|
|
const seconds = Math.floor(milliseconds / 1000);
|
|
|
|
|
const mm = Math.floor(seconds / 60);
|
|
|
|
|
|
|
|
|
|
return mm.toString();
|
|
|
|
|
};
|
|
|
|
|
|
2023-10-06 13:44:06 +11:00
|
|
|
export const secondsToMinutesAndSeconds = (seconds: number): string => {
|
|
|
|
|
const mm = Math.floor(seconds / 60);
|
|
|
|
|
const ss = Math.round(seconds % 60);
|
|
|
|
|
return `${mm}:${ss < 10 ? '0' : ''}${ss}`;
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-12 21:15:23 +10:00
|
|
|
export const getFileTypeIcon = (icons: Record<IconName, IconSrc>, fileType: string): IconSrc => {
|
|
|
|
|
const type = fileType.toLowerCase();
|
|
|
|
|
if (type.startsWith('audio')) {
|
|
|
|
|
return icons.Play;
|
|
|
|
|
}
|
|
|
|
|
if (type.startsWith('video')) {
|
|
|
|
|
return icons.Vlc;
|
|
|
|
|
}
|
|
|
|
|
if (type.startsWith('image')) {
|
|
|
|
|
return icons.Photo;
|
|
|
|
|
}
|
|
|
|
|
return icons.File;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const fulfilledPromiseSettledResult = <T>(prs: PromiseSettledResult<T>[]): T[] =>
|
|
|
|
|
prs.reduce<T[]>((values, pr) => {
|
|
|
|
|
if (pr.status === 'fulfilled') values.push(pr.value);
|
|
|
|
|
return values;
|
|
|
|
|
}, []);
|
2023-10-06 13:44:06 +11:00
|
|
|
|
2024-01-21 23:50:56 +11:00
|
|
|
export const promiseFulfilledResult = <T>(
|
|
|
|
|
settledResult: PromiseSettledResult<T>
|
|
|
|
|
): T | undefined => {
|
|
|
|
|
if (settledResult.status === 'fulfilled') return settledResult.value;
|
|
|
|
|
return undefined;
|
|
|
|
|
};
|
|
|
|
|
export const promiseRejectedResult = <T>(settledResult: PromiseSettledResult<T>): any => {
|
|
|
|
|
if (settledResult.status === 'rejected') return settledResult.reason;
|
|
|
|
|
return undefined;
|
|
|
|
|
};
|
|
|
|
|
|
2023-10-06 13:44:06 +11:00
|
|
|
export const binarySearch = <T>(items: T[], match: (item: T) => -1 | 0 | 1): T | undefined => {
|
|
|
|
|
const search = (start: number, end: number): T | undefined => {
|
|
|
|
|
if (start > end) return undefined;
|
|
|
|
|
|
|
|
|
|
const mid = Math.floor((start + end) / 2);
|
|
|
|
|
|
|
|
|
|
const result = match(items[mid]);
|
|
|
|
|
if (result === 0) return items[mid];
|
|
|
|
|
|
|
|
|
|
if (result === 1) return search(start, mid - 1);
|
|
|
|
|
return search(mid + 1, end);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return search(0, items.length - 1);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const randomNumberBetween = (min: number, max: number) =>
|
|
|
|
|
Math.floor(Math.random() * (max - min + 1)) + min;
|
|
|
|
|
|
|
|
|
|
export const scaleYDimension = (x: number, scaledX: number, y: number): number => {
|
|
|
|
|
const scaleFactor = scaledX / x;
|
|
|
|
|
return scaleFactor * y;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const parseGeoUri = (location: string) => {
|
2026-03-09 18:17:15 +11:00
|
|
|
try {
|
|
|
|
|
const [, data] = location.split(':');
|
|
|
|
|
const [cords] = data.split(';');
|
|
|
|
|
const [latitude, longitude] = cords.split(',');
|
|
|
|
|
|
|
|
|
|
if (typeof latitude === 'string' && typeof longitude === 'string') {
|
|
|
|
|
return {
|
|
|
|
|
latitude,
|
|
|
|
|
longitude,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
return undefined;
|
|
|
|
|
} catch {
|
|
|
|
|
return undefined;
|
|
|
|
|
}
|
2023-10-06 13:44:06 +11:00
|
|
|
};
|
2024-01-21 23:50:56 +11:00
|
|
|
|
|
|
|
|
const START_SLASHES_REG = /^\/+/g;
|
|
|
|
|
const END_SLASHES_REG = /\/+$/g;
|
|
|
|
|
export const trimLeadingSlash = (str: string): string => str.replace(START_SLASHES_REG, '');
|
|
|
|
|
export const trimTrailingSlash = (str: string): string => str.replace(END_SLASHES_REG, '');
|
|
|
|
|
|
|
|
|
|
export const trimSlash = (str: string): string => trimLeadingSlash(trimTrailingSlash(str));
|
2024-05-31 19:49:46 +05:30
|
|
|
|
|
|
|
|
export const nameInitials = (str: string | undefined | null, len = 1): string => {
|
|
|
|
|
if (!str) return '�';
|
|
|
|
|
return [...str].slice(0, len).join('') || '�';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const randomStr = (len = 12): string => {
|
2026-05-20 21:11:38 -04:00
|
|
|
const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|
|
|
|
|
const buf = new Uint8Array(len);
|
|
|
|
|
crypto.getRandomValues(buf);
|
|
|
|
|
return Array.from(buf, (b) => chars[b % chars.length]).join('');
|
2024-05-31 19:49:46 +05:30
|
|
|
};
|
2025-02-10 16:49:47 +11:00
|
|
|
|
|
|
|
|
export const suffixRename = (name: string, validator: (newName: string) => boolean): string => {
|
|
|
|
|
let suffix = 1;
|
|
|
|
|
let newName = name;
|
|
|
|
|
do {
|
|
|
|
|
newName = name + suffix;
|
|
|
|
|
suffix += 1;
|
|
|
|
|
} while (validator(newName));
|
|
|
|
|
|
|
|
|
|
return newName;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const replaceSpaceWithDash = (str: string): string => str.replace(/ /g, '-');
|
2025-05-13 16:16:22 +05:30
|
|
|
|
|
|
|
|
export const splitWithSpace = (content: string): string[] => {
|
|
|
|
|
const trimmedContent = content.trim();
|
|
|
|
|
if (trimmedContent === '') return [];
|
|
|
|
|
return trimmedContent.split(' ');
|
|
|
|
|
};
|