Super weird fix for clicks "leaked" to the container

This commit is contained in:
Lim Chee Aun 2024-02-25 13:37:29 +08:00
parent bf609b979e
commit e7d2d088ba

View file

@ -83,6 +83,7 @@ function NavMenu(props) {
return results; return results;
} }
const buttonClickTS = useRef();
return ( return (
<> <>
<button <button
@ -93,6 +94,7 @@ function NavMenu(props) {
} ${open ? 'active' : ''}`} } ${open ? 'active' : ''}`}
style={{ position: 'relative' }} style={{ position: 'relative' }}
onClick={() => { onClick={() => {
buttonClickTS.current = Date.now();
setMenuState((state) => (!state ? 'open' : undefined)); setMenuState((state) => (!state ? 'open' : undefined));
}} }}
onContextMenu={(e) => { onContextMenu={(e) => {
@ -124,6 +126,9 @@ function NavMenu(props) {
zIndex: 10, zIndex: 10,
}, },
onClick: () => { onClick: () => {
if (Date.now() - buttonClickTS.current < 300) {
return;
}
setMenuState(undefined); setMenuState(undefined);
}, },
}} }}