Attempt to fix nav menu not closable when click outside
This commit is contained in:
parent
211e4ff74d
commit
960ce07501
1 changed files with 157 additions and 135 deletions
|
@ -1,4 +1,11 @@
|
||||||
import { Menu, MenuDivider, MenuItem } from '@szhsin/react-menu';
|
import {
|
||||||
|
ControlledMenu,
|
||||||
|
MenuDivider,
|
||||||
|
MenuItem,
|
||||||
|
useClick,
|
||||||
|
useMenuState,
|
||||||
|
} from '@szhsin/react-menu';
|
||||||
|
import { useRef } from 'preact/hooks';
|
||||||
import { useLongPress } from 'use-long-press';
|
import { useLongPress } from 'use-long-press';
|
||||||
import { useSnapshot } from 'valtio';
|
import { useSnapshot } from 'valtio';
|
||||||
|
|
||||||
|
@ -39,23 +46,20 @@ function NavMenu(props) {
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const buttonRef = useRef();
|
||||||
|
const [menuState, toggleMenu] = useMenuState();
|
||||||
|
const anchorProps = useClick(menuState.state, toggleMenu);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Menu
|
<>
|
||||||
portal={{
|
|
||||||
target: document.body,
|
|
||||||
}}
|
|
||||||
{...props}
|
|
||||||
overflow="auto"
|
|
||||||
viewScroll="close"
|
|
||||||
boundingBoxPadding="8 8 8 8"
|
|
||||||
unmountOnClose
|
|
||||||
menuButton={({ open }) => (
|
|
||||||
<button
|
<button
|
||||||
|
ref={buttonRef}
|
||||||
type="button"
|
type="button"
|
||||||
class={`button plain nav-menu-button ${
|
class={`button plain nav-menu-button ${
|
||||||
moreThanOneAccount ? 'with-avatar' : ''
|
moreThanOneAccount ? 'with-avatar' : ''
|
||||||
} ${open ? 'active' : ''}`}
|
} ${open ? 'active' : ''}`}
|
||||||
style={{ position: 'relative' }}
|
style={{ position: 'relative' }}
|
||||||
|
{...anchorProps}
|
||||||
onContextMenu={(e) => {
|
onContextMenu={(e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
states.showAccounts = true;
|
states.showAccounts = true;
|
||||||
|
@ -65,8 +69,7 @@ function NavMenu(props) {
|
||||||
{moreThanOneAccount && (
|
{moreThanOneAccount && (
|
||||||
<Avatar
|
<Avatar
|
||||||
url={
|
url={
|
||||||
currentAccount?.info?.avatar ||
|
currentAccount?.info?.avatar || currentAccount?.info?.avatarStatic
|
||||||
currentAccount?.info?.avatarStatic
|
|
||||||
}
|
}
|
||||||
size="l"
|
size="l"
|
||||||
squircle={currentAccount?.info?.bot}
|
squircle={currentAccount?.info?.bot}
|
||||||
|
@ -74,7 +77,25 @@ function NavMenu(props) {
|
||||||
)}
|
)}
|
||||||
<Icon icon="menu" size={moreThanOneAccount ? 's' : 'l'} />
|
<Icon icon="menu" size={moreThanOneAccount ? 's' : 'l'} />
|
||||||
</button>
|
</button>
|
||||||
)}
|
<ControlledMenu
|
||||||
|
{...menuState}
|
||||||
|
anchorRef={buttonRef}
|
||||||
|
onClose={() => {
|
||||||
|
toggleMenu(false);
|
||||||
|
}}
|
||||||
|
containerProps={{
|
||||||
|
onClick: () => {
|
||||||
|
toggleMenu(false);
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
portal={{
|
||||||
|
target: document.body,
|
||||||
|
}}
|
||||||
|
{...props}
|
||||||
|
overflow="auto"
|
||||||
|
viewScroll="close"
|
||||||
|
boundingBoxPadding="8 8 8 8"
|
||||||
|
unmountOnClose
|
||||||
>
|
>
|
||||||
{!!snapStates.appVersion?.commitHash &&
|
{!!snapStates.appVersion?.commitHash &&
|
||||||
__COMMIT_HASH__ !== snapStates.appVersion.commitHash && (
|
__COMMIT_HASH__ !== snapStates.appVersion.commitHash && (
|
||||||
|
@ -179,7 +200,8 @@ function NavMenu(props) {
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
</Menu>
|
</ControlledMenu>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue