mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
77 lines
2 KiB
TypeScript
77 lines
2 KiB
TypeScript
import {
|
|
Children,
|
|
cloneElement,
|
|
type FC,
|
|
Fragment,
|
|
isValidElement,
|
|
type ReactElement,
|
|
type ReactNode,
|
|
} from 'react';
|
|
|
|
export function getFragmentChildren(children: ReactNode) {
|
|
return (children as ReactElement)?.type === Fragment
|
|
? (children as ReactElement).props.children
|
|
: children;
|
|
}
|
|
|
|
export function isValidChild(child: ReactElement, types: FC | FC[]) {
|
|
if (!isValidElement(child)) {
|
|
return false;
|
|
}
|
|
return (Array.isArray(types) ? types : [types]).find(type => type === child.type);
|
|
}
|
|
|
|
export function mapChildren(
|
|
children: ReactNode,
|
|
handler: (child: ReactElement, index: number) => any,
|
|
) {
|
|
return Children.map(getFragmentChildren(children) as ReactElement[], (child, index) => {
|
|
if (!child?.props) {
|
|
return null;
|
|
}
|
|
return handler(child, index);
|
|
});
|
|
}
|
|
|
|
export function cloneChildren(
|
|
children: ReactNode,
|
|
handler: (child: ReactElement, index: number) => any,
|
|
options?: { validChildren?: any[]; onlyRenderValid?: boolean },
|
|
): ReactNode {
|
|
if (!children) {
|
|
return null;
|
|
}
|
|
|
|
const { validChildren, onlyRenderValid = false } = options || {};
|
|
|
|
return mapChildren(children, (child, index) => {
|
|
const invalid = validChildren && !isValidChild(child as ReactElement, validChildren);
|
|
|
|
if (onlyRenderValid && invalid) {
|
|
return null;
|
|
}
|
|
|
|
if (!invalid && isValidElement(child)) {
|
|
return cloneElement(child, handler(child, index));
|
|
}
|
|
|
|
return child;
|
|
});
|
|
}
|
|
|
|
export function renderChildren(
|
|
children: ReactNode | ((item: any, index: number, array: any) => ReactNode),
|
|
items: any[],
|
|
handler: (child: ReactElement, index: number) => object | undefined,
|
|
options?: { validChildren?: any[]; onlyRenderValid?: boolean },
|
|
): ReactNode {
|
|
if (typeof children === 'function' && items?.length > 0) {
|
|
return cloneChildren(items.map(children), handler, options);
|
|
}
|
|
|
|
return cloneChildren(getFragmentChildren(children as ReactNode), handler, options);
|
|
}
|
|
|
|
export function countChildren(children: ReactNode): number {
|
|
return Children.count(getFragmentChildren(children));
|
|
}
|