64 lines
2.4 KiB
JavaScript
64 lines
2.4 KiB
JavaScript
'use client';
|
|
import * as React from 'react';
|
|
import { CheckmarkCircleFilled, DiamondDismissFilled, InfoFilled, WarningFilled } from '@fluentui/react-icons';
|
|
import { getIntrinsicElementProps, slot } from '@fluentui/react-utilities';
|
|
import { useBackgroundAppearance } from '@fluentui/react-shared-contexts';
|
|
import { useToastContainerContext } from '../../contexts/toastContainerContext';
|
|
/**
|
|
* Create the state required to render ToastTitle.
|
|
*
|
|
* The returned state can be modified with hooks such as useToastTitleStyles_unstable,
|
|
* before being passed to renderToastTitle_unstable.
|
|
*
|
|
* @param props - props from this instance of ToastTitle
|
|
* @param ref - reference to root HTMLElement of ToastTitle
|
|
*/ export const useToastTitle_unstable = (props, ref)=>{
|
|
const { intent, titleId } = useToastContainerContext();
|
|
const backgroundAppearance = useBackgroundAppearance();
|
|
/** Determine the role and media to render based on the intent */ let defaultIcon;
|
|
switch(intent){
|
|
case 'success':
|
|
defaultIcon = /*#__PURE__*/ React.createElement(CheckmarkCircleFilled, null);
|
|
break;
|
|
case 'error':
|
|
defaultIcon = /*#__PURE__*/ React.createElement(DiamondDismissFilled, null);
|
|
break;
|
|
case 'warning':
|
|
defaultIcon = /*#__PURE__*/ React.createElement(WarningFilled, null);
|
|
break;
|
|
case 'info':
|
|
defaultIcon = /*#__PURE__*/ React.createElement(InfoFilled, null);
|
|
break;
|
|
}
|
|
return {
|
|
action: slot.optional(props.action, {
|
|
elementType: 'div'
|
|
}),
|
|
components: {
|
|
root: 'div',
|
|
media: 'div',
|
|
action: 'div'
|
|
},
|
|
media: slot.optional(props.media, {
|
|
renderByDefault: !!intent,
|
|
defaultProps: {
|
|
children: defaultIcon
|
|
},
|
|
elementType: 'div'
|
|
}),
|
|
root: slot.always(getIntrinsicElementProps('div', {
|
|
// FIXME:
|
|
// `ref` is wrongly assigned to be `HTMLElement` instead of `HTMLDivElement`
|
|
// but since it would be a breaking change to fix it, we are casting ref to it's proper type
|
|
ref: ref,
|
|
children: props.children,
|
|
id: titleId,
|
|
...props
|
|
}), {
|
|
elementType: 'div'
|
|
}),
|
|
intent,
|
|
backgroundAppearance
|
|
};
|
|
};
|