cc-haha/desktop/src/components/chat/InlineImageGallery.tsx
程序员阿江(Relakkes) 635a966c3e fix(desktop): unblock rollout with reliable session and IM flows
This folds together the desktop-side fixes needed before broader rollout.
Session resume no longer deadlocks waiting on init, Mermaid and inline image
output render inside chat, task and sub-agent state stay visible during
execution, local build/release paths are safer, and Feishu/Telegram now expose
lightweight mobile commands (/help, /status, /clear) without adding a new
adapter-specific protocol.

Constraint: Desktop releases must publish updater artifacts from non-draft GitHub releases
Constraint: IM commands need short, phone-friendly responses and low operational complexity
Rejected: Add a dedicated IM command API surface | re-used existing slash commands and session/task REST endpoints to keep adapters thin
Rejected: Wait for task_update push events in WebUI | added low-risk polling because the current frontend ignores that event path
Confidence: medium
Scope-risk: broad
Reversibility: clean
Directive: Keep IM command replies terse and mobile-first, and merge local fallback slash commands when server-provided lists are partial
Tested: cd desktop && bun x vitest run src/components/chat/MermaidRenderer.test.tsx src/components/markdown/MarkdownRenderer.test.tsx
Tested: cd desktop && bun x vitest run src/components/chat/composerUtils.test.ts src/pages/ActiveSession.test.tsx src/stores/chatStore.test.ts
Tested: cd desktop && bun run lint
Tested: bun test src/server/__tests__/conversations.test.ts --test-name-pattern "SDK init arrives only after the first user turn" --timeout 60000
Tested: cd adapters && bun test common/ feishu/ telegram/
Tested: cd adapters && bunx tsc --noEmit
Not-tested: Full GitHub Actions release run on all three desktop platforms
Not-tested: Local DMG packaging end-to-end on Apple Silicon
Not-tested: Real Feishu/Telegram device sessions against a live adapter process
2026-04-10 16:41:59 +08:00

107 lines
3.8 KiB
TypeScript

import { useMemo, useState } from 'react'
import { ImageGalleryModal } from './ImageGalleryModal'
import { getBaseUrl } from '../../api/client'
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 Props = {
text: string
}
export function InlineImageGallery({ text }: Props) {
const [activeIndex, setActiveIndex] = useState<number | null>(null)
const imagePaths = useMemo(() => extractImagePaths(text), [text])
const images = useMemo(
() => imagePaths.map((p) => ({ src: fileUrl(p), name: fileName(p) })),
[imagePaths],
)
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}
/>
)}
</>
)
}