62 lines
2.5 KiB
JavaScript
62 lines
2.5 KiB
JavaScript
'use client';
|
|
import { makeStyles, mergeClasses } from '@griffel/react';
|
|
import { createArrowHeightStyles, createArrowStyles } from '@fluentui/react-positioning';
|
|
import { tokens, typographyStyles } from '@fluentui/react-theme';
|
|
export const popoverSurfaceClassNames = {
|
|
root: 'fui-PopoverSurface'
|
|
};
|
|
export const arrowHeights = {
|
|
small: 6,
|
|
medium: 8,
|
|
large: 8
|
|
};
|
|
/**
|
|
* Styles for the root slot
|
|
*/ const useStyles = makeStyles({
|
|
root: {
|
|
color: tokens.colorNeutralForeground1,
|
|
backgroundColor: tokens.colorNeutralBackground1,
|
|
borderRadius: tokens.borderRadiusMedium,
|
|
border: `1px solid ${tokens.colorTransparentStroke}`,
|
|
...typographyStyles.body1,
|
|
// TODO need to add versions of tokens.alias.shadow.shadow16, etc. that work with filter
|
|
filter: `drop-shadow(0 0 2px ${tokens.colorNeutralShadowAmbient}) ` + `drop-shadow(0 8px 16px ${tokens.colorNeutralShadowKey})`
|
|
},
|
|
inline: {
|
|
// When rendering inline, the PopoverSurface will be rendered under relatively positioned elements such as Input.
|
|
// This is due to the surface being positioned as absolute, therefore zIndex: 1 ensures that won't happen.
|
|
zIndex: 1
|
|
},
|
|
inverted: {
|
|
backgroundColor: tokens.colorNeutralBackgroundStatic,
|
|
color: tokens.colorNeutralForegroundStaticInverted
|
|
},
|
|
brand: {
|
|
backgroundColor: tokens.colorBrandBackground,
|
|
color: tokens.colorNeutralForegroundOnBrand
|
|
},
|
|
smallPadding: {
|
|
padding: '12px'
|
|
},
|
|
mediumPadding: {
|
|
padding: '16px'
|
|
},
|
|
largePadding: {
|
|
padding: '20px'
|
|
},
|
|
smallArrow: createArrowHeightStyles(arrowHeights.small),
|
|
mediumLargeArrow: createArrowHeightStyles(arrowHeights.medium),
|
|
arrow: createArrowStyles({
|
|
arrowHeight: undefined
|
|
})
|
|
});
|
|
/**
|
|
* Apply styling to the PopoverSurface slots based on the state
|
|
*/ export const usePopoverSurfaceStyles_unstable = (state)=>{
|
|
'use no memo';
|
|
const styles = useStyles();
|
|
state.root.className = mergeClasses(popoverSurfaceClassNames.root, styles.root, state.inline && styles.inline, state.size === 'small' && styles.smallPadding, state.size === 'medium' && styles.mediumPadding, state.size === 'large' && styles.largePadding, state.appearance === 'inverted' && styles.inverted, state.appearance === 'brand' && styles.brand, state.root.className);
|
|
state.arrowClassName = mergeClasses(styles.arrow, state.size === 'small' ? styles.smallArrow : styles.mediumLargeArrow);
|
|
return state;
|
|
};
|