File size: 13,539 Bytes
abcf568 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 | import { useCallback, useEffect, useMemo, useState, type MouseEvent as ReactMouseEvent } from 'react'
import { copyImageAssetToClipboard, exportImageAsset } from '../../../components/image-preview/image-asset'
import { useI18n } from '../../../i18n'
import type {
StudioFileAttachment,
StudioPermissionDecision,
StudioPermissionRequest,
StudioRun,
StudioSession,
StudioTask,
StudioWork,
StudioWorkResult,
} from '../../protocol/studio-agent-types'
import { truncateStudioText } from '../../theme'
import { PlotPreviewLightbox } from '../lightbox/PlotPreviewLightbox'
import type { PlotPreviewVariant, PlotWorkListItem } from '../types'
import { PlotHistoryStrip } from './PlotHistoryStrip'
import { PlotPreviewContextMenu } from './PlotPreviewContextMenu'
import { PlotPreviewSurface } from './PlotPreviewSurface'
import { usePlotPreviewImage } from './use-plot-preview-image'
interface PlotPreviewPanelProps {
session: StudioSession | null
works: PlotWorkListItem[]
selectedWorkId: string | null
work: StudioWork | null
result: StudioWorkResult | null
latestRun: StudioRun | null
tasks: StudioTask[]
requests: StudioPermissionRequest[]
replyingPermissionIds: Record<string, boolean>
latestAssistantText: string
errorMessage?: string | null
onSelectWork: (workId: string) => void
onReorderWorks: (workIds: string[]) => void
onReply: (requestId: string, reply: StudioPermissionDecision) => Promise<void> | void
onSendPreviewToComposer?: (attachment: { url: string; name: string; mimeType?: string }) => void
variant?: PlotPreviewVariant
}
export function PlotPreviewPanel({
session,
works,
selectedWorkId,
result,
onSelectWork,
onReorderWorks,
onSendPreviewToComposer,
variant = 'default',
}: PlotPreviewPanelProps) {
const { t } = useI18n()
const isTLayout = variant === 't-layout-top'
const isMinimal = variant === 'pure-minimal-top'
const [lightboxOpen, setLightboxOpen] = useState(false)
const [draggingWorkId, setDraggingWorkId] = useState<string | null>(null)
const [selectedImageIndex, setSelectedImageIndex] = useState(0)
const [previewMotionKey, setPreviewMotionKey] = useState(0)
const [previewContextMenu, setPreviewContextMenu] = useState({ open: false, x: 0, y: 0 })
const [exportingFormat, setExportingFormat] = useState<'png' | 'svg' | 'pdf' | null>(null)
const [copyingFormat, setCopyingFormat] = useState<'png' | 'svg' | null>(null)
const stripItems = works.slice(0, 12)
const historyImages = useMemo(() => {
return stripItems.flatMap((entry) => (
getImageAttachments(entry.result?.attachments).map((attachment, imageIndex) => ({
workId: entry.work.id,
attachment,
title: entry.work.title,
imageIndex,
}))
))
}, [stripItems])
const currentWorkImages = useMemo(() => getImageAttachments(result?.attachments), [result?.attachments])
const currentImagePathsKey = currentWorkImages.map((attachment) => attachment.path).join('|')
const clampedImageIndex = currentWorkImages.length === 0
? 0
: Math.min(selectedImageIndex, currentWorkImages.length - 1)
const selectedHistoryIndex = historyImages.findIndex((entry) => (
entry.workId === selectedWorkId && entry.imageIndex === clampedImageIndex
))
const activeHistoryIndex = selectedHistoryIndex >= 0
? selectedHistoryIndex
: historyImages.findIndex((entry) => entry.workId === selectedWorkId)
const activeHistoryEntry = historyImages[activeHistoryIndex] ?? null
const previewAttachment = currentWorkImages[clampedImageIndex] ?? activeHistoryEntry?.attachment ?? null
const { previewSrc: previewDisplaySrc } = usePlotPreviewImage(previewAttachment?.path)
const outputPath = formatOutputPath(previewAttachment, session, t('studio.plot.inlinePreview'), t('studio.plot.waitingOutputFile'))
const handlePreviewExport = useCallback(async (format: 'png' | 'svg' | 'pdf') => {
if (!previewAttachment?.path || exportingFormat) {
return
}
setPreviewContextMenu({ open: false, x: 0, y: 0 })
setExportingFormat(format)
try {
await exportImageAsset({
source: previewAttachment.path,
format,
index: clampedImageIndex,
fallbackName: previewAttachment.name,
})
} catch (error) {
console.error(`Failed to export ${format}`, error)
} finally {
setExportingFormat(null)
}
}, [clampedImageIndex, exportingFormat, previewAttachment])
const handlePreviewCopy = useCallback(async (format: 'png' | 'svg') => {
if (!previewAttachment?.path || copyingFormat) {
return
}
setPreviewContextMenu({ open: false, x: 0, y: 0 })
setCopyingFormat(format)
try {
await copyImageAssetToClipboard({
source: previewAttachment.path,
format,
})
} catch (error) {
console.error(`Failed to copy ${format}`, error)
} finally {
setCopyingFormat(null)
}
}, [copyingFormat, previewAttachment])
useEffect(() => {
setSelectedImageIndex(0)
}, [selectedWorkId, result?.id])
useEffect(() => {
setSelectedImageIndex((current) => {
if (currentWorkImages.length === 0) {
return current === 0 ? current : 0
}
const next = Math.min(current, currentWorkImages.length - 1)
return next === current ? current : next
})
}, [currentImagePathsKey, currentWorkImages.length])
useEffect(() => {
if (!previewAttachment?.path) {
return
}
setPreviewMotionKey((current) => current + 1)
}, [previewAttachment?.path, result?.id])
const handlePrev = useCallback(() => {
if (historyImages.length <= 1) {
return
}
const baseIndex = activeHistoryIndex >= 0 ? activeHistoryIndex : 0
const nextIndex = baseIndex <= 0 ? historyImages.length - 1 : baseIndex - 1
const nextEntry = historyImages[nextIndex]
onSelectWork(nextEntry.workId)
setSelectedImageIndex(nextEntry.imageIndex)
}, [activeHistoryIndex, historyImages, onSelectWork])
const handleNext = useCallback(() => {
if (historyImages.length <= 1) {
return
}
const baseIndex = activeHistoryIndex >= 0 ? activeHistoryIndex : 0
const nextIndex = baseIndex >= historyImages.length - 1 ? 0 : baseIndex + 1
const nextEntry = historyImages[nextIndex]
onSelectWork(nextEntry.workId)
setSelectedImageIndex(nextEntry.imageIndex)
}, [activeHistoryIndex, historyImages, onSelectWork])
useEffect(() => {
if (lightboxOpen || historyImages.length <= 1) {
return undefined
}
const handleWindowKeyDown = (event: KeyboardEvent) => {
if (event.defaultPrevented || event.metaKey || event.ctrlKey || event.altKey) {
return
}
const target = event.target as HTMLElement | null
if (
target instanceof HTMLInputElement
|| target instanceof HTMLTextAreaElement
|| target instanceof HTMLSelectElement
|| target?.isContentEditable
) {
return
}
if (event.key === 'ArrowLeft') {
event.preventDefault()
handlePrev()
return
}
if (event.key === 'ArrowRight') {
event.preventDefault()
handleNext()
}
}
window.addEventListener('keydown', handleWindowKeyDown, true)
return () => window.removeEventListener('keydown', handleWindowKeyDown, true)
}, [handleNext, handlePrev, historyImages.length, lightboxOpen])
const moveWork = (targetWorkId: string) => {
if (!draggingWorkId || draggingWorkId === targetWorkId) {
return
}
const nextIds = stripItems.map((entry) => entry.work.id)
const fromIndex = nextIds.indexOf(draggingWorkId)
const toIndex = nextIds.indexOf(targetWorkId)
if (fromIndex === -1 || toIndex === -1) {
return
}
const reordered = [...nextIds]
const [moved] = reordered.splice(fromIndex, 1)
reordered.splice(toIndex, 0, moved)
onReorderWorks(reordered)
}
const handleSurfaceContextMenu = (event: ReactMouseEvent<HTMLDivElement>) => {
event.preventDefault()
if (!previewAttachment?.path) {
return
}
setPreviewContextMenu({
open: true,
x: event.clientX,
y: event.clientY,
})
}
return (
<section className={`relative flex h-full min-h-0 min-w-0 flex-col overflow-hidden ${isTLayout || isMinimal ? 'bg-transparent' : 'bg-bg-primary/40 backdrop-blur-sm'}`}>
{!isTLayout && !isMinimal && (
<div className="relative shrink-0 px-8 pb-3 pt-8">
<div className="flex items-center justify-between">
<div className="group flex items-center gap-3">
<div className="h-1.5 w-1.5 rounded-full bg-accent/40" />
<div className="min-w-0 font-mono text-[10px] uppercase tracking-[0.2em] text-text-secondary/40 transition-colors group-hover:text-text-secondary/70">
{outputPath}
</div>
<PlotCornerPaw className="h-3.5 w-3.5 text-text-secondary/20 transition-colors duration-500 group-hover:text-text-secondary/32" />
</div>
</div>
</div>
)}
<div className={`flex min-h-0 min-w-0 flex-1 flex-col ${isTLayout || isMinimal ? 'p-0' : 'px-6 pb-6 pt-2 sm:px-8 lg:px-10'}`}>
<div className="relative min-h-0 flex-1">
<div className={`flex h-full items-center justify-center ${isTLayout || isMinimal ? '' : 'min-h-[360px] sm:min-h-[460px] lg:min-h-[560px]'}`}>
<PlotPreviewSurface
key={`${previewMotionKey}:${previewAttachment?.path ?? 'empty'}`}
attachment={previewAttachment}
previewSrc={previewDisplaySrc}
result={result}
canNavigate={historyImages.length > 1}
currentIndex={activeHistoryIndex >= 0 ? activeHistoryIndex : 0}
total={historyImages.length}
variant={variant}
onOpen={() => setLightboxOpen(true)}
onContextMenu={handleSurfaceContextMenu}
onPrev={handlePrev}
onNext={handleNext}
/>
</div>
</div>
{!isTLayout && !isMinimal && (
<PlotHistoryStrip
entries={historyImages}
selectedWorkId={selectedWorkId}
selectedImageIndex={clampedImageIndex}
draggingWorkId={draggingWorkId}
onSelect={(workId, imageIndex) => {
onSelectWork(workId)
setSelectedImageIndex(imageIndex)
}}
onDragStart={setDraggingWorkId}
onDrop={(workId) => {
moveWork(workId)
setDraggingWorkId(null)
}}
onDragEnd={() => setDraggingWorkId(null)}
/>
)}
</div>
<PlotPreviewLightbox
isOpen={lightboxOpen}
activeImage={previewDisplaySrc ?? previewAttachment?.path}
activeIndex={activeHistoryIndex >= 0 ? activeHistoryIndex : 0}
total={historyImages.length}
editableFilename={previewAttachment?.name}
canNavigate={historyImages.length > 1}
onPrev={handlePrev}
onNext={handleNext}
onSendPreviewToComposer={onSendPreviewToComposer}
onClose={() => {
setLightboxOpen(false)
}}
/>
<PlotPreviewContextMenu
isOpen={previewContextMenu.open}
x={previewContextMenu.x}
y={previewContextMenu.y}
hasPreview={Boolean(previewAttachment?.path)}
copyingFormat={copyingFormat}
exportingFormat={exportingFormat}
onCopy={(format) => {
void handlePreviewCopy(format)
}}
onExport={(format) => {
void handlePreviewExport(format)
}}
onOpenLightbox={() => {
setPreviewContextMenu({ open: false, x: 0, y: 0 })
setLightboxOpen(true)
}}
onClose={() => setPreviewContextMenu({ open: false, x: 0, y: 0 })}
/>
</section>
)
}
function getImageAttachments(attachments: StudioFileAttachment[] | undefined): StudioFileAttachment[] {
return (attachments ?? []).filter(isImageAttachment)
}
function formatOutputPath(
attachment: StudioFileAttachment | null | undefined,
session: StudioSession | null,
inlinePreviewLabel: string,
waitingOutputLabel: string,
) {
if (attachment?.name) {
return attachment.name
}
if (attachment?.path) {
if (attachment.path.startsWith('data:')) {
return inlinePreviewLabel
}
return truncateStudioText(attachment.path, 88)
}
return session?.directory ?? waitingOutputLabel
}
function isImageAttachment(attachment: { path: string; mimeType?: string } | undefined) {
if (!attachment) {
return false
}
return attachment.mimeType?.startsWith('image/') || isImagePath(attachment.path)
}
function isImagePath(path?: string) {
return Boolean(path && /\.(png|jpg|jpeg|gif|webp|svg)$/i.test(path))
}
function PlotCornerPaw({ className = '' }: { className?: string }) {
return (
<svg viewBox="0 0 64 64" aria-hidden="true" className={`studio-paw-float ${className}`.trim()}>
<g fill="currentColor">
<ellipse cx="20" cy="18" rx="6" ry="8" transform="rotate(-18 20 18)" />
<ellipse cx="32" cy="13" rx="6" ry="8" />
<ellipse cx="44" cy="18" rx="6" ry="8" transform="rotate(18 44 18)" />
<ellipse cx="18" cy="31" rx="5" ry="7" transform="rotate(-30 18 31)" />
<path d="M32 28c-10 0-18 7-18 16 0 7 6 11 11 11 3 0 5-1 7-3 2 2 4 3 7 3 5 0 11-4 11-11 0-9-8-16-18-16Z" />
</g>
</svg>
)
}
|