fix: use portal to make sure ellipsis menu opens on top of note list
This commit is contained in:
@@ -6,6 +6,7 @@ import {
|
|||||||
DisclosureButton,
|
DisclosureButton,
|
||||||
DisclosurePanel,
|
DisclosurePanel,
|
||||||
} from '@reach/disclosure';
|
} from '@reach/disclosure';
|
||||||
|
import { Portal } from '@reach/portal';
|
||||||
import MoreIcon from '../../icons/ic-more.svg';
|
import MoreIcon from '../../icons/ic-more.svg';
|
||||||
import { useRef, useState } from 'preact/hooks';
|
import { useRef, useState } from 'preact/hooks';
|
||||||
import { observer } from 'mobx-react-lite';
|
import { observer } from 'mobx-react-lite';
|
||||||
@@ -55,6 +56,8 @@ export const NotesOptionsPanel = observer(({ appState }: Props) => {
|
|||||||
<VisuallyHidden>Actions</VisuallyHidden>
|
<VisuallyHidden>Actions</VisuallyHidden>
|
||||||
<MoreIcon className="fill-current block" />
|
<MoreIcon className="fill-current block" />
|
||||||
</DisclosureButton>
|
</DisclosureButton>
|
||||||
|
<Portal>
|
||||||
|
<div className="sn-component">
|
||||||
<DisclosurePanel
|
<DisclosurePanel
|
||||||
onKeyUp={(event) => {
|
onKeyUp={(event) => {
|
||||||
if (event.key === 'Escape' && !submenuOpen) {
|
if (event.key === 'Escape' && !submenuOpen) {
|
||||||
@@ -66,7 +69,7 @@ export const NotesOptionsPanel = observer(({ appState }: Props) => {
|
|||||||
style={{
|
style={{
|
||||||
...position,
|
...position,
|
||||||
}}
|
}}
|
||||||
className="sn-dropdown sn-dropdown-anchor-right flex flex-col py-2"
|
className="sn-dropdown flex flex-col py-2"
|
||||||
>
|
>
|
||||||
{open && (
|
{open && (
|
||||||
<NotesOptions
|
<NotesOptions
|
||||||
@@ -76,6 +79,8 @@ export const NotesOptionsPanel = observer(({ appState }: Props) => {
|
|||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</DisclosurePanel>
|
</DisclosurePanel>
|
||||||
|
</div>
|
||||||
|
</Portal>
|
||||||
</Disclosure>
|
</Disclosure>
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user