43 lines
1.3 KiB
JavaScript
43 lines
1.3 KiB
JavaScript
'use client';
|
|
import * as React from 'react';
|
|
import { getIntrinsicElementProps, slot } from '@fluentui/react-utilities';
|
|
/**
|
|
* Create the state required to render AvatarGroup.
|
|
*
|
|
* The returned state can be modified with hooks such as useAvatarGroupStyles_unstable,
|
|
* before being passed to renderAvatarGroup_unstable.
|
|
*
|
|
* @param props - props from this instance of AvatarGroup
|
|
* @param ref - reference to root HTMLElement of AvatarGroup
|
|
*/ export const useAvatarGroup_unstable = (props, ref)=>{
|
|
const { size = defaultAvatarGroupSize, ...baseProps } = props;
|
|
const state = useAvatarGroupBase_unstable(baseProps, ref);
|
|
return {
|
|
size,
|
|
...state
|
|
};
|
|
};
|
|
/**
|
|
* Create the base state to render AvatarGroup, without design-specific props.
|
|
*
|
|
* @param props - props from this instance of AvatarGroup
|
|
* @param ref - reference to root HTMLDivElement of AvatarGroup
|
|
*/ export const useAvatarGroupBase_unstable = (props, ref)=>{
|
|
const { layout = 'spread' } = props;
|
|
const root = slot.always(getIntrinsicElementProps('div', {
|
|
role: 'group',
|
|
...props,
|
|
ref
|
|
}), {
|
|
elementType: 'div'
|
|
});
|
|
return {
|
|
layout,
|
|
components: {
|
|
root: 'div'
|
|
},
|
|
root
|
|
};
|
|
};
|
|
export const defaultAvatarGroupSize = 32;
|