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 = 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 ( {child} ); /* eslint-enable */ }); return (
{nodes}
); }; export default Space;