mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-24 05:16:00 +08:00
175 lines
4.3 KiB
JavaScript
175 lines
4.3 KiB
JavaScript
import {
|
|
UserIcon,
|
|
ChevronUpIcon,
|
|
ChevronDownIcon,
|
|
HelpIcon,
|
|
ExternalLinkIcon,
|
|
} from '@elementor/icons';
|
|
import List from '@elementor/ui/List';
|
|
import ListItemButton from '@elementor/ui/ListItemButton';
|
|
import ListItemIcon from '@elementor/ui/ListItemIcon';
|
|
import ListItemText from '@elementor/ui/ListItemText';
|
|
import { styled } from '@elementor/ui/styles';
|
|
import {
|
|
bindMenu,
|
|
bindTrigger,
|
|
usePopupState,
|
|
} from '@elementor/ui/usePopupState';
|
|
import { PopupMenu } from '@ea11y/components';
|
|
import WhatsNewDrawer from '@ea11y/components/whats-new/drawer';
|
|
import { useSettings } from '@ea11y/hooks';
|
|
import { useWhatsNew } from '@ea11y/hooks/use-whats-new';
|
|
import SpeakerphoneIcon from '@ea11y/icons/speakerphone-icon';
|
|
import { eventNames, mixpanelService } from '@ea11y/services';
|
|
import { __ } from '@wordpress/i18n';
|
|
import { GOLINKS } from '../../constants';
|
|
import { openLink } from '../../utils';
|
|
|
|
const SpeakerphoneIconWrapper = styled(ListItemIcon)`
|
|
&::after {
|
|
content: '';
|
|
display: block;
|
|
position: relative;
|
|
left: -5px;
|
|
top: -4px;
|
|
|
|
width: 8px;
|
|
height: 8px;
|
|
|
|
border-radius: 100%;
|
|
background: ${({ theme }) => theme.palette.info.main};
|
|
}
|
|
`;
|
|
const MyAccountMenu = () => {
|
|
const { openSidebar } = useSettings();
|
|
const { isSidebarOpen, open, close } = useWhatsNew();
|
|
|
|
const accountMenuState = usePopupState({
|
|
variant: 'popover',
|
|
popupId: 'myAccountMenu',
|
|
});
|
|
|
|
const handleHelpButtonClick = () => {
|
|
mixpanelService.sendEvent(eventNames.helpButtonClicked, {
|
|
source: 'Header',
|
|
});
|
|
openLink(GOLINKS.HELP);
|
|
};
|
|
|
|
const handleWhatsNewButtonClick = () => {
|
|
mixpanelService.sendEvent(eventNames.menuButtonClicked, {
|
|
buttonName: 'Whats new?',
|
|
});
|
|
open();
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<List
|
|
onClick={() => {
|
|
mixpanelService.sendEvent(eventNames.menuButtonClicked, {
|
|
buttonName: 'My Account',
|
|
});
|
|
}}
|
|
>
|
|
<StyledListItemButton shape="rounded" onClick={handleHelpButtonClick}>
|
|
<ListItemIcon
|
|
sx={{
|
|
/*For smoother sidebar*/ padding: openSidebar ? 'auto' : '6px',
|
|
}}
|
|
>
|
|
<HelpIcon
|
|
role="img"
|
|
aria-label={__('Help center', 'pojo-accessibility')}
|
|
sx={{ color: 'common.black' }}
|
|
fontSize="small"
|
|
/>
|
|
</ListItemIcon>
|
|
|
|
<ListItemText
|
|
primary={__('Help center', 'pojo-accessibility')}
|
|
hidden={!openSidebar}
|
|
sx={{ whiteSpace: 'nowrap' }}
|
|
/>
|
|
|
|
<ListItemIcon sx={{ display: !openSidebar ? 'none' : 'default' }}>
|
|
<ExternalLinkIcon
|
|
role="img"
|
|
aria-label={__('Help center', 'pojo-accessibility')}
|
|
/>
|
|
</ListItemIcon>
|
|
</StyledListItemButton>
|
|
|
|
<StyledListItemButton
|
|
shape="rounded"
|
|
onClick={handleWhatsNewButtonClick}
|
|
>
|
|
<SpeakerphoneIconWrapper
|
|
sx={{
|
|
/*For smoother sidebar*/ padding: openSidebar ? 'auto' : '6px',
|
|
}}
|
|
>
|
|
<SpeakerphoneIcon
|
|
role="presentation"
|
|
sx={{ color: 'common.black' }}
|
|
fontSize="small"
|
|
/>
|
|
</SpeakerphoneIconWrapper>
|
|
|
|
<ListItemText
|
|
primary={__("What's new?", 'pojo-accessibility')}
|
|
hidden={!openSidebar}
|
|
sx={{ whiteSpace: 'nowrap' }}
|
|
/>
|
|
</StyledListItemButton>
|
|
|
|
<StyledListItemButton
|
|
{...bindTrigger(accountMenuState)}
|
|
selected={accountMenuState.isOpen}
|
|
shape="rounded"
|
|
>
|
|
<ListItemIcon
|
|
sx={{
|
|
/*For smoother sidebar*/ padding: openSidebar ? 'auto' : '6px',
|
|
}}
|
|
>
|
|
<UserIcon
|
|
role="img"
|
|
aria-label={__('My Account', 'pojo-accessibility')}
|
|
sx={{ color: 'common.black' }}
|
|
fontSize="small"
|
|
/>
|
|
</ListItemIcon>
|
|
|
|
<ListItemText
|
|
primary={__('My Account', 'pojo-accessibility')}
|
|
hidden={!openSidebar}
|
|
sx={{ whiteSpace: 'nowrap' }}
|
|
/>
|
|
|
|
<ListItemIcon sx={{ display: !openSidebar ? 'none' : 'default' }}>
|
|
{accountMenuState.isOpen ? (
|
|
<ChevronDownIcon fontSize="small" />
|
|
) : (
|
|
<ChevronUpIcon fontSize="small" />
|
|
)}
|
|
</ListItemIcon>
|
|
</StyledListItemButton>
|
|
</List>
|
|
|
|
<PopupMenu
|
|
{...bindMenu(accountMenuState)}
|
|
closeAction={accountMenuState.close}
|
|
/>
|
|
|
|
{isSidebarOpen && <WhatsNewDrawer onClose={close} />}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default MyAccountMenu;
|
|
|
|
const StyledListItemButton = styled(ListItemButton)`
|
|
justify-content: center;
|
|
padding: ${({ theme }) => `${theme.spacing(1)} ${theme.spacing(3)}`};
|
|
`;
|