mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-24 22:26:58 +08:00
107 lines
3.1 KiB
JavaScript
107 lines
3.1 KiB
JavaScript
import CalendarDollarIcon from '@elementor/icons/CalendarDollarIcon';
|
|
import DotsHorizontalIcon from '@elementor/icons/DotsHorizontalIcon';
|
|
import ExternalLinkIcon from '@elementor/icons/ExternalLinkIcon';
|
|
import RefreshIcon from '@elementor/icons/RefreshIcon';
|
|
import SettingsIcon from '@elementor/icons/SettingsIcon';
|
|
import Box from '@elementor/ui/Box';
|
|
import IconButton from '@elementor/ui/IconButton';
|
|
import Menu from '@elementor/ui/Menu';
|
|
import MenuItem from '@elementor/ui/MenuItem';
|
|
import MenuItemIcon from '@elementor/ui/MenuItemIcon';
|
|
import MenuItemText from '@elementor/ui/MenuItemText';
|
|
import { ELEMENTOR_URL } from '@ea11y-apps/global/constants';
|
|
import { mixpanelEvents, mixpanelService } from '@ea11y-apps/global/services';
|
|
import { BLOCKS } from '@ea11y-apps/scanner/constants';
|
|
import { useScannerWizardContext } from '@ea11y-apps/scanner/context/scanner-wizard-context';
|
|
import { useRef, useState } from '@wordpress/element';
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
export const DropdownMenu = () => {
|
|
const { remediations, setOpenedBlock, setIsManage, runNewScan } =
|
|
useScannerWizardContext();
|
|
const [isOpened, setIsOpened] = useState(false);
|
|
const anchorEl = useRef(null);
|
|
|
|
const handleOpen = () => {
|
|
setIsOpened(true);
|
|
mixpanelService.sendEvent(mixpanelEvents.assistantMenuClicked);
|
|
};
|
|
const handleClose = () => setIsOpened(false);
|
|
|
|
const sendOnClickEvent = (action) => {
|
|
mixpanelService.sendEvent(mixpanelEvents.assistantMenuOptionSelected, {
|
|
action,
|
|
});
|
|
};
|
|
|
|
const onRunNewScan = () => {
|
|
runNewScan();
|
|
sendOnClickEvent('New Scan');
|
|
};
|
|
|
|
const goToManagement = () => {
|
|
handleClose();
|
|
setIsManage(true);
|
|
setOpenedBlock(BLOCKS.management);
|
|
sendOnClickEvent('Manage fixes');
|
|
};
|
|
|
|
return (
|
|
<Box>
|
|
<IconButton
|
|
id="menu-button"
|
|
aria-controls={isOpened ? 'assistant-menu' : undefined}
|
|
aria-expanded={isOpened ? 'true' : undefined}
|
|
aria-haspopup="true"
|
|
onClick={handleOpen}
|
|
ref={anchorEl}
|
|
aria-label={__('Menu', 'pojo-accessibility')}
|
|
>
|
|
<DotsHorizontalIcon />
|
|
</IconButton>
|
|
<Menu
|
|
open={isOpened}
|
|
id="assistant-menu"
|
|
anchorEl={anchorEl.current}
|
|
container={anchorEl.current}
|
|
onClose={handleClose}
|
|
MenuListProps={{
|
|
'aria-labelledby': 'menu-button',
|
|
}}
|
|
disablePortal
|
|
>
|
|
<MenuItem onClick={onRunNewScan}>
|
|
<MenuItemIcon>
|
|
<RefreshIcon />
|
|
</MenuItemIcon>
|
|
<MenuItemText>{__('New Scan', 'pojo-accessibility')}</MenuItemText>
|
|
</MenuItem>
|
|
<MenuItem onClick={goToManagement} disabled={!remediations?.length}>
|
|
<MenuItemIcon>
|
|
<SettingsIcon />
|
|
</MenuItemIcon>
|
|
<MenuItemText>
|
|
{__('Manage fixes', 'pojo-accessibility')}
|
|
</MenuItemText>
|
|
</MenuItem>
|
|
<MenuItem
|
|
component="a"
|
|
href={ELEMENTOR_URL}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
onClick={() => sendOnClickEvent('View subscription')}
|
|
>
|
|
<MenuItemIcon>
|
|
<CalendarDollarIcon />
|
|
</MenuItemIcon>
|
|
<MenuItemText>
|
|
{__('View subscription', 'pojo-accessibility')}
|
|
</MenuItemText>
|
|
<MenuItemIcon sx={{ ml: 5 }}>
|
|
<ExternalLinkIcon />
|
|
</MenuItemIcon>
|
|
</MenuItem>
|
|
</Menu>
|
|
</Box>
|
|
);
|
|
};
|