cc-haha/desktop/src/components/chat/InlineImageGallery.tsx
程序员阿江(Relakkes) 0c24a5da3e feat(desktop): render relative workspace images inline; stop images doubling as cards
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-05-31 17:40:46 +08:00

157 lines
5.7 KiB
TypeScript

import { useMemo, useState } from 'react'
import { ImageGalleryModal } from './ImageGalleryModal'
import { getBaseUrl } from '../../api/client'
import { extractAssistantOutputTargets } from '../../lib/assistantOutputTargets'
import { previewFsUrl } from '../../lib/handlePreviewLink'
import { getServerBaseUrl } from '../../lib/desktopRuntime'
const IMAGE_EXTENSIONS = /\.(png|jpe?g|gif|webp|svg|bmp|avif|ico)$/i
/**
* Extracts absolute image file paths from text content.
* Matches paths like /Users/.../image.png, /tmp/output.jpg, etc.
*/
export function extractImagePaths(text: string): string[] {
// Match absolute paths ending with image extensions
// Handles paths that may be wrapped in backticks, quotes, or standalone
const regex = /(?:^|[\s`"'(])(\/?(?:[A-Za-z]:[\\/]|\/)[^\s`"')<>]+\.(?:png|jpe?g|gif|webp|svg|bmp|avif|ico))/gim
const paths: string[] = []
const seen = new Set<string>()
let match: RegExpExecArray | null
while ((match = regex.exec(text)) !== null) {
const p = match[1]!.trim()
if (!seen.has(p) && IMAGE_EXTENSIONS.test(p)) {
seen.add(p)
paths.push(p)
}
}
return paths
}
function fileUrl(filePath: string): string {
return `${getBaseUrl()}/api/filesystem/file?path=${encodeURIComponent(filePath)}`
}
function fileName(filePath: string): string {
return filePath.split('/').pop() || filePath
}
type GalleryImage = {
src: string
name: string
}
type Props = {
text: string
/**
* When provided, relative workspace image paths (e.g. `outputs/foo/frame.png`)
* are also rendered inline, served via `/preview-fs/<sessionId>/...`. Absent
* (ToolResult/ToolCall usage) keeps the legacy absolute-path-only behavior.
*/
sessionId?: string
workDir?: string | null
}
export function InlineImageGallery({ text, sessionId, workDir }: Props) {
const [activeIndex, setActiveIndex] = useState<number | null>(null)
const imagePaths = useMemo(() => extractImagePaths(text), [text])
const images = useMemo<GalleryImage[]>(() => {
// 1. Absolute paths (legacy behavior) — served via /api/filesystem/file.
const absolute: GalleryImage[] = imagePaths.map((p) => ({ src: fileUrl(p), name: fileName(p) }))
if (!sessionId) {
return absolute
}
// 2. Relative workspace images — only when a sessionId is available so we can
// build a /preview-fs URL. Reuses the sandboxed target extractor instead of
// a bespoke relative-path regex.
const base = getServerBaseUrl()
const relativeTargets = extractAssistantOutputTargets(text, { workDir }).filter(
(target) => target.kind === 'image',
)
// Dedup: an absolute path inside the workspace can be caught by BOTH sources.
// Skip a relative target whose basename already appears among the absolute
// images, and also collapse duplicate relative targets by resolved src.
const absoluteNames = new Set(absolute.map((img) => img.name))
const seenSrc = new Set(absolute.map((img) => img.src))
const relative: GalleryImage[] = []
for (const target of relativeTargets) {
const relPath = target.normalizedPath ?? target.href
const name = fileName(relPath)
if (absoluteNames.has(name)) {
continue
}
const src = previewFsUrl(base, sessionId, relPath)
if (seenSrc.has(src)) {
continue
}
seenSrc.add(src)
relative.push({ src, name })
}
return [...absolute, ...relative]
}, [imagePaths, sessionId, text, workDir])
if (images.length === 0) return null
return (
<>
<div className="mt-3 space-y-2">
<div className="flex items-center gap-1.5 text-[10px] font-semibold uppercase tracking-wider text-[var(--color-outline)]">
<span className="material-symbols-outlined text-[12px]">image</span>
{images.length === 1 ? '1 image' : `${images.length} images`}
</div>
<div className={`grid gap-2 ${images.length === 1 ? 'grid-cols-1' : 'grid-cols-2'}`}>
{images.map((img, i) => (
<button
key={img.src}
type="button"
onClick={() => setActiveIndex(i)}
className="group relative overflow-hidden rounded-xl border border-[var(--color-border)] bg-[var(--color-surface-container-low)] text-left shadow-sm transition-all hover:shadow-md hover:border-[var(--color-brand)]/40"
>
<img
src={img.src}
alt={img.name}
loading="lazy"
className="w-full object-cover"
style={{ maxHeight: images.length === 1 ? 400 : 240 }}
onError={(e) => {
// Hide broken images
(e.target as HTMLImageElement).closest('button')!.style.display = 'none'
}}
/>
<div className="absolute inset-0 flex items-center justify-center bg-black/0 opacity-0 transition-all group-hover:bg-black/20 group-hover:opacity-100">
<span className="material-symbols-outlined rounded-full bg-white/90 p-2 text-[20px] text-[var(--color-text-primary)] shadow-lg">
fullscreen
</span>
</div>
<div className="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black/60 to-transparent px-2.5 pb-2 pt-6">
<span className="text-[10px] font-medium text-white/90 drop-shadow-sm">
{img.name}
</span>
</div>
</button>
))}
</div>
</div>
{activeIndex !== null && activeIndex >= 0 && (
<ImageGalleryModal
open={activeIndex !== null}
images={images}
activeIndex={activeIndex}
onClose={() => setActiveIndex(null)}
onSelect={setActiveIndex}
/>
)}
</>
)
}