mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-26 06:39:31 -05:00
35 lines
935 B
TypeScript
35 lines
935 B
TypeScript
import { compact, flattenDeep, isEqual } from 'lodash'
|
|
|
|
export const arrify = <T>(maybeArr: T | T[]) =>
|
|
Array.isArray(maybeArr) ? maybeArr : [maybeArr]
|
|
|
|
export function filterDefined<T>(array: (T | null | undefined)[]) {
|
|
return array.filter((item) => item !== null && item !== undefined) as T[]
|
|
}
|
|
|
|
type Falsey = false | undefined | null | 0 | ''
|
|
type FalseyValueArray<T> = T | Falsey | FalseyValueArray<T>[]
|
|
|
|
export function buildArray<T>(...params: FalseyValueArray<T>[]) {
|
|
return compact(flattenDeep(params)) as T[]
|
|
}
|
|
|
|
export function groupConsecutive<T, U>(xs: T[], key: (x: T) => U) {
|
|
if (!xs.length) {
|
|
return []
|
|
}
|
|
const result = []
|
|
let curr = { key: key(xs[0]), items: [xs[0]] }
|
|
for (const x of xs.slice(1)) {
|
|
const k = key(x)
|
|
if (!isEqual(k, curr.key)) {
|
|
result.push(curr)
|
|
curr = { key: k, items: [x] }
|
|
} else {
|
|
curr.items.push(x)
|
|
}
|
|
}
|
|
result.push(curr)
|
|
return result
|
|
}
|