mirror of
				https://github.com/langgenius/dify.git
				synced 2025-11-04 04:43:09 +00:00 
			
		
		
		
	Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: jZonG <jzongcode@gmail.com>
		
			
				
	
	
		
			85 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
'use client'
 | 
						|
import type { FC } from 'react'
 | 
						|
import React, { useState } from 'react'
 | 
						|
import s from './style.module.css'
 | 
						|
import cn from '@/utils/classnames'
 | 
						|
import ImagePreview from '@/app/components/base/image-uploader/image-preview'
 | 
						|
 | 
						|
type Props = {
 | 
						|
  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')}>
 | 
						|
      {/* TODO: support preview */}
 | 
						|
      {srcs.map((src, index) => (
 | 
						|
 | 
						|
        <img
 | 
						|
          key={index}
 | 
						|
          className={s.item}
 | 
						|
          style={imgStyle}
 | 
						|
          src={src}
 | 
						|
          alt=''
 | 
						|
          onClick={() => setImagePreviewUrl(src)}
 | 
						|
          onError={e => e.currentTarget.remove()}
 | 
						|
        />
 | 
						|
      ))}
 | 
						|
      {
 | 
						|
        imagePreviewUrl && (
 | 
						|
          <ImagePreview
 | 
						|
            url={imagePreviewUrl}
 | 
						|
            onCancel={() => setImagePreviewUrl('')} title={''} />
 | 
						|
        )
 | 
						|
      }
 | 
						|
    </div>
 | 
						|
  )
 | 
						|
}
 | 
						|
 | 
						|
export default React.memo(ImageGallery)
 | 
						|
 | 
						|
export const ImageGalleryTest = () => {
 | 
						|
  const imgGallerySrcs = (() => {
 | 
						|
    const srcs = []
 | 
						|
    for (let i = 0; i < 6; i++)
 | 
						|
      // srcs.push('https://placekitten.com/640/360')
 | 
						|
      // srcs.push('https://placekitten.com/360/640')
 | 
						|
      srcs.push('https://placekitten.com/360/360')
 | 
						|
 | 
						|
    return srcs
 | 
						|
  })()
 | 
						|
  return (
 | 
						|
    <div className='space-y-2'>
 | 
						|
      {imgGallerySrcs.map((_, index) => (
 | 
						|
        <div key={index} className='rounded-lg bg-[#D1E9FF80] p-4 pb-2'>
 | 
						|
          <ImageGallery srcs={imgGallerySrcs.slice(0, index + 1)} />
 | 
						|
        </div>
 | 
						|
      ))}
 | 
						|
    </div>
 | 
						|
  )
 | 
						|
}
 |