mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-15 08:59:15 +08:00
28 lines
779 B
TypeScript
28 lines
779 B
TypeScript
import React from 'react';
|
|
|
|
import type { AnyObject } from './type';
|
|
|
|
export function isFragment(child: any): boolean {
|
|
return child && React.isValidElement(child) && child.type === React.Fragment;
|
|
}
|
|
|
|
type RenderProps = AnyObject | ((originProps: AnyObject) => AnyObject | void);
|
|
|
|
export function replaceElement(
|
|
element: React.ReactNode,
|
|
replacement: React.ReactNode,
|
|
props?: RenderProps,
|
|
): React.ReactNode {
|
|
if (!React.isValidElement(element)) {
|
|
return replacement;
|
|
}
|
|
return React.cloneElement(
|
|
element,
|
|
typeof props === 'function' ? props(element.props || {}) : props,
|
|
);
|
|
}
|
|
|
|
export function cloneElement(element: React.ReactNode, props?: RenderProps): React.ReactElement {
|
|
return replaceElement(element, element, props) as React.ReactElement;
|
|
}
|