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;
|
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);
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
|
|
Loading…
Add table
Reference in a new issue