mirror of
https://github.com/langgenius/dify.git
synced 2026-05-10 22:28:55 +08:00
86 lines
2.2 KiB
TypeScript
86 lines
2.2 KiB
TypeScript
'use client'
|
|
import { cn } from '@langgenius/dify-ui/cn'
|
|
import {
|
|
Drawer,
|
|
DrawerBackdrop,
|
|
DrawerCloseButton,
|
|
DrawerContent,
|
|
DrawerPopup,
|
|
DrawerPortal,
|
|
DrawerTitle,
|
|
DrawerViewport,
|
|
} from '@langgenius/dify-ui/drawer'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
type IFloatRightContainerProps = {
|
|
isMobile: boolean
|
|
isOpen: boolean
|
|
onClose: () => void
|
|
children?: React.ReactNode
|
|
showClose?: boolean
|
|
panelClassName?: string
|
|
title?: string
|
|
mask?: boolean
|
|
}
|
|
|
|
const FloatRightContainer = ({
|
|
isMobile,
|
|
children,
|
|
isOpen,
|
|
onClose,
|
|
showClose = false,
|
|
panelClassName,
|
|
title,
|
|
mask = true,
|
|
}: IFloatRightContainerProps) => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<>
|
|
{isMobile && (
|
|
<Drawer
|
|
open={isOpen}
|
|
modal
|
|
swipeDirection="right"
|
|
onOpenChange={(open) => {
|
|
if (!open)
|
|
onClose()
|
|
}}
|
|
>
|
|
<DrawerPortal>
|
|
<DrawerBackdrop className={cn(!mask && 'bg-transparent')} />
|
|
<DrawerViewport>
|
|
<DrawerPopup className={cn('data-[swipe-direction=right]:w-full data-[swipe-direction=right]:max-w-sm', panelClassName)}>
|
|
<DrawerContent className="flex min-h-0 flex-1 flex-col">
|
|
{(title || showClose) && (
|
|
<div className="mb-4 flex shrink-0 items-center justify-between">
|
|
{title && (
|
|
<DrawerTitle className="text-lg leading-6 font-medium text-text-primary">
|
|
{title}
|
|
</DrawerTitle>
|
|
)}
|
|
{showClose && (
|
|
<DrawerCloseButton
|
|
aria-label={t('operation.close', { ns: 'common' })}
|
|
className="h-6 w-6 rounded-md"
|
|
data-testid="close-icon"
|
|
/>
|
|
)}
|
|
</div>
|
|
)}
|
|
{children}
|
|
</DrawerContent>
|
|
</DrawerPopup>
|
|
</DrawerViewport>
|
|
</DrawerPortal>
|
|
</Drawer>
|
|
)}
|
|
{(!isMobile && isOpen) && (
|
|
<>{children}</>
|
|
)}
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default FloatRightContainer
|