mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-09 17:33:55 +00:00
dda92ba3a8
* refactor: implement import lint
58 lines
1.7 KiB
React
58 lines
1.7 KiB
React
import React from 'react';
|
|
import { IconButton } from '@chakra-ui/button';
|
|
import { Menu, MenuButton, MenuItem, MenuList } from '@chakra-ui/menu';
|
|
import { Tooltip } from '@chakra-ui/tooltip';
|
|
import { FiClock } from '@react-icons/all-files/fi/FiClock';
|
|
import { FiMinusCircle } from '@react-icons/all-files/fi/FiMinusCircle';
|
|
import { FiPlus } from '@react-icons/all-files/fi/FiPlus';
|
|
import PropTypes from 'prop-types';
|
|
|
|
export default function ActionButtons(props) {
|
|
const { showAdd, showDelay, showBlock, actionHandler } = props;
|
|
|
|
const menuStyle = {
|
|
color: '#000000',
|
|
backgroundColor: 'rgba(255,255,255,1)',
|
|
};
|
|
|
|
return (
|
|
<Menu isLazy lazyBehavior='unmount'>
|
|
<Tooltip label='Add ...' delay={500}>
|
|
<MenuButton
|
|
as={IconButton}
|
|
aria-label='Options'
|
|
size='xs'
|
|
icon={<FiPlus />}
|
|
_expanded={{ bg: 'orange.300', color: 'white' }}
|
|
_focus={{ boxShadow: 'none' }}
|
|
backgroundColor='orange.200'
|
|
color='orange.500'
|
|
/>
|
|
</Tooltip>
|
|
<MenuList style={menuStyle}>
|
|
<MenuItem icon={<FiPlus />} onClick={() => actionHandler('event')} isDisabled={!showAdd}>
|
|
Add Event after
|
|
</MenuItem>
|
|
|
|
<MenuItem icon={<FiClock />} onClick={() => actionHandler('delay')} isDisabled={!showDelay}>
|
|
Add Delay after
|
|
</MenuItem>
|
|
<MenuItem
|
|
icon={<FiMinusCircle />}
|
|
onClick={() => actionHandler('block')}
|
|
isDisabled={!showBlock}
|
|
>
|
|
Add Block after
|
|
</MenuItem>
|
|
</MenuList>
|
|
</Menu>
|
|
);
|
|
}
|
|
|
|
ActionButtons.propTypes = {
|
|
showAdd: PropTypes.bool,
|
|
showDelay: PropTypes.bool,
|
|
showBlock: PropTypes.bool,
|
|
actionHandler: PropTypes.func,
|
|
}
|