mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-10 11:26:52 +08:00
feat: parent child retrieval (#12106)
Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: -LAN- <laipz8200@outlook.com>
This commit is contained in:
29
web/app/components/datasets/preview/container.tsx
Normal file
29
web/app/components/datasets/preview/container.tsx
Normal file
@@ -0,0 +1,29 @@
|
||||
import type { ComponentProps, FC, ReactNode } from 'react'
|
||||
import { forwardRef } from 'react'
|
||||
import classNames from '@/utils/classnames'
|
||||
|
||||
export type PreviewContainerProps = ComponentProps<'div'> & {
|
||||
header: ReactNode
|
||||
mainClassName?: string
|
||||
}
|
||||
|
||||
export const PreviewContainer: FC<PreviewContainerProps> = forwardRef((props, ref) => {
|
||||
const { children, className, header, mainClassName, ...rest } = props
|
||||
return <div className={className}>
|
||||
<div
|
||||
{...rest}
|
||||
ref={ref}
|
||||
className={classNames(
|
||||
'flex flex-col w-full h-full overflow-y-auto rounded-l-xl border-t-[0.5px] border-l-[0.5px] border-components-panel-border bg-background-default-lighter shadow shadow-shadow-shadow-5',
|
||||
)}
|
||||
>
|
||||
<header className='pl-5 pt-4 pr-4 pb-3 border-b border-divider-subtle'>
|
||||
{header}
|
||||
</header>
|
||||
<main className={classNames('py-5 px-6 w-full h-full', mainClassName)}>
|
||||
{children}
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
})
|
||||
PreviewContainer.displayName = 'PreviewContainer'
|
||||
Reference in New Issue
Block a user