mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-23 01:45:05 +08:00
ab0e07e25d
Some checks are pending
Publish Any Commit / build (push) Waiting to run
✅ test v6 / lint (push) Waiting to run
✅ test v6 / test-react-legacy (18, 1/2) (push) Waiting to run
✅ test v6 / test-react-legacy (18, 2/2) (push) Waiting to run
✅ test v6 / test-node (push) Waiting to run
✅ test v6 / test-react-latest (dom, 1/2) (push) Waiting to run
✅ test v6 / test-react-latest (dom, 2/2) (push) Waiting to run
✅ test v6 / test-react-latest-dist (dist, 1/2) (push) Blocked by required conditions
✅ test v6 / test-react-latest-dist (dist, 2/2) (push) Blocked by required conditions
✅ test v6 / test-react-latest-dist (dist-min, 1/2) (push) Blocked by required conditions
✅ test v6 / test-react-latest-dist (dist-min, 2/2) (push) Blocked by required conditions
✅ test v6 / test-coverage (push) Blocked by required conditions
✅ test v6 / build (push) Waiting to run
✅ test v6 / test lib/es module (es, 1/2) (push) Waiting to run
✅ test v6 / test lib/es module (es, 2/2) (push) Waiting to run
✅ test v6 / test lib/es module (lib, 1/2) (push) Waiting to run
✅ test v6 / test lib/es module (lib, 2/2) (push) Waiting to run
👁️ Visual Regression Persist Start / test image (push) Waiting to run
* refactor: use @rc-component * chore: adjust compile * test: fix logic * chore: back of reset --------- Co-authored-by: 二货机器人 <smith3816@gmail.com>
132 lines
3.9 KiB
TypeScript
132 lines
3.9 KiB
TypeScript
import * as React from 'react';
|
|
import toArray from '@rc-component/util/lib/Children/toArray';
|
|
import classNames from 'classnames';
|
|
|
|
import type { DirectionType } from '../config-provider';
|
|
import { ConfigContext } from '../config-provider';
|
|
import useSize from '../config-provider/hooks/useSize';
|
|
import type { SizeType } from '../config-provider/SizeContext';
|
|
import useStyle from './style';
|
|
|
|
export interface SpaceCompactItemContextType {
|
|
compactSize?: SizeType;
|
|
compactDirection?: 'horizontal' | 'vertical';
|
|
isFirstItem?: boolean;
|
|
isLastItem?: boolean;
|
|
}
|
|
|
|
export const SpaceCompactItemContext = React.createContext<SpaceCompactItemContextType | null>(
|
|
null,
|
|
);
|
|
|
|
export const useCompactItemContext = (prefixCls: string, direction: DirectionType) => {
|
|
const compactItemContext = React.useContext(SpaceCompactItemContext);
|
|
|
|
const compactItemClassnames = React.useMemo<string>(() => {
|
|
if (!compactItemContext) {
|
|
return '';
|
|
}
|
|
const { compactDirection, isFirstItem, isLastItem } = compactItemContext;
|
|
const separator = compactDirection === 'vertical' ? '-vertical-' : '-';
|
|
|
|
return classNames(`${prefixCls}-compact${separator}item`, {
|
|
[`${prefixCls}-compact${separator}first-item`]: isFirstItem,
|
|
[`${prefixCls}-compact${separator}last-item`]: isLastItem,
|
|
[`${prefixCls}-compact${separator}item-rtl`]: direction === 'rtl',
|
|
});
|
|
}, [prefixCls, direction, compactItemContext]);
|
|
|
|
return {
|
|
compactSize: compactItemContext?.compactSize,
|
|
compactDirection: compactItemContext?.compactDirection,
|
|
compactItemClassnames,
|
|
};
|
|
};
|
|
|
|
export const NoCompactStyle: React.FC<React.PropsWithChildren<unknown>> = ({ children }) => (
|
|
<SpaceCompactItemContext.Provider value={null}>{children}</SpaceCompactItemContext.Provider>
|
|
);
|
|
|
|
export interface SpaceCompactProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
prefixCls?: string;
|
|
size?: SizeType;
|
|
direction?: 'horizontal' | 'vertical';
|
|
block?: boolean;
|
|
rootClassName?: string;
|
|
}
|
|
|
|
const CompactItem: React.FC<React.PropsWithChildren<SpaceCompactItemContextType>> = ({
|
|
children,
|
|
...otherProps
|
|
}) => (
|
|
<SpaceCompactItemContext.Provider value={otherProps}>{children}</SpaceCompactItemContext.Provider>
|
|
);
|
|
|
|
const Compact: React.FC<SpaceCompactProps> = (props) => {
|
|
const { getPrefixCls, direction: directionConfig } = React.useContext(ConfigContext);
|
|
|
|
const {
|
|
size,
|
|
direction,
|
|
block,
|
|
prefixCls: customizePrefixCls,
|
|
className,
|
|
rootClassName,
|
|
children,
|
|
...restProps
|
|
} = props;
|
|
|
|
const mergedSize = useSize((ctx) => size ?? ctx);
|
|
|
|
const prefixCls = getPrefixCls('space-compact', customizePrefixCls);
|
|
const [wrapCSSVar, hashId] = useStyle(prefixCls);
|
|
const clx = classNames(
|
|
prefixCls,
|
|
hashId,
|
|
{
|
|
[`${prefixCls}-rtl`]: directionConfig === 'rtl',
|
|
[`${prefixCls}-block`]: block,
|
|
[`${prefixCls}-vertical`]: direction === 'vertical',
|
|
},
|
|
className,
|
|
rootClassName,
|
|
);
|
|
|
|
const compactItemContext = React.useContext(SpaceCompactItemContext);
|
|
|
|
const childNodes = toArray(children);
|
|
const nodes = React.useMemo(
|
|
() =>
|
|
childNodes.map((child, i) => {
|
|
const key = child?.key || `${prefixCls}-item-${i}`;
|
|
return (
|
|
<CompactItem
|
|
key={key}
|
|
compactSize={mergedSize}
|
|
compactDirection={direction}
|
|
isFirstItem={i === 0 && (!compactItemContext || compactItemContext?.isFirstItem)}
|
|
isLastItem={
|
|
i === childNodes.length - 1 && (!compactItemContext || compactItemContext?.isLastItem)
|
|
}
|
|
>
|
|
{child}
|
|
</CompactItem>
|
|
);
|
|
}),
|
|
[size, childNodes, compactItemContext],
|
|
);
|
|
|
|
// =========================== Render ===========================
|
|
if (childNodes.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
return wrapCSSVar(
|
|
<div className={clx} {...restProps}>
|
|
{nodes}
|
|
</div>,
|
|
);
|
|
};
|
|
|
|
export default Compact;
|