vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
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.
94 lines
2.9 KiB
94 lines
2.9 KiB
import { cloneElement } from '../_util/vnode'; |
|
import type { AvatarSize } from './Avatar'; |
|
import Avatar from './Avatar'; |
|
import Popover from '../popover'; |
|
import type { PropType, ExtractPropTypes, CSSProperties } from 'vue'; |
|
import { defineComponent } from 'vue'; |
|
import PropTypes from '../_util/vue-types'; |
|
import { flattenChildren, getPropsSlot } from '../_util/props-util'; |
|
import { tuple } from '../_util/type'; |
|
import useConfigInject from '../_util/hooks/useConfigInject'; |
|
import useProvideSize from '../_util/hooks/useSize'; |
|
|
|
export const groupProps = () => ({ |
|
prefixCls: PropTypes.string, |
|
maxCount: PropTypes.number, |
|
maxStyle: { |
|
type: Object as PropType<CSSProperties>, |
|
default: () => ({} as CSSProperties), |
|
}, |
|
maxPopoverPlacement: PropTypes.oneOf(tuple('top', 'bottom')).def('top'), |
|
maxPopoverTrigger: String as PropType<'hover' | 'focus' | 'click'>, |
|
/* |
|
* Size of avatar, options: `large`, `small`, `default` |
|
* or a custom number size |
|
* */ |
|
size: { |
|
type: [Number, String, Object] as PropType<AvatarSize>, |
|
default: (): AvatarSize => 'default', |
|
}, |
|
}); |
|
|
|
export type AvatarGroupProps = Partial<ExtractPropTypes<ReturnType<typeof groupProps>>>; |
|
|
|
const Group = defineComponent({ |
|
name: 'AAvatarGroup', |
|
inheritAttrs: false, |
|
props: groupProps(), |
|
setup(props, { slots, attrs }) { |
|
const { prefixCls, direction } = useConfigInject('avatar-group', props); |
|
useProvideSize<AvatarSize>(props); |
|
return () => { |
|
const { |
|
maxPopoverPlacement = 'top', |
|
maxCount, |
|
maxStyle, |
|
maxPopoverTrigger = 'hover', |
|
} = props; |
|
|
|
const cls = { |
|
[prefixCls.value]: true, |
|
[`${prefixCls.value}-rtl`]: direction.value === 'rtl', |
|
[`${attrs.class}`]: !!attrs.class, |
|
}; |
|
|
|
const children = getPropsSlot(slots, props); |
|
const childrenWithProps = flattenChildren(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.value}-popover`} |
|
> |
|
<Avatar style={maxStyle}>{`+${numOfChildren - maxCount}`}</Avatar> |
|
</Popover>, |
|
); |
|
return ( |
|
<div {...attrs} class={cls} style={attrs.style}> |
|
{childrenShow} |
|
</div> |
|
); |
|
} |
|
|
|
return ( |
|
<div {...attrs} class={cls} style={attrs.style}> |
|
{childrenWithProps} |
|
</div> |
|
); |
|
}; |
|
}, |
|
}); |
|
|
|
export default Group;
|
|
|