mango-v4-ui/components/shared/Modal.tsx

84 lines
2.2 KiB
TypeScript
Raw Permalink Normal View History

2022-05-03 21:20:14 -07:00
import { Dialog } from '@headlessui/react'
2022-09-06 21:36:35 -07:00
import { XMarkIcon } from '@heroicons/react/20/solid'
2023-06-08 03:41:23 -07:00
import mangoStore from '@store/mangoStore'
2024-01-01 16:04:39 -08:00
import { useEffect } from 'react'
2022-05-03 21:20:14 -07:00
type ModalProps = {
children: React.ReactNode
2022-08-16 21:49:20 -07:00
disableOutsideClose?: boolean
2022-12-20 17:14:35 -08:00
fullScreen?: boolean
2022-05-03 21:20:14 -07:00
isOpen: boolean
2022-07-20 21:50:56 -07:00
onClose: () => void
2023-06-12 20:01:01 -07:00
panelClassNames?: string
2022-07-20 21:50:56 -07:00
hideClose?: boolean
2022-05-03 21:20:14 -07:00
}
2022-07-20 21:50:56 -07:00
function Modal({
children,
2022-08-16 21:49:20 -07:00
disableOutsideClose = false,
2022-12-20 17:14:35 -08:00
fullScreen = false,
2022-07-20 21:50:56 -07:00
isOpen,
onClose,
2023-06-12 20:01:01 -07:00
panelClassNames,
2022-07-20 21:50:56 -07:00
hideClose,
}: ModalProps) {
2023-06-08 03:41:23 -07:00
const themeData = mangoStore((s) => s.themeData)
2024-01-01 16:04:39 -08:00
useEffect(() => {
document.documentElement.style.overflow = isOpen ? 'hidden' : 'auto'
return () => {
document.documentElement.style.overflow = 'auto'
}
}, [isOpen])
const handleClose = () => {
2024-05-05 04:58:41 -07:00
if (disableOutsideClose && !fullScreen) return
onClose()
}
2022-05-03 21:20:14 -07:00
return (
<Dialog
open={isOpen}
onClose={handleClose}
2022-12-15 19:16:05 -08:00
className="relative z-40 overflow-y-auto"
2022-05-03 21:20:14 -07:00
>
2022-11-16 07:23:44 -08:00
<div
className={`fixed inset-0 backdrop-brightness-[0.5] ${
2022-11-16 07:23:44 -08:00
disableOutsideClose ? 'pointer-events-none' : ''
}`}
aria-hidden="true"
/>
2022-12-20 17:14:35 -08:00
<div
2024-03-26 18:49:18 -07:00
className={`fixed inset-0 flex items-center sm:justify-center ${
2022-12-20 17:14:35 -08:00
fullScreen ? '' : 'sm:px-4'
}`}
>
<Dialog.Panel
2023-06-08 03:41:23 -07:00
className={`${themeData.fonts.body.variable} ${
themeData.fonts.display.variable
} ${
themeData.fonts.mono.variable
2024-05-05 04:58:41 -07:00
} h-full w-full bg-th-bkg-1 font-body ${
2022-12-20 17:14:35 -08:00
fullScreen
2024-05-05 04:58:41 -07:00
? ''
2024-07-03 21:20:06 -07:00
: 'thin-scroll overflow-y-auto p-4 sm:h-auto sm:max-w-md sm:rounded-lg sm:border sm:border-th-bkg-3 sm:p-6 md:max-h-[calc(100vh-48px)]'
2023-06-12 20:01:01 -07:00
} relative ${panelClassNames}`}
2022-12-20 17:14:35 -08:00
>
2023-04-16 18:51:53 -07:00
<div>{children}</div>
2022-07-20 21:50:56 -07:00
{!hideClose ? (
<button
2024-01-01 16:04:39 -08:00
onClick={handleClose}
2023-10-12 04:51:02 -07:00
className={`absolute right-4 top-4 text-th-fgd-4 focus:outline-none focus-visible:text-th-active sm:right-2 sm:top-2 md:hover:text-th-active`}
2022-07-20 21:50:56 -07:00
>
2022-09-29 21:21:23 -07:00
<XMarkIcon className={`h-6 w-6`} />
2022-07-20 21:50:56 -07:00
</button>
) : null}
2022-11-16 07:23:44 -08:00
</Dialog.Panel>
2022-05-03 21:20:14 -07:00
</div>
</Dialog>
)
}
export default Modal