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