61 lines
1.3 KiB
TypeScript
61 lines
1.3 KiB
TypeScript
import React, { ReactNode } from 'react';
|
|
import { makeStyles } from 'tss-react/mui';
|
|
|
|
import ContextMenuItem, { IProps as ItemProps } from './ContextMenuItem';
|
|
|
|
|
|
interface IProps {
|
|
|
|
/**
|
|
* List of actions in this group.
|
|
*/
|
|
actions?: Array<ItemProps>;
|
|
|
|
/**
|
|
* The children of the component.
|
|
*/
|
|
children?: ReactNode;
|
|
}
|
|
|
|
const useStyles = makeStyles()(theme => {
|
|
return {
|
|
contextMenuItemGroup: {
|
|
'&:not(:empty)': {
|
|
padding: `${theme.spacing(2)} 0`
|
|
},
|
|
|
|
'& + &:not(:empty)': {
|
|
borderTop: `1px solid ${theme.palette.ui03}`
|
|
},
|
|
|
|
'&:first-of-type': {
|
|
paddingTop: 0
|
|
},
|
|
|
|
'&:last-of-type': {
|
|
paddingBottom: 0
|
|
}
|
|
}
|
|
};
|
|
});
|
|
|
|
const ContextMenuItemGroup = ({
|
|
actions,
|
|
children
|
|
}: IProps) => {
|
|
const { classes: styles } = useStyles();
|
|
|
|
return (
|
|
<div className = { styles.contextMenuItemGroup }>
|
|
{children}
|
|
{actions?.map(actionProps => (
|
|
<ContextMenuItem
|
|
key = { actionProps.text }
|
|
{ ...actionProps } />
|
|
))}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ContextMenuItemGroup;
|