/* @refresh reload */ import { Dialog, DialogDescription, DialogPanel, DialogTitle } from "solid-headless"; import { Component, createEffect, createSignal, JSX } from "solid-js"; import { Button } from "./button"; import { Portal } from "solid-js/web"; import { getElementById } from "../utils/dom"; interface MyDialog extends TitleProps { description?: string, button?: JSX.Element, acceptButtonName?: string, acceptButtonId?: string, cancelButtonName?: string, callback?: () => void, buttonClass?: string, buttonTitle?: string | null, } const MyDialog: Component = ( { title, description, button, acceptButtonName = "Ok", cancelButtonName = "Cancel", children, callback, className, buttonClass, buttonTitle, acceptButtonId, }) => { const [isOpen, setIsOpen] = createSignal(false); function callbackAndClose(): void { if (callback) { callback(); } setIsOpen(false); } function setupKeyPress(): () => void { let isMounted = true; /** * Pressing "Enter" when the modal is open, will click the accept button * @param e KeyboardEvent of keypress */ function click(e: KeyboardEvent): void { if (isMounted && e.key === "Enter" && acceptButtonId) { getElementById(acceptButtonId)?.click(); } } if (isOpen()) { const id = "cl-6" const el = getElementById(id); el?.addEventListener("keypress", click); return () => { el?.removeEventListener("keypress", click); isMounted = false; } } else return () => undefined; } createEffect(setupKeyPress, isOpen()); return (
setIsOpen(false) } class={ `fixed inset-0 flex-row-center justify-center z-50 overflow-auto text-white ${ className }` }>
{ title } { description } { children }
); } export default MyDialog;