mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
b8109bd20e
* feat: new component: Space * add config-provider space doc * fix lint fail * revert test -u * improve demo * compatible invalidElement * use inline-flex and wrap * review change * add space version * improve classname * review change * review change
68 lines
1.6 KiB
TypeScript
68 lines
1.6 KiB
TypeScript
import * as React from 'react';
|
|
import classnames from 'classnames';
|
|
import toArray from 'rc-util/lib/Children/toArray';
|
|
import { ConfigConsumerProps, ConfigContext } from '../config-provider';
|
|
import { SizeType } from '../config-provider/SizeContext';
|
|
|
|
export interface SpaceProps {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
size?: SizeType | number;
|
|
direction?: 'horizontal' | 'vertical';
|
|
}
|
|
|
|
const spaceSize = {
|
|
small: 8,
|
|
middle: 16,
|
|
large: 24,
|
|
};
|
|
|
|
const Space: React.FC<SpaceProps> = props => {
|
|
const { getPrefixCls, space }: ConfigConsumerProps = React.useContext(ConfigContext);
|
|
|
|
const {
|
|
size = space?.size || 'small',
|
|
className,
|
|
children,
|
|
direction = 'horizontal',
|
|
prefixCls: customizePrefixCls,
|
|
...otherProps
|
|
} = props;
|
|
|
|
const items = toArray(children);
|
|
const len = items.length;
|
|
|
|
if (len === 0) {
|
|
return null;
|
|
}
|
|
|
|
const prefixCls = getPrefixCls('space', customizePrefixCls);
|
|
const cn = classnames(prefixCls, `${prefixCls}-${direction}`, className);
|
|
|
|
const itemClassName = `${prefixCls}-item`;
|
|
|
|
return (
|
|
<div className={cn} {...otherProps}>
|
|
{items.map((child, i) => (
|
|
<div
|
|
className={itemClassName}
|
|
key={`${itemClassName}-i`}
|
|
style={
|
|
i === len - 1
|
|
? {}
|
|
: {
|
|
[direction === 'vertical' ? 'marginBottom' : 'marginRight']:
|
|
typeof size === 'string' ? spaceSize[size] : size,
|
|
}
|
|
}
|
|
>
|
|
{child}
|
|
</div>
|
|
))}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Space;
|