diff --git a/src/components/dialog.tsx b/src/components/dialog.tsx new file mode 100644 index 0000000..305938b --- /dev/null +++ b/src/components/dialog.tsx @@ -0,0 +1,101 @@ +/* @refresh reload */ +import { Dialog, DialogDescription, DialogPanel, DialogTitle } from "solid-headless"; +import type { TitleProps } from "../types/interfaces"; +import { createEffect, createSignal, JSX } from "solid-js"; +import { Button } from "./button"; +import { Portal } from "solid-js/web"; + +interface MyDialog extends TitleProps { + description?: string, + button?: JSX.Element, + acceptButtonName?: string | null, + acceptButtonId?: string, + cancelButtonName?: string | null, + callback?: () => void, + buttonClasses?: string, + buttonTitle?: string | null, +} + +export default function MyDialog( + { + title, + description, + button, + acceptButtonName = "Ok", + cancelButtonName = "Cancel", + children, + callback, + className, + buttonClasses, + buttonTitle, + acceptButtonId, + }: MyDialog): JSX.Element { + + 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") { + (document.getElementById(acceptButtonId ?? "") as HTMLButtonElement | null)?.click(); + } + } + + if (isOpen()) { + const id = "cl-6" + const el = document.getElementById(id); + el?.addEventListener("keypress", e => click(e)); + return () => { + el?.removeEventListener("keypress", e => click(e)); + isMounted = false; + } + } + } + + 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 } + +
+ + +
+ +
+ +
+
+
+ ); +}