Private
Public Access
1
0
Files

56 lines
2.0 KiB
JavaScript

'use client';
import * as React from 'react';
import { getIntrinsicElementProps, useEventCallback, slot } from '@fluentui/react-utilities';
import { Dismiss12Regular, Lightbulb16Regular } from '@fluentui/react-icons';
import { usePopoverContext_unstable } from '@fluentui/react-popover';
/**
* Returns the props and state required to render the component
* @param props - TeachingPopoverHeader properties
* @param ref - reference to root HTMLElement of TeachingPopoverHeader
*/ export const useTeachingPopoverHeader_unstable = (props, ref)=>{
const { dismissButton, icon } = props;
const setOpen = usePopoverContext_unstable((context)=>context.setOpen);
const triggerRef = usePopoverContext_unstable((context)=>context.triggerRef);
const appearance = usePopoverContext_unstable((context)=>context.appearance);
const onDismissButtonClick = useEventCallback((ev)=>{
if (!ev.defaultPrevented) {
setOpen(ev, false);
}
if (triggerRef.current) {
triggerRef.current.focus();
}
});
return {
appearance,
components: {
root: 'div',
dismissButton: 'button',
icon: 'div'
},
root: slot.always(getIntrinsicElementProps('div', {
ref,
...props
}), {
elementType: 'div'
}),
icon: slot.optional(icon, {
renderByDefault: true,
defaultProps: {
children: /*#__PURE__*/ React.createElement(Lightbulb16Regular, null),
'aria-hidden': true
},
elementType: 'div'
}),
dismissButton: slot.optional(dismissButton, {
renderByDefault: true,
defaultProps: {
children: /*#__PURE__*/ React.createElement(Dismiss12Regular, null),
role: 'button',
'aria-label': 'dismiss',
onClick: onDismissButtonClick
},
elementType: 'button'
})
};
};