mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-05-13 13:17:45 +00:00
81 lines
2.5 KiB
TypeScript
81 lines
2.5 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { createPortal } from "react-dom";
|
|
import { Icon } from "@iconify/react";
|
|
import SubmitButton from "../submit-button";
|
|
|
|
interface Props {
|
|
title: string;
|
|
description: string;
|
|
onSubmit: (close: () => void) => void;
|
|
error?: string;
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
export default function SubmitDialogButton({ title, description, onSubmit, error, children }: Props) {
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
const [isVisible, setIsVisible] = useState(false);
|
|
|
|
const submit = () => {
|
|
onSubmit(close);
|
|
};
|
|
|
|
const close = () => {
|
|
setIsVisible(false);
|
|
setTimeout(() => {
|
|
setIsOpen(false);
|
|
}, 300);
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (isOpen) {
|
|
// slight delay to trigger animation
|
|
setTimeout(() => setIsVisible(true), 10);
|
|
}
|
|
}, [isOpen]);
|
|
|
|
return (
|
|
<>
|
|
<button onClick={() => setIsOpen(true)} aria-label="Open Submit Dialog" className="pill button size-11 p-1! text-2xl">
|
|
<Icon icon="material-symbols:check-rounded" />
|
|
</button>
|
|
|
|
{isOpen &&
|
|
createPortal(
|
|
<div className="fixed inset-0 w-full h-[calc(100%-var(--header-height))] top-(--header-height) flex items-center justify-center z-40">
|
|
<div
|
|
onClick={close}
|
|
className={`z-40 absolute inset-0 backdrop-brightness-75 backdrop-blur-xs transition-opacity duration-300 ${
|
|
isVisible ? "opacity-100" : "opacity-0"
|
|
}`}
|
|
/>
|
|
|
|
<div
|
|
className={`z-50 bg-orange-50 border-2 border-amber-500 rounded-2xl shadow-lg p-6 w-full max-w-md transition-discrete duration-300 flex flex-col dark:bg-slate-800 dark:border-slate-600 ${
|
|
isVisible ? "scale-100 opacity-100" : "scale-75 opacity-0"
|
|
}`}
|
|
>
|
|
<div className="flex justify-between items-center mb-2">
|
|
<h2 className="text-xl font-bold dark:text-slate-100">{title}</h2>
|
|
<button onClick={close} aria-label="Close" className="text-red-400 hover:text-red-500 text-2xl cursor-pointer">
|
|
<Icon icon="material-symbols:close-rounded" />
|
|
</button>
|
|
</div>
|
|
|
|
<p className="text-sm text-zinc-500 dark:text-slate-400">{description}</p>
|
|
|
|
{children}
|
|
{error && <span className="text-red-400 font-bold mt-2">Error: {error}</span>}
|
|
|
|
<div className="flex justify-end gap-2 mt-4">
|
|
<button onClick={close} className="pill button">
|
|
Cancel
|
|
</button>
|
|
<SubmitButton onClick={submit} />
|
|
</div>
|
|
</div>
|
|
</div>,
|
|
document.body,
|
|
)}
|
|
</>
|
|
);
|
|
}
|