46 lines
1.6 KiB
JavaScript
46 lines
1.6 KiB
JavaScript
'use client';
|
|
import * as React from 'react';
|
|
import { getIntrinsicElementProps, slot } from '@fluentui/react-utilities';
|
|
import { useSkeletonContext } from '../../contexts/SkeletonContext';
|
|
/**
|
|
* Create the state required to render Skeleton.
|
|
*
|
|
* The returned state can be modified with hooks such as useSkeletonStyles_unstable,
|
|
* before being passed to renderSkeleton_unstable.
|
|
*
|
|
* @param props - props from this instance of Skeleton
|
|
* @param ref - reference to root HTMLElement of Skeleton
|
|
*/ export const useSkeleton_unstable = (props, ref)=>{
|
|
const { animation: contextAnimation, appearance: contextAppearance } = useSkeletonContext();
|
|
const { animation = contextAnimation !== null && contextAnimation !== void 0 ? contextAnimation : 'wave', appearance = contextAppearance !== null && contextAppearance !== void 0 ? contextAppearance : 'opaque', size, shape, ...baseProps } = props;
|
|
const baseState = useSkeletonBase_unstable(baseProps, ref);
|
|
return {
|
|
...baseState,
|
|
animation,
|
|
appearance,
|
|
size,
|
|
shape
|
|
};
|
|
};
|
|
/**
|
|
* Base hook for Skeleton component, which manages state related to slots structure and ARIA attributes.
|
|
*
|
|
* @param props - User provided props to the Skeleton component.
|
|
* @param ref - User provided ref to be passed to the Skeleton component.
|
|
*/ export const useSkeletonBase_unstable = (props, ref)=>{
|
|
const root = slot.always(getIntrinsicElementProps('div', {
|
|
ref,
|
|
role: 'progressbar',
|
|
'aria-busy': true,
|
|
...props
|
|
}), {
|
|
elementType: 'div'
|
|
});
|
|
return {
|
|
components: {
|
|
root: 'div'
|
|
},
|
|
root
|
|
};
|
|
};
|