2023-09-05 09:12:34 +00:00
|
|
|
// react
|
|
|
|
import React, { Fragment } from "react";
|
|
|
|
|
|
|
|
// headless ui
|
|
|
|
import { Transition, Dialog } from "@headlessui/react";
|
|
|
|
|
|
|
|
// icons
|
|
|
|
import { XMarkIcon } from "@heroicons/react/24/outline";
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
isOpen: boolean;
|
|
|
|
onClose: () => void;
|
|
|
|
modalTitle: string;
|
|
|
|
children: React.ReactNode;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const WebViewModal = (props: Props) => {
|
|
|
|
const { isOpen, onClose, modalTitle, children } = props;
|
|
|
|
|
|
|
|
const handleClose = () => {
|
|
|
|
onClose();
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Transition.Root show={isOpen} as={Fragment}>
|
|
|
|
<Dialog as="div" className="relative z-10" onClose={handleClose}>
|
|
|
|
<Transition.Child
|
|
|
|
as={Fragment}
|
|
|
|
enter="ease-out duration-300"
|
|
|
|
enterFrom="opacity-0"
|
|
|
|
enterTo="opacity-100"
|
|
|
|
leave="ease-in duration-200"
|
|
|
|
leaveFrom="opacity-100"
|
|
|
|
leaveTo="opacity-0"
|
|
|
|
>
|
|
|
|
<div className="fixed inset-0 bg-custom-backdrop bg-opacity-50 transition-opacity" />
|
|
|
|
</Transition.Child>
|
|
|
|
|
2023-09-05 11:36:17 +00:00
|
|
|
<div className="fixed bottom-0 left-0 w-full z-10 overflow-y-auto">
|
2023-09-05 09:12:34 +00:00
|
|
|
<div className="flex min-h-full items-end justify-center text-center sm:items-center">
|
|
|
|
<Transition.Child
|
|
|
|
as={Fragment}
|
|
|
|
enter="ease-out duration-300"
|
|
|
|
enterFrom="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
|
|
enterTo="opacity-100 translate-y-0 sm:scale-100"
|
|
|
|
leave="ease-in duration-200"
|
|
|
|
leaveFrom="opacity-100 translate-y-0 sm:scale-100"
|
|
|
|
leaveTo="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
|
|
>
|
2023-09-07 13:12:24 +00:00
|
|
|
<Dialog.Panel className="relative transform overflow-hidden rounded-none rounded-tr-[20px] rounded-tl-[20px] bg-custom-background-100 p-6 text-left shadow-xl transition-all sm:mt-8 w-full">
|
2023-09-05 09:12:34 +00:00
|
|
|
<div className="flex justify-between items-center w-full">
|
|
|
|
<Dialog.Title
|
|
|
|
as="h3"
|
|
|
|
className="text-2xl font-semibold leading-6 text-custom-text-100"
|
|
|
|
>
|
|
|
|
{modalTitle}
|
|
|
|
</Dialog.Title>
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
className="inline-flex justify-center items-center p-2 rounded-md text-custom-text-200 hover:text-custom-text-100 focus:outline-none"
|
|
|
|
onClick={handleClose}
|
|
|
|
>
|
|
|
|
<XMarkIcon className="w-6 h-6 text-custom-text-200" />
|
|
|
|
</button>
|
|
|
|
</div>
|
2023-10-12 06:58:36 +00:00
|
|
|
<div className="flex flex-col mt-6 h-full max-h-[70vh]">{children}</div>
|
2023-09-05 09:12:34 +00:00
|
|
|
</Dialog.Panel>
|
|
|
|
</Transition.Child>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Dialog>
|
|
|
|
</Transition.Root>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
type OptionsProps = {
|
|
|
|
options: Array<{
|
2023-10-12 06:58:36 +00:00
|
|
|
label: string | React.ReactNode;
|
2023-09-05 09:12:34 +00:00
|
|
|
value: string | null;
|
2023-09-06 11:38:19 +00:00
|
|
|
checked: boolean;
|
2023-09-05 09:12:34 +00:00
|
|
|
icon?: any;
|
|
|
|
onClick: () => void;
|
|
|
|
}>;
|
|
|
|
};
|
|
|
|
|
2023-09-06 11:38:19 +00:00
|
|
|
const Options: React.FC<OptionsProps> = ({ options }) => (
|
2023-10-12 06:58:36 +00:00
|
|
|
<div className="divide-y divide-custom-border-300 flex-1 overflow-auto">
|
2023-09-05 09:12:34 +00:00
|
|
|
{options.map((option) => (
|
2023-09-07 13:12:24 +00:00
|
|
|
<div key={option.value} className="flex items-center justify-between gap-2 py-[14px]">
|
2023-10-12 06:58:36 +00:00
|
|
|
<div onClick={option.onClick} className="flex items-center gap-x-2 w-full">
|
2023-09-05 09:12:34 +00:00
|
|
|
<input
|
|
|
|
type="checkbox"
|
2023-09-06 11:38:19 +00:00
|
|
|
checked={option.checked}
|
2023-10-12 06:58:36 +00:00
|
|
|
readOnly
|
2023-09-05 09:12:34 +00:00
|
|
|
className="rounded-full border border-custom-border-200 bg-custom-background-100 w-4 h-4"
|
|
|
|
/>
|
|
|
|
|
|
|
|
{option.icon}
|
|
|
|
|
|
|
|
<p className="text-sm font-normal">{option.label}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
2023-10-12 06:58:36 +00:00
|
|
|
type FooterProps = {
|
|
|
|
children: React.ReactNode;
|
|
|
|
className?: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
const Footer: React.FC<FooterProps> = ({ children, className }) => (
|
|
|
|
<div className={`mt-2 flex-shrink-0 ${className ? className : ""}`}>{children}</div>
|
|
|
|
);
|
|
|
|
|
2023-09-05 09:12:34 +00:00
|
|
|
WebViewModal.Options = Options;
|
2023-10-12 06:58:36 +00:00
|
|
|
WebViewModal.Footer = Footer;
|
2023-09-05 09:12:34 +00:00
|
|
|
WebViewModal.Options.displayName = "WebViewModal.Options";
|
2023-10-12 06:58:36 +00:00
|
|
|
WebViewModal.Footer.displayName = "WebViewModal.Footer";
|