You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

88 lines
2.3 KiB

import * as React from 'react';
import classNames from 'classnames';
import toArray from 'rc-util/lib/Children/toArray';
import { ConfigContext } from '../config-provider';
import { SizeType } from '../config-provider/SizeContext';
import Item from './Item';
export const LastIndexContext = React.createContext(0);
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';
split?: React.ReactNode;
}
const Space: React.FC<SpaceProps> = props => {
const { getPrefixCls, space, direction: directionConfig } = React.useContext(ConfigContext);
const {
size = space?.size || 'small',
align,
className,
children,
direction = 'horizontal',
prefixCls: customizePrefixCls,
split,
...otherProps
} = props;
const childNodes = toArray(children, { keepEmpty: true });
if (childNodes.length === 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';
// Calculate latest one
let latestIndex = 0;
const nodes = childNodes.map((child, i) => {
if (child !== null && child !== undefined) {
latestIndex = i;
}
/* eslint-disable react/no-array-index-key */
return (
<Item
className={itemClassName}
key={`${itemClassName}-${i}`}
direction={direction}
size={size}
index={i}
marginDirection={marginDirection}
split={split}
>
{child}
</Item>
);
/* eslint-enable */
});
return (
<div className={cn} {...otherProps}>
<LastIndexContext.Provider value={latestIndex}>{nodes}</LastIndexContext.Provider>
</div>
);
};
export default Space;