phanpy/src/components/menu-confirm.jsx

62 wiersze
1.4 KiB
React
Czysty Zwykły widok Historia

import { Menu, MenuItem, SubMenu } from '@szhsin/react-menu';
import { cloneElement } from 'preact';
2023-08-29 07:23:58 +00:00
import { useRef } from 'preact/hooks';
import Menu2 from './menu2';
function MenuConfirm({
subMenu = false,
confirm = true,
confirmLabel,
menuItemClassName,
menuFooter,
...props
}) {
const { children, onClick, ...restProps } = props;
if (!confirm) {
if (subMenu) return <MenuItem {...props} />;
if (onClick) {
return cloneElement(children, {
onClick,
});
}
return children;
}
const Parent = subMenu ? SubMenu : Menu2;
2023-08-29 07:23:58 +00:00
const menuRef = useRef();
return (
<Parent
2023-08-29 07:23:58 +00:00
instanceRef={menuRef}
openTrigger="clickOnly"
direction="bottom"
overflow="auto"
gap={-8}
shift={8}
menuClassName="menu-emphasized"
{...restProps}
menuButton={subMenu ? undefined : children}
label={subMenu ? children : undefined}
2023-08-29 07:23:58 +00:00
// Test fix for bug; submenus not opening on Android
itemProps={{
onPointerMove: (e) => {
if (e.pointerType === 'touch') {
menuRef.current?.openMenu?.();
}
},
onPointerLeave: (e) => {
if (e.pointerType === 'touch') {
menuRef.current?.openMenu?.();
}
},
}}
>
<MenuItem className={menuItemClassName} onClick={onClick}>
{confirmLabel}
</MenuItem>
{menuFooter}
</Parent>
);
}
export default MenuConfirm;