| import get from 'es-toolkit/compat/get'; |
|
|
| export const mathSign = (value: number) => { |
| if (value === 0) { |
| return 0; |
| } |
| if (value > 0) { |
| return 1; |
| } |
|
|
| return -1; |
| }; |
|
|
| export const isNan = (value: unknown): boolean => { |
| |
| return typeof value == 'number' && value != +value; |
| }; |
|
|
| export const isPercent = (value: string | number): value is `${number}%` => |
| typeof value === 'string' && value.indexOf('%') === value.length - 1; |
|
|
| export const isNumber = (value: unknown): value is number => |
| (typeof value === 'number' || value instanceof Number) && !isNan(value); |
|
|
| export const isNumOrStr = (value: unknown): value is number | string => isNumber(value) || typeof value === 'string'; |
|
|
| let idCounter = 0; |
| export const uniqueId = (prefix?: string) => { |
| const id = ++idCounter; |
|
|
| return `${prefix || ''}${id}`; |
| }; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| export const getPercentValue = ( |
| percent: number | string, |
| totalValue: number | undefined, |
| defaultValue = 0, |
| validate = false, |
| ) => { |
| if (!isNumber(percent) && typeof percent !== 'string') { |
| return defaultValue; |
| } |
|
|
| let value: number; |
|
|
| if (isPercent(percent)) { |
| if (totalValue == null) { |
| return defaultValue; |
| } |
| const index = percent.indexOf('%'); |
| value = (totalValue * parseFloat((percent as string).slice(0, index))) / 100; |
| } else { |
| value = +percent; |
| } |
|
|
| if (isNan(value)) { |
| value = defaultValue; |
| } |
|
|
| if (validate && totalValue != null && value > totalValue) { |
| value = totalValue; |
| } |
|
|
| return value; |
| }; |
|
|
| export const hasDuplicate = (ary: ReadonlyArray<unknown>): boolean => { |
| if (!Array.isArray(ary)) { |
| return false; |
| } |
|
|
| const len = ary.length; |
| const cache: Record<string, boolean> = {}; |
|
|
| for (let i = 0; i < len; i++) { |
| if (!cache[ary[i]]) { |
| cache[ary[i]] = true; |
| } else { |
| return true; |
| } |
| } |
|
|
| return false; |
| }; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| export const interpolateNumber = (numberA: number | undefined, numberB: number | undefined) => { |
| if (isNumber(numberA) && isNumber(numberB)) { |
| return (t: number) => numberA + t * (numberB - numberA); |
| } |
|
|
| return () => numberB; |
| }; |
|
|
| export function interpolate(start: unknown, end: number, t: number): number; |
| export function interpolate(start: unknown, end: null, t: number): null; |
| export function interpolate(start: unknown, end: number | null, t: number): number | null; |
| export function interpolate(start: unknown, end: number | null, t: number): number | null { |
| if (isNumber(start) && isNumber(end)) { |
| return start + t * (end - start); |
| } |
| return end; |
| } |
|
|
| export function findEntryInArray<T>( |
| ary: ReadonlyArray<T>, |
| specifiedKey: number | string | ((entry: T) => unknown), |
| specifiedValue: unknown, |
| ): T | undefined { |
| if (!ary || !ary.length) { |
| return undefined; |
| } |
|
|
| return ary.find( |
| entry => |
| entry && (typeof specifiedKey === 'function' ? specifiedKey(entry) : get(entry, specifiedKey)) === specifiedValue, |
| ); |
| } |
|
|
| |
| |
| |
| |
| |
| export const getLinearRegression = (data: ReadonlyArray<{ cx?: number; cy?: number }>) => { |
| if (!data || !data.length) { |
| return null; |
| } |
|
|
| const len = data.length; |
| let xsum = 0; |
| let ysum = 0; |
| let xysum = 0; |
| let xxsum = 0; |
| let xmin = Infinity; |
| let xmax = -Infinity; |
| let xcurrent = 0; |
| let ycurrent = 0; |
|
|
| for (let i = 0; i < len; i++) { |
| xcurrent = data[i].cx || 0; |
| ycurrent = data[i].cy || 0; |
|
|
| xsum += xcurrent; |
| ysum += ycurrent; |
| xysum += xcurrent * ycurrent; |
| xxsum += xcurrent * xcurrent; |
| xmin = Math.min(xmin, xcurrent); |
| xmax = Math.max(xmax, xcurrent); |
| } |
|
|
| const a = len * xxsum !== xsum * xsum ? (len * xysum - xsum * ysum) / (len * xxsum - xsum * xsum) : 0; |
|
|
| return { |
| xmin, |
| xmax, |
| a, |
| b: (ysum - a * xsum) / len, |
| }; |
| }; |
|
|
| type Nullish = null | undefined; |
|
|
| |
| |
| |
| |
| |
| export const isNullish = (value: unknown): value is Nullish => { |
| return value === null || typeof value === 'undefined'; |
| }; |
|
|
| |
| |
| |
| |
| |
| export const upperFirst = (value: string): string => { |
| if (isNullish(value)) { |
| return value; |
| } |
|
|
| return `${value.charAt(0).toUpperCase()}${value.slice(1)}`; |
| }; |
|
|