dify/web/app/components/base/content-dialog/index.tsx

52 lines
1.4 KiB
TypeScript
Raw Normal View History

2025-03-19 15:19:01 +08:00
import type { ReactNode } from 'react'
import { Transition, TransitionChild } from '@headlessui/react'
import classNames from '@/utils/classnames'
type ContentDialogProps = {
className?: string
show: boolean
onClose?: () => void
children: ReactNode
}
const ContentDialog = ({
className,
show,
onClose,
children,
}: ContentDialogProps) => {
return (
<Transition
show={show}
as="div"
className="absolute left-0 top-0 w-full h-full z-20 p-2 box-border"
>
2025-03-19 15:19:01 +08:00
<TransitionChild>
<div
2025-03-19 15:19:01 +08:00
className={classNames(
'absolute left-0 inset-0 w-full bg-app-detail-overlay-bg',
'data-[closed]:opacity-0',
'data-[enter]:ease-out data-[enter]:duration-300 data-[enter]:opacity-100',
'data-[leave]:ease-in data-[leave]:duration-200 data-[leave]:opacity-0',
)}
onClick={onClose}
/>
2025-03-19 15:19:01 +08:00
</TransitionChild>
2025-03-19 15:19:01 +08:00
<TransitionChild>
<div className={classNames(
'absolute left-0 w-full bg-app-detail-bg border-r border-divider-burn',
2025-03-19 15:19:01 +08:00
'data-[closed]:-translate-x-full',
'data-[enter]:ease-out data-[enter]:duration-300 data-[enter]:translate-x-0',
'data-[leave]:ease-in data-[leave]:duration-200 data-[leave]:-translate-x-full',
className,
)}>
{children}
</div>
2025-03-19 15:19:01 +08:00
</TransitionChild>
</Transition>
)
}
export default ContentDialog