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.
81 lines
2.3 KiB
81 lines
2.3 KiB
import classNames from 'classnames';
|
|
import toArray from 'rc-util/lib/Children/toArray';
|
|
import * as React from 'react';
|
|
import { ConfigContext } from '../config-provider';
|
|
import Popover from '../popover';
|
|
import { cloneElement } from '../_util/reactNode';
|
|
import Avatar from './avatar';
|
|
import type { AvatarSize } from './SizeContext';
|
|
import { SizeContextProvider } from './SizeContext';
|
|
|
|
export interface GroupProps {
|
|
className?: string;
|
|
children?: React.ReactNode;
|
|
style?: React.CSSProperties;
|
|
prefixCls?: string;
|
|
maxCount?: number;
|
|
maxStyle?: React.CSSProperties;
|
|
maxPopoverPlacement?: 'top' | 'bottom';
|
|
maxPopoverTrigger?: 'hover' | 'focus' | 'click';
|
|
/*
|
|
* Size of avatar, options: `large`, `small`, `default`
|
|
* or a custom number size
|
|
* */
|
|
size?: AvatarSize;
|
|
}
|
|
|
|
const Group: React.FC<GroupProps> = props => {
|
|
const { getPrefixCls, direction } = React.useContext(ConfigContext);
|
|
const { prefixCls: customizePrefixCls, className = '', maxCount, maxStyle, size } = props;
|
|
|
|
const prefixCls = getPrefixCls('avatar-group', customizePrefixCls);
|
|
|
|
const cls = classNames(
|
|
prefixCls,
|
|
{
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
},
|
|
className,
|
|
);
|
|
|
|
const { children, maxPopoverPlacement = 'top', maxPopoverTrigger = 'hover' } = props;
|
|
const childrenWithProps = toArray(children).map((child, index) =>
|
|
cloneElement(child, {
|
|
key: `avatar-key-${index}`,
|
|
}),
|
|
);
|
|
|
|
const numOfChildren = childrenWithProps.length;
|
|
if (maxCount && maxCount < numOfChildren) {
|
|
const childrenShow = childrenWithProps.slice(0, maxCount);
|
|
const childrenHidden = childrenWithProps.slice(maxCount, numOfChildren);
|
|
childrenShow.push(
|
|
<Popover
|
|
key="avatar-popover-key"
|
|
content={childrenHidden}
|
|
trigger={maxPopoverTrigger}
|
|
placement={maxPopoverPlacement}
|
|
overlayClassName={`${prefixCls}-popover`}
|
|
>
|
|
<Avatar style={maxStyle}>{`+${numOfChildren - maxCount}`}</Avatar>
|
|
</Popover>,
|
|
);
|
|
return (
|
|
<SizeContextProvider size={size}>
|
|
<div className={cls} style={props.style}>
|
|
{childrenShow}
|
|
</div>
|
|
</SizeContextProvider>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<SizeContextProvider size={size}>
|
|
<div className={cls} style={props.style}>
|
|
{childrenWithProps}
|
|
</div>
|
|
</SizeContextProvider>
|
|
);
|
|
};
|
|
|
|
export default Group;
|
|
|