Private
Public Access
1
0
Files

59 lines
2.2 KiB
JavaScript

'use client';
import * as React from 'react';
import { getIntrinsicElementProps, mergeCallbacks, slot, useEventCallback } from '@fluentui/react-utilities';
import { Button } from '@fluentui/react-button';
import { usePopoverContext_unstable } from '@fluentui/react-popover';
/**
* Returns the props and state required to render the component
* @param props - TeachingPopoverFooter properties
* @param ref - reference to root HTMLElement of TeachingPopoverFooter
*/ export const useTeachingPopoverFooter_unstable = (props, ref)=>{
const appearance = usePopoverContext_unstable((context)=>context.appearance);
const toggleOpen = usePopoverContext_unstable((context)=>context.toggleOpen);
const handleButtonClick = useEventCallback((event)=>{
if (event.isDefaultPrevented()) {
return;
}
toggleOpen(event);
});
const secondary = slot.optional(props.secondary, {
defaultProps: {
appearance: appearance === 'brand' ? 'primary' : undefined
},
renderByDefault: props.secondary !== undefined,
elementType: Button
});
// Merge any provided callback with close trigger
if (secondary) {
secondary.onClick = mergeCallbacks(handleButtonClick, secondary === null || secondary === void 0 ? void 0 : secondary.onClick);
}
const primary = slot.always(props.primary, {
defaultProps: {
appearance: appearance === 'brand' ? undefined : 'primary'
},
elementType: Button
});
// Primary button will close the popover if no secondary action is available.
if (!secondary) {
primary.onClick = mergeCallbacks(handleButtonClick, primary === null || primary === void 0 ? void 0 : primary.onClick);
}
var _props_footerLayout;
return {
footerLayout: (_props_footerLayout = props.footerLayout) !== null && _props_footerLayout !== void 0 ? _props_footerLayout : 'horizontal',
appearance,
components: {
root: 'div',
primary: Button,
secondary: Button
},
root: slot.always(getIntrinsicElementProps('div', {
ref,
...props
}), {
elementType: 'div'
}),
secondary,
primary
};
};