| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- // @flow
- import { makeStyles } from '@material-ui/core';
- import React from 'react';
-
- import ContextMenuItem from './ContextMenuItem';
-
-
- type Props = {
-
- /**
- * List of actions in this group.
- */
- actions?: Array<Object>,
-
- /**
- * The children of the component.
- */
- children?: React$Node,
- };
-
- const useStyles = makeStyles(theme => {
- return {
- contextMenuItemGroup: {
- '&:not(:empty)': {
- padding: `${theme.spacing(2)}px 0`
- },
-
- '& + &:not(:empty)': {
- borderTop: `1px solid ${theme.palette.ui04}`
- }
- }
- };
- });
-
- const ContextMenuItemGroup = ({
- actions,
- children
- }: Props) => {
- const styles = useStyles();
-
- return (
- <div className = { styles.contextMenuItemGroup }>
- {children}
- {actions && actions.map(actionProps => (
- <ContextMenuItem
- key = { actionProps.text }
- { ...actionProps } />
- ))}
- </div>
- );
- };
-
- export default ContextMenuItemGroup;
|