ant-design/components/space/index.tsx
二货机器人 7e9fe271ed
feat: Space support align (#23306)
* support align

* update demo & snapshot

* update comment

* update docs

* Update components/space/index.en-US.md

Co-Authored-By: 骗你是小猫咪 <darryshaw@gmail.com>

* update doc

Co-authored-by: 骗你是小猫咪 <darryshaw@gmail.com>
2020-04-16 12:28:04 +08:00

85 lines
2.1 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';
// No `stretch` since many components do not support that.
align?: 'start' | 'end' | 'center' | 'baseline';
}
const spaceSize = {
small: 8,
middle: 16,
large: 24,
};
const Space: React.FC<SpaceProps> = props => {
const { getPrefixCls, space, direction: directionConfig }: ConfigConsumerProps = React.useContext(
ConfigContext,
);
const {
size = space?.size || 'small',
align,
className,
children,
direction = 'horizontal',
prefixCls: customizePrefixCls,
...otherProps
} = props;
const items = toArray(children);
const len = items.length;
if (len === 0) {
return null;
}
const mergedAlign = align === undefined && direction === 'horizontal' ? 'center' : align;
const prefixCls = getPrefixCls('space', customizePrefixCls);
const cn = classNames(
prefixCls,
`${prefixCls}-${direction}`,
{
[`${prefixCls}-rtl`]: directionConfig === 'rtl',
[`${prefixCls}-align-${mergedAlign}`]: mergedAlign,
},
className,
);
const itemClassName = `${prefixCls}-item`;
const marginDirection = directionConfig === 'rtl' ? 'marginLeft' : 'marginRight';
return (
<div className={cn} {...otherProps}>
{items.map((child, i) => (
<div
className={itemClassName}
// eslint-disable-next-line react/no-array-index-key
key={`${itemClassName}-${i}`}
style={
i === len - 1
? {}
: {
[direction === 'vertical' ? 'marginBottom' : marginDirection]:
typeof size === 'string' ? spaceSize[size] : size,
}
}
>
{child}
</div>
))}
</div>
);
};
export default Space;