mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
e12a76b3ab
* chore: ssr fix * test: add test case * test: fix test logic * test: update snapshot
44 lines
986 B
TypeScript
44 lines
986 B
TypeScript
import React, { forwardRef } from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
import type { InternalPanelProps, PanelProps } from './interface';
|
|
|
|
export const InternalPanel = forwardRef<
|
|
HTMLDivElement,
|
|
React.PropsWithChildren<InternalPanelProps>
|
|
>((props, ref) => {
|
|
const { prefixCls, className, children, size, style = {} } = props;
|
|
const panelClassName = classNames(
|
|
`${prefixCls}-panel`,
|
|
{
|
|
[`${prefixCls}-panel-hidden`]: size === 0,
|
|
},
|
|
className,
|
|
);
|
|
|
|
const hasSize = size !== undefined;
|
|
|
|
return (
|
|
<div
|
|
ref={ref}
|
|
className={panelClassName}
|
|
style={{
|
|
...style,
|
|
// Use auto when start from ssr
|
|
flexBasis: hasSize ? size : 'auto',
|
|
flexGrow: hasSize ? 0 : 1,
|
|
}}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
});
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
InternalPanel.displayName = 'Panel';
|
|
}
|
|
|
|
const Panel: React.FC<React.PropsWithChildren<PanelProps>> = () => null;
|
|
|
|
export default Panel;
|