mirror of
https://github.com/langgenius/dify.git
synced 2026-07-24 04:58:32 +08:00
60 lines
1.4 KiB
TypeScript
60 lines
1.4 KiB
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import { cn } from '@langgenius/dify-ui/cn'
|
|
import * as React from 'react'
|
|
import { useState } from 'react'
|
|
import ImagePreview from '@/app/components/base/image-uploader/image-preview'
|
|
import s from './style.module.css'
|
|
|
|
type Props = Readonly<{
|
|
srcs: string[]
|
|
}>
|
|
|
|
const getWidthStyle = (imgNum: number) => {
|
|
if (imgNum === 1) {
|
|
return {
|
|
maxWidth: '100%',
|
|
}
|
|
}
|
|
|
|
if (imgNum === 2 || imgNum === 4) {
|
|
return {
|
|
width: 'calc(50% - 4px)',
|
|
}
|
|
}
|
|
|
|
return {
|
|
width: 'calc(33.3333% - 5.3333px)',
|
|
}
|
|
}
|
|
|
|
const ImageGallery: FC<Props> = ({ srcs }) => {
|
|
const [imagePreviewUrl, setImagePreviewUrl] = useState('')
|
|
|
|
const imgNum = srcs.length
|
|
const imgStyle = getWidthStyle(imgNum)
|
|
return (
|
|
<div className={cn(s[`img-${imgNum}`], 'flex flex-wrap')} data-testid="image-gallery">
|
|
{srcs.map((src, index) =>
|
|
!src ? null : (
|
|
<img
|
|
key={index}
|
|
className={s.item}
|
|
style={imgStyle}
|
|
src={src}
|
|
alt=""
|
|
data-testid="gallery-image" // Added for testing
|
|
onClick={() => setImagePreviewUrl(src)}
|
|
onError={(e) => e.currentTarget.remove()}
|
|
/>
|
|
),
|
|
)}
|
|
{imagePreviewUrl && (
|
|
<ImagePreview url={imagePreviewUrl} onCancel={() => setImagePreviewUrl('')} title="" />
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(ImageGallery)
|