feat/context-menu #10

Merged
tristonarmstrong merged 2 commits from feat/context-menu into main 2024-10-12 17:32:33 +00:00
Showing only changes of commit a2259f40ed - Show all commits

View File

@ -1,4 +1,4 @@
import { useClickOutside, useMouse } from "@kaioken-core/hooks";
import { useClickOutside, useKeyStroke, useMouse } from "@kaioken-core/hooks";
import { Portal, signal, useEffect, useRef } from "kaioken";
namespace ContextMenuPortal {
@ -20,6 +20,14 @@ export function ContextMenuPortal({ children, open, closeAction }: ContextMenuPo
useEffect(() => {
if (!open) return
pos.value = { x: mouse.x, y: mouse.y }
function _handleEscapeKey(e: KeyboardEvent) {
if (e.key !== "Escape") return
closeAction?.()
}
document.addEventListener("keydown", _handleEscapeKey)
return () => {
document.removeEventListener("keydown", _handleEscapeKey)
}
}, [open])
if (!open) return null