2022-07-02 22:24:12 +01:00
|
|
|
import React, { useRef } from 'react';
|
2022-06-12 20:07:52 +01:00
|
|
|
import { Dialog as HDialog } from '@headlessui/react';
|
2022-06-05 19:56:42 +01:00
|
|
|
import { Button } from '@/components/elements/button/index';
|
|
|
|
import { XIcon } from '@heroicons/react/solid';
|
2022-06-12 20:07:52 +01:00
|
|
|
import DialogIcon from '@/components/elements/dialog/DialogIcon';
|
|
|
|
import { AnimatePresence, motion } from 'framer-motion';
|
2022-06-20 16:17:33 +01:00
|
|
|
import ConfirmationDialog from '@/components/elements/dialog/ConfirmationDialog';
|
2022-07-02 22:24:12 +01:00
|
|
|
import DialogContext from './context';
|
|
|
|
import DialogFooter from '@/components/elements/dialog/DialogFooter';
|
|
|
|
import styles from './style.module.css';
|
2022-06-05 19:56:42 +01:00
|
|
|
|
2022-06-20 16:17:33 +01:00
|
|
|
export interface DialogProps {
|
2022-06-12 20:07:52 +01:00
|
|
|
open: boolean;
|
|
|
|
onClose: () => void;
|
2022-07-02 22:24:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface FullDialogProps extends DialogProps {
|
2022-06-12 20:07:52 +01:00
|
|
|
hideCloseIcon?: boolean;
|
2022-06-05 19:56:42 +01:00
|
|
|
title?: string;
|
2022-06-20 16:17:33 +01:00
|
|
|
description?: string | undefined;
|
2022-06-05 19:56:42 +01:00
|
|
|
children?: React.ReactNode;
|
|
|
|
}
|
|
|
|
|
2022-07-02 22:24:12 +01:00
|
|
|
const Dialog = ({ open, title, description, onClose, hideCloseIcon, children }: FullDialogProps) => {
|
|
|
|
const ref = useRef<HTMLDivElement>(null);
|
|
|
|
const icon = useRef<HTMLDivElement>(null);
|
|
|
|
const buttons = useRef<HTMLDivElement>(null);
|
2022-06-05 19:56:42 +01:00
|
|
|
|
|
|
|
return (
|
2022-06-12 20:07:52 +01:00
|
|
|
<AnimatePresence>
|
|
|
|
{open && (
|
2022-07-02 22:24:12 +01:00
|
|
|
<DialogContext.Provider value={{ icon, buttons }}>
|
|
|
|
<HDialog
|
|
|
|
static
|
|
|
|
as={motion.div}
|
|
|
|
initial={{ opacity: 0 }}
|
|
|
|
animate={{ opacity: 1 }}
|
|
|
|
exit={{ opacity: 0 }}
|
|
|
|
transition={{ duration: 0.15 }}
|
|
|
|
open={open}
|
|
|
|
onClose={onClose}
|
|
|
|
>
|
|
|
|
<div className={'fixed inset-0 bg-gray-900/50 z-40'} />
|
|
|
|
<div className={'fixed inset-0 overflow-y-auto z-50'}>
|
|
|
|
<div className={styles.container}>
|
|
|
|
<HDialog.Panel
|
|
|
|
as={motion.div}
|
|
|
|
initial={{ opacity: 0, scale: 0.85 }}
|
|
|
|
animate={{ opacity: 1, scale: 1 }}
|
|
|
|
exit={{ opacity: 0 }}
|
|
|
|
transition={{ type: 'spring', damping: 15, stiffness: 300, duration: 0.15 }}
|
|
|
|
className={styles.panel}
|
|
|
|
>
|
|
|
|
<div className={'flex p-6 overflow-y-auto'}>
|
|
|
|
<div ref={ref} className={'flex-1 max-h-[70vh]'}>
|
|
|
|
<div className={'flex items-center'}>
|
|
|
|
<div ref={icon} />
|
|
|
|
<div>
|
|
|
|
{title && (
|
|
|
|
<HDialog.Title className={styles.title}>{title}</HDialog.Title>
|
|
|
|
)}
|
|
|
|
{description && (
|
|
|
|
<HDialog.Description>{description}</HDialog.Description>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{children}
|
|
|
|
</div>
|
2022-06-12 20:07:52 +01:00
|
|
|
</div>
|
2022-07-02 22:24:12 +01:00
|
|
|
<div ref={buttons} />
|
|
|
|
{/* Keep this below the other buttons so that it isn't the default focus if they're present. */}
|
|
|
|
{!hideCloseIcon && (
|
|
|
|
<div className={'absolute right-0 top-0 m-4'}>
|
|
|
|
<Button.Text
|
|
|
|
size={Button.Sizes.Small}
|
|
|
|
shape={Button.Shapes.IconSquare}
|
|
|
|
onClick={onClose}
|
|
|
|
className={'group'}
|
|
|
|
>
|
|
|
|
<XIcon className={styles.close_icon} />
|
|
|
|
</Button.Text>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</HDialog.Panel>
|
|
|
|
</div>
|
2022-06-05 19:56:42 +01:00
|
|
|
</div>
|
2022-07-02 22:24:12 +01:00
|
|
|
</HDialog>
|
|
|
|
</DialogContext.Provider>
|
2022-06-12 20:07:52 +01:00
|
|
|
)}
|
|
|
|
</AnimatePresence>
|
2022-06-05 19:56:42 +01:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2022-06-20 16:17:33 +01:00
|
|
|
const _Dialog = Object.assign(Dialog, {
|
|
|
|
Confirm: ConfirmationDialog,
|
2022-07-02 22:24:12 +01:00
|
|
|
Footer: DialogFooter,
|
2022-06-20 16:17:33 +01:00
|
|
|
Icon: DialogIcon,
|
|
|
|
});
|
2022-06-05 19:56:42 +01:00
|
|
|
|
|
|
|
export default _Dialog;
|