IOPaint/lama_cleaner/app/src/components/shared/Modal.tsx
2022-04-07 21:38:10 +08:00

41 lines
922 B
TypeScript

import { XIcon } from '@heroicons/react/outline'
import React, { ReactNode, useRef } from 'react'
import { useClickAway, useKey } from 'react-use'
import Button from './Button'
export interface ModalProps {
show: boolean
children?: ReactNode
onClose?: () => void
title: string
className?: string
}
export default function Modal(props: ModalProps) {
const { show, children, onClose, className, title } = props
const ref = useRef(null)
useClickAway(ref, () => {
onClose?.()
})
useKey('Escape', onClose, {
event: 'keydown',
})
return (
<div
className="modal-mask"
style={{ visibility: show === true ? 'visible' : 'hidden' }}
>
<div ref={ref} className={`modal ${className}`}>
<div className="modal-header">
<h3>{title}</h3>
<Button icon={<XIcon />} onClick={onClose} />
</div>
{children}
</div>
</div>
)
}