mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
8875ca7043
* feat: Avatar.Group adding max props * feat: update * feat: update * feat: update test case * feat: update docs * Update components/avatar/index.en-US.md Co-authored-by: afc163 <afc163@gmail.com> Signed-off-by: Wanpan <wanpan96@163.com> * feat: update docs * feat: update * feat: update snap * feat: delete default value --------- Signed-off-by: Wanpan <wanpan96@163.com> Co-authored-by: afc163 <afc163@gmail.com>
151 lines
4.6 KiB
TypeScript
151 lines
4.6 KiB
TypeScript
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import toArray from 'rc-util/lib/Children/toArray';
|
|
|
|
import { cloneElement } from '../_util/reactNode';
|
|
import { devUseWarning } from '../_util/warning';
|
|
import { ConfigContext } from '../config-provider';
|
|
import useCSSVarCls from '../config-provider/hooks/useCSSVarCls';
|
|
import type { PopoverProps } from '../popover';
|
|
import Popover from '../popover';
|
|
import Avatar from './avatar';
|
|
import AvatarContext from './AvatarContext';
|
|
import type { AvatarContextType, AvatarSize } from './AvatarContext';
|
|
import useStyle from './style';
|
|
|
|
interface ContextProps {
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
const AvatarContextProvider: React.FC<AvatarContextType & ContextProps> = (props) => {
|
|
const { size, shape } = React.useContext<AvatarContextType>(AvatarContext);
|
|
const avatarContextValue = React.useMemo<AvatarContextType>(
|
|
() => ({ size: props.size || size, shape: props.shape || shape }),
|
|
[props.size, props.shape, size, shape],
|
|
);
|
|
return (
|
|
<AvatarContext.Provider value={avatarContextValue}>{props.children}</AvatarContext.Provider>
|
|
);
|
|
};
|
|
|
|
export interface GroupProps {
|
|
className?: string;
|
|
rootClassName?: string;
|
|
children?: React.ReactNode;
|
|
style?: React.CSSProperties;
|
|
prefixCls?: string;
|
|
/** @deprecated Please use `max={{ count: number }}` */
|
|
maxCount?: number;
|
|
/** @deprecated Please use `max={{ style: CSSProperties }}` */
|
|
maxStyle?: React.CSSProperties;
|
|
/** @deprecated Please use `max={{ popover: PopoverProps }}` */
|
|
maxPopoverPlacement?: 'top' | 'bottom';
|
|
/** @deprecated Please use `max={{ popover: PopoverProps }}` */
|
|
maxPopoverTrigger?: 'hover' | 'focus' | 'click';
|
|
max?: {
|
|
count?: number;
|
|
style?: React.CSSProperties;
|
|
popover?: PopoverProps;
|
|
};
|
|
/*
|
|
* Size of avatar, options: `large`, `small`, `default`
|
|
* or a custom number size
|
|
* */
|
|
size?: AvatarSize;
|
|
shape?: 'circle' | 'square';
|
|
}
|
|
|
|
const Group: React.FC<GroupProps> = (props) => {
|
|
const { getPrefixCls, direction } = React.useContext(ConfigContext);
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
className,
|
|
rootClassName,
|
|
style,
|
|
maxCount,
|
|
maxStyle,
|
|
size,
|
|
shape,
|
|
maxPopoverPlacement,
|
|
maxPopoverTrigger,
|
|
children,
|
|
max,
|
|
} = props;
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
const warning = devUseWarning('Avatar.Group');
|
|
warning.deprecated(!maxCount, 'maxCount', 'max={{ count: number }}');
|
|
warning.deprecated(!maxStyle, 'maxStyle', 'max={{ style: CSSProperties }}');
|
|
warning.deprecated(
|
|
!maxPopoverPlacement,
|
|
'maxPopoverPlacement',
|
|
'max={{ popover: PopoverProps }}',
|
|
);
|
|
warning.deprecated(!maxPopoverTrigger, 'maxPopoverTrigger', 'max={{ popover: PopoverProps }}');
|
|
}
|
|
|
|
const prefixCls = getPrefixCls('avatar', customizePrefixCls);
|
|
const groupPrefixCls = `${prefixCls}-group`;
|
|
const rootCls = useCSSVarCls(prefixCls);
|
|
const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls, rootCls);
|
|
|
|
const cls = classNames(
|
|
groupPrefixCls,
|
|
{
|
|
[`${groupPrefixCls}-rtl`]: direction === 'rtl',
|
|
},
|
|
cssVarCls,
|
|
rootCls,
|
|
className,
|
|
rootClassName,
|
|
hashId,
|
|
);
|
|
|
|
const childrenWithProps = toArray(children).map((child, index) =>
|
|
cloneElement(child, { key: `avatar-key-${index}` }),
|
|
);
|
|
|
|
const mergeCount = max?.count || maxCount;
|
|
const numOfChildren = childrenWithProps.length;
|
|
if (mergeCount && mergeCount < numOfChildren) {
|
|
const childrenShow = childrenWithProps.slice(0, mergeCount);
|
|
const childrenHidden = childrenWithProps.slice(mergeCount, numOfChildren);
|
|
|
|
const mergeStyle = max?.style || maxStyle;
|
|
const mergePopoverTrigger = max?.popover?.trigger || maxPopoverTrigger || 'hover';
|
|
const mergePopoverPlacement = max?.popover?.placement || maxPopoverPlacement || 'top';
|
|
|
|
const mergeProps = {
|
|
content: childrenHidden,
|
|
...max?.popover,
|
|
overlayClassName: classNames(`${groupPrefixCls}-popover`, max?.popover?.overlayClassName),
|
|
placement: mergePopoverPlacement,
|
|
trigger: mergePopoverTrigger,
|
|
};
|
|
|
|
childrenShow.push(
|
|
<Popover key="avatar-popover-key" destroyTooltipOnHide {...mergeProps}>
|
|
<Avatar style={mergeStyle}>{`+${numOfChildren - mergeCount}`}</Avatar>
|
|
</Popover>,
|
|
);
|
|
|
|
return wrapCSSVar(
|
|
<AvatarContextProvider shape={shape} size={size}>
|
|
<div className={cls} style={style}>
|
|
{childrenShow}
|
|
</div>
|
|
</AvatarContextProvider>,
|
|
);
|
|
}
|
|
|
|
return wrapCSSVar(
|
|
<AvatarContextProvider shape={shape} size={size}>
|
|
<div className={cls} style={style}>
|
|
{childrenWithProps}
|
|
</div>
|
|
</AvatarContextProvider>,
|
|
);
|
|
};
|
|
|
|
export default Group;
|