110 lines
4.5 KiB
JavaScript
110 lines
4.5 KiB
JavaScript
"use client";
|
|
|
|
var __rest = this && this.__rest || function (s, e) {
|
|
var t = {};
|
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
|
}
|
|
return t;
|
|
};
|
|
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import toArray from "rc-util/es/Children/toArray";
|
|
import { isPresetSize, isValidGapNumber } from '../_util/gapSize';
|
|
import { useComponentConfig } from '../config-provider/context';
|
|
import Compact from './Compact';
|
|
import { SpaceContextProvider } from './context';
|
|
import Item from './Item';
|
|
import useStyle from './style';
|
|
export { SpaceContext } from './context';
|
|
const InternalSpace = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
var _a;
|
|
const {
|
|
getPrefixCls,
|
|
direction: directionConfig,
|
|
size: contextSize,
|
|
className: contextClassName,
|
|
style: contextStyle,
|
|
classNames: contextClassNames,
|
|
styles: contextStyles
|
|
} = useComponentConfig('space');
|
|
const {
|
|
size = contextSize !== null && contextSize !== void 0 ? contextSize : 'small',
|
|
align,
|
|
className,
|
|
rootClassName,
|
|
children,
|
|
direction = 'horizontal',
|
|
prefixCls: customizePrefixCls,
|
|
split,
|
|
style,
|
|
wrap = false,
|
|
classNames: customClassNames,
|
|
styles
|
|
} = props,
|
|
otherProps = __rest(props, ["size", "align", "className", "rootClassName", "children", "direction", "prefixCls", "split", "style", "wrap", "classNames", "styles"]);
|
|
const [horizontalSize, verticalSize] = Array.isArray(size) ? size : [size, size];
|
|
const isPresetVerticalSize = isPresetSize(verticalSize);
|
|
const isPresetHorizontalSize = isPresetSize(horizontalSize);
|
|
const isValidVerticalSize = isValidGapNumber(verticalSize);
|
|
const isValidHorizontalSize = isValidGapNumber(horizontalSize);
|
|
const childNodes = toArray(children, {
|
|
keepEmpty: true
|
|
});
|
|
const mergedAlign = align === undefined && direction === 'horizontal' ? 'center' : align;
|
|
const prefixCls = getPrefixCls('space', customizePrefixCls);
|
|
const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls);
|
|
const cls = classNames(prefixCls, contextClassName, hashId, `${prefixCls}-${direction}`, {
|
|
[`${prefixCls}-rtl`]: directionConfig === 'rtl',
|
|
[`${prefixCls}-align-${mergedAlign}`]: mergedAlign,
|
|
[`${prefixCls}-gap-row-${verticalSize}`]: isPresetVerticalSize,
|
|
[`${prefixCls}-gap-col-${horizontalSize}`]: isPresetHorizontalSize
|
|
}, className, rootClassName, cssVarCls);
|
|
const itemClassName = classNames(`${prefixCls}-item`, (_a = customClassNames === null || customClassNames === void 0 ? void 0 : customClassNames.item) !== null && _a !== void 0 ? _a : contextClassNames.item);
|
|
const mergedItemStyle = Object.assign(Object.assign({}, contextStyles.item), styles === null || styles === void 0 ? void 0 : styles.item);
|
|
// Calculate latest one
|
|
const renderedItems = childNodes.map((child, i) => {
|
|
const key = (child === null || child === void 0 ? void 0 : child.key) || `${itemClassName}-${i}`;
|
|
return /*#__PURE__*/React.createElement(Item, {
|
|
className: itemClassName,
|
|
key: key,
|
|
index: i,
|
|
split: split,
|
|
style: mergedItemStyle
|
|
}, child);
|
|
});
|
|
const memoizedSpaceContext = React.useMemo(() => {
|
|
const calcLatestIndex = childNodes.reduce((latest, child, i) => child !== null && child !== undefined ? i : latest, 0);
|
|
return {
|
|
latestIndex: calcLatestIndex
|
|
};
|
|
}, [childNodes]);
|
|
// =========================== Render ===========================
|
|
if (childNodes.length === 0) {
|
|
return null;
|
|
}
|
|
const gapStyle = {};
|
|
if (wrap) {
|
|
gapStyle.flexWrap = 'wrap';
|
|
}
|
|
if (!isPresetHorizontalSize && isValidHorizontalSize) {
|
|
gapStyle.columnGap = horizontalSize;
|
|
}
|
|
if (!isPresetVerticalSize && isValidVerticalSize) {
|
|
gapStyle.rowGap = verticalSize;
|
|
}
|
|
return wrapCSSVar(/*#__PURE__*/React.createElement("div", Object.assign({
|
|
ref: ref,
|
|
className: cls,
|
|
style: Object.assign(Object.assign(Object.assign({}, gapStyle), contextStyle), style)
|
|
}, otherProps), /*#__PURE__*/React.createElement(SpaceContextProvider, {
|
|
value: memoizedSpaceContext
|
|
}, renderedItems)));
|
|
});
|
|
const Space = InternalSpace;
|
|
Space.Compact = Compact;
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
Space.displayName = 'Space';
|
|
}
|
|
export default Space; |