Super weird fix for clicks "leaked" to the container
This commit is contained in:
parent
bf609b979e
commit
e7d2d088ba
1 changed files with 5 additions and 0 deletions
|
@ -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);
|
||||
},
|
||||
}}
|
||||
|
|
Loading…
Add table
Reference in a new issue