|
|
|
|
|
|
|
|
|
|
|
import * as React from 'react'; |
|
|
import { isValidElement, cloneElement, createElement, Component, FunctionComponent, ReactElement } from 'react'; |
|
|
|
|
|
import { Layer } from '../container/Layer'; |
|
|
import { warn } from '../util/LogUtils'; |
|
|
|
|
|
type Comp<P> = FunctionComponent<P> | Component<P> | ReactElement<P>; |
|
|
export type Props<P, C extends Comp<P>> = P & { |
|
|
component: C; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function Customized<P, C extends Comp<P>>({ component, ...props }: Props<P, C>) { |
|
|
let child; |
|
|
if (isValidElement(component)) { |
|
|
child = cloneElement(component, props); |
|
|
} else if (typeof component === 'function') { |
|
|
child = createElement(component, props as any); |
|
|
} else { |
|
|
warn(false, "Customized's props `component` must be React.element or Function, but got %s.", typeof component); |
|
|
} |
|
|
return <Layer className="recharts-customized-wrapper">{child}</Layer>; |
|
|
} |
|
|
|
|
|
Customized.displayName = 'Customized'; |
|
|
|