image-preview.tsx 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. import type { FC } from 'react'
  2. import React, { useCallback, useEffect, useRef, useState } from 'react'
  3. import { t } from 'i18next'
  4. import { createPortal } from 'react-dom'
  5. import { RiAddBoxLine, RiCloseLine, RiDownloadCloud2Line, RiFileCopyLine, RiZoomInLine, RiZoomOutLine } from '@remixicon/react'
  6. import { useHotkeys } from 'react-hotkeys-hook'
  7. import Tooltip from '@/app/components/base/tooltip'
  8. import Toast from '@/app/components/base/toast'
  9. type ImagePreviewProps = {
  10. url: string
  11. title: string
  12. onCancel: () => void
  13. onPrev?: () => void
  14. onNext?: () => void
  15. }
  16. const isBase64 = (str: string): boolean => {
  17. try {
  18. return btoa(atob(str)) === str
  19. }
  20. catch (err) {
  21. return false
  22. }
  23. }
  24. const ImagePreview: FC<ImagePreviewProps> = ({
  25. url,
  26. title,
  27. onCancel,
  28. onPrev,
  29. onNext,
  30. }) => {
  31. const [scale, setScale] = useState(1)
  32. const [position, setPosition] = useState({ x: 0, y: 0 })
  33. const [isDragging, setIsDragging] = useState(false)
  34. const imgRef = useRef<HTMLImageElement>(null)
  35. const dragStartRef = useRef({ x: 0, y: 0 })
  36. const [isCopied, setIsCopied] = useState(false)
  37. const openInNewTab = () => {
  38. // Open in a new window, considering the case when the page is inside an iframe
  39. if (url.startsWith('http') || url.startsWith('https')) {
  40. window.open(url, '_blank')
  41. }
  42. else if (url.startsWith('data:image')) {
  43. // Base64 image
  44. const win = window.open()
  45. win?.document.write(`<img src="${url}" alt="${title}" />`)
  46. }
  47. else {
  48. Toast.notify({
  49. type: 'error',
  50. message: `Unable to open image: ${url}`,
  51. })
  52. }
  53. }
  54. const downloadImage = () => {
  55. // Open in a new window, considering the case when the page is inside an iframe
  56. if (url.startsWith('http') || url.startsWith('https')) {
  57. const a = document.createElement('a')
  58. a.href = url
  59. a.target = '_blank'
  60. a.download = title
  61. a.click()
  62. }
  63. else if (url.startsWith('data:image')) {
  64. // Base64 image
  65. const a = document.createElement('a')
  66. a.href = url
  67. a.target = '_blank'
  68. a.download = title
  69. a.click()
  70. }
  71. else {
  72. Toast.notify({
  73. type: 'error',
  74. message: `Unable to open image: ${url}`,
  75. })
  76. }
  77. }
  78. const zoomIn = () => {
  79. setScale(prevScale => Math.min(prevScale * 1.2, 15))
  80. }
  81. const zoomOut = () => {
  82. setScale((prevScale) => {
  83. const newScale = Math.max(prevScale / 1.2, 0.5)
  84. if (newScale === 1)
  85. setPosition({ x: 0, y: 0 }) // Reset position when fully zoomed out
  86. return newScale
  87. })
  88. }
  89. const imageBase64ToBlob = (base64: string, type = 'image/png'): Blob => {
  90. const byteCharacters = atob(base64)
  91. const byteArrays = []
  92. for (let offset = 0; offset < byteCharacters.length; offset += 512) {
  93. const slice = byteCharacters.slice(offset, offset + 512)
  94. const byteNumbers = Array.from({ length: slice.length })
  95. for (let i = 0; i < slice.length; i++)
  96. byteNumbers[i] = slice.charCodeAt(i)
  97. const byteArray = new Uint8Array(byteNumbers as any)
  98. byteArrays.push(byteArray)
  99. }
  100. return new Blob(byteArrays, { type })
  101. }
  102. const imageCopy = useCallback(() => {
  103. const shareImage = async () => {
  104. try {
  105. const base64Data = url.split(',')[1]
  106. const blob = imageBase64ToBlob(base64Data, 'image/png')
  107. await navigator.clipboard.write([
  108. new ClipboardItem({
  109. [blob.type]: blob,
  110. }),
  111. ])
  112. setIsCopied(true)
  113. Toast.notify({
  114. type: 'success',
  115. message: t('common.operation.imageCopied'),
  116. })
  117. }
  118. catch (err) {
  119. console.error('Failed to copy image:', err)
  120. const link = document.createElement('a')
  121. link.href = url
  122. link.download = `${title}.png`
  123. document.body.appendChild(link)
  124. link.click()
  125. document.body.removeChild(link)
  126. Toast.notify({
  127. type: 'info',
  128. message: t('common.operation.imageDownloaded'),
  129. })
  130. }
  131. }
  132. shareImage()
  133. }, [title, url])
  134. const handleWheel = useCallback((e: React.WheelEvent<HTMLDivElement>) => {
  135. if (e.deltaY < 0)
  136. zoomIn()
  137. else
  138. zoomOut()
  139. }, [])
  140. const handleMouseDown = useCallback((e: React.MouseEvent<HTMLDivElement>) => {
  141. if (scale > 1) {
  142. setIsDragging(true)
  143. dragStartRef.current = { x: e.clientX - position.x, y: e.clientY - position.y }
  144. }
  145. }, [scale, position])
  146. const handleMouseMove = useCallback((e: React.MouseEvent<HTMLDivElement>) => {
  147. if (isDragging && scale > 1) {
  148. const deltaX = e.clientX - dragStartRef.current.x
  149. const deltaY = e.clientY - dragStartRef.current.y
  150. // Calculate boundaries
  151. const imgRect = imgRef.current?.getBoundingClientRect()
  152. const containerRect = imgRef.current?.parentElement?.getBoundingClientRect()
  153. if (imgRect && containerRect) {
  154. const maxX = (imgRect.width * scale - containerRect.width) / 2
  155. const maxY = (imgRect.height * scale - containerRect.height) / 2
  156. setPosition({
  157. x: Math.max(-maxX, Math.min(maxX, deltaX)),
  158. y: Math.max(-maxY, Math.min(maxY, deltaY)),
  159. })
  160. }
  161. }
  162. }, [isDragging, scale])
  163. const handleMouseUp = useCallback(() => {
  164. setIsDragging(false)
  165. }, [])
  166. useEffect(() => {
  167. document.addEventListener('mouseup', handleMouseUp)
  168. return () => {
  169. document.removeEventListener('mouseup', handleMouseUp)
  170. }
  171. }, [handleMouseUp])
  172. useHotkeys('esc', onCancel)
  173. useHotkeys('up', zoomIn)
  174. useHotkeys('down', zoomOut)
  175. useHotkeys('left', onPrev || (() => { }))
  176. useHotkeys('right', onNext || (() => { }))
  177. return createPortal(
  178. <div className='image-preview-container fixed inset-0 z-[1000] flex items-center justify-center bg-black/80 p-8'
  179. onClick={e => e.stopPropagation()}
  180. onWheel={handleWheel}
  181. onMouseDown={handleMouseDown}
  182. onMouseMove={handleMouseMove}
  183. onMouseUp={handleMouseUp}
  184. style={{ cursor: scale > 1 ? 'move' : 'default' }}
  185. tabIndex={-1}>
  186. { }
  187. <img
  188. ref={imgRef}
  189. alt={title}
  190. src={isBase64(url) ? `data:image/png;base64,${url}` : url}
  191. className='max-h-full max-w-full'
  192. style={{
  193. transform: `scale(${scale}) translate(${position.x}px, ${position.y}px)`,
  194. transition: isDragging ? 'none' : 'transform 0.2s ease-in-out',
  195. }}
  196. />
  197. <Tooltip popupContent={t('common.operation.copyImage')}>
  198. <div className='absolute right-48 top-6 flex h-8 w-8 cursor-pointer items-center justify-center rounded-lg'
  199. onClick={imageCopy}>
  200. {isCopied
  201. ? <RiFileCopyLine className='h-4 w-4 text-green-500' />
  202. : <RiFileCopyLine className='h-4 w-4 text-gray-500' />}
  203. </div>
  204. </Tooltip>
  205. <Tooltip popupContent={t('common.operation.zoomOut')}>
  206. <div className='absolute right-40 top-6 flex h-8 w-8 cursor-pointer items-center justify-center rounded-lg'
  207. onClick={zoomOut}>
  208. <RiZoomOutLine className='h-4 w-4 text-gray-500' />
  209. </div>
  210. </Tooltip>
  211. <Tooltip popupContent={t('common.operation.zoomIn')}>
  212. <div className='absolute right-32 top-6 flex h-8 w-8 cursor-pointer items-center justify-center rounded-lg'
  213. onClick={zoomIn}>
  214. <RiZoomInLine className='h-4 w-4 text-gray-500' />
  215. </div>
  216. </Tooltip>
  217. <Tooltip popupContent={t('common.operation.download')}>
  218. <div className='absolute right-24 top-6 flex h-8 w-8 cursor-pointer items-center justify-center rounded-lg'
  219. onClick={downloadImage}>
  220. <RiDownloadCloud2Line className='h-4 w-4 text-gray-500' />
  221. </div>
  222. </Tooltip>
  223. <Tooltip popupContent={t('common.operation.openInNewTab')}>
  224. <div className='absolute right-16 top-6 flex h-8 w-8 cursor-pointer items-center justify-center rounded-lg'
  225. onClick={openInNewTab}>
  226. <RiAddBoxLine className='h-4 w-4 text-gray-500' />
  227. </div>
  228. </Tooltip>
  229. <Tooltip popupContent={t('common.operation.cancel')}>
  230. <div
  231. className='absolute right-6 top-6 flex h-8 w-8 cursor-pointer items-center justify-center rounded-lg bg-white/8 backdrop-blur-[2px]'
  232. onClick={onCancel}>
  233. <RiCloseLine className='h-4 w-4 text-gray-500' />
  234. </div>
  235. </Tooltip>
  236. </div>,
  237. document.body,
  238. )
  239. }
  240. export default ImagePreview