101 lines
4.1 KiB
JavaScript
101 lines
4.1 KiB
JavaScript
"use client";
|
|
|
|
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import toArray from "rc-util/es/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 Popover from '../popover';
|
|
import Avatar from './avatar';
|
|
import AvatarContext from './AvatarContext';
|
|
import useStyle from './style';
|
|
const AvatarContextProvider = props => {
|
|
const {
|
|
size,
|
|
shape
|
|
} = React.useContext(AvatarContext);
|
|
const avatarContextValue = React.useMemo(() => ({
|
|
size: props.size || size,
|
|
shape: props.shape || shape
|
|
}), [props.size, props.shape, size, shape]);
|
|
return /*#__PURE__*/React.createElement(AvatarContext.Provider, {
|
|
value: avatarContextValue
|
|
}, props.children);
|
|
};
|
|
const Group = props => {
|
|
var _a, _b, _c;
|
|
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 === null || max === void 0 ? void 0 : 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 === null || max === void 0 ? void 0 : max.style) || maxStyle;
|
|
const mergePopoverTrigger = ((_a = max === null || max === void 0 ? void 0 : max.popover) === null || _a === void 0 ? void 0 : _a.trigger) || maxPopoverTrigger || 'hover';
|
|
const mergePopoverPlacement = ((_b = max === null || max === void 0 ? void 0 : max.popover) === null || _b === void 0 ? void 0 : _b.placement) || maxPopoverPlacement || 'top';
|
|
const mergeProps = Object.assign(Object.assign({
|
|
content: childrenHidden
|
|
}, max === null || max === void 0 ? void 0 : max.popover), {
|
|
overlayClassName: classNames(`${groupPrefixCls}-popover`, (_c = max === null || max === void 0 ? void 0 : max.popover) === null || _c === void 0 ? void 0 : _c.overlayClassName),
|
|
placement: mergePopoverPlacement,
|
|
trigger: mergePopoverTrigger
|
|
});
|
|
childrenShow.push( /*#__PURE__*/React.createElement(Popover, Object.assign({
|
|
key: "avatar-popover-key",
|
|
destroyTooltipOnHide: true
|
|
}, mergeProps), /*#__PURE__*/React.createElement(Avatar, {
|
|
style: mergeStyle
|
|
}, `+${numOfChildren - mergeCount}`)));
|
|
return wrapCSSVar( /*#__PURE__*/React.createElement(AvatarContextProvider, {
|
|
shape: shape,
|
|
size: size
|
|
}, /*#__PURE__*/React.createElement("div", {
|
|
className: cls,
|
|
style: style
|
|
}, childrenShow)));
|
|
}
|
|
return wrapCSSVar( /*#__PURE__*/React.createElement(AvatarContextProvider, {
|
|
shape: shape,
|
|
size: size
|
|
}, /*#__PURE__*/React.createElement("div", {
|
|
className: cls,
|
|
style: style
|
|
}, childrenWithProps)));
|
|
};
|
|
export default Group; |