Spaces:
Paused
Paused
File size: 17,898 Bytes
55153d0 | 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 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 | import { useState, useEffect, useCallback } from 'react'
import { motion, AnimatePresence } from 'framer-motion'
import {
FileText, Shield, Copy, Check, ChevronLeft, Layers, Search,
Database, Hash, Activity, Code,
} from 'lucide-react'
const API_BASE = ''
export default function FileDetail({ fileId, onClear }) {
const [files, setFiles] = useState([])
const [selectedId, setSelectedId] = useState(fileId)
const [meta, setMeta] = useState(null)
const [summary, setSummary] = useState(null)
const [capabilities, setCapabilities] = useState(null)
const [state, setState] = useState(null)
const [loading, setLoading] = useState(false)
const [copied, setCopied] = useState(false)
const [activeTab, setActiveTab] = useState('meta')
// Fetch file list
useEffect(() => {
const fetchFiles = async () => {
try {
const res = await fetch(`${API_BASE}/files`)
const data = await res.json()
setFiles(data.files || [])
if (!selectedId && data.files?.length > 0) {
setSelectedId(data.files[0].file_id)
}
} catch {
setFiles([])
}
}
fetchFiles()
}, [])
// Update selectedId when fileId prop changes
useEffect(() => {
if (fileId) setSelectedId(fileId)
}, [fileId])
// Fetch detail data for selected file
const fetchDetail = useCallback(async (id) => {
if (!id) return
setLoading(true)
setMeta(null)
setSummary(null)
setCapabilities(null)
setState(null)
try {
const [mRes, sRes, cRes, stRes] = await Promise.all([
fetch(`${API_BASE}/meta/${id}`).then(r => r.json()).catch(() => null),
fetch(`${API_BASE}/summary/${id}`).then(r => r.json()).catch(() => null),
fetch(`${API_BASE}/capabilities/${id}`).then(r => r.json()).catch(() => null),
fetch(`${API_BASE}/superpose/state/${id}`).then(r => r.json()).catch(() => null),
])
setMeta(mRes)
setSummary(sRes)
setCapabilities(cRes)
setState(stRes)
} finally {
setLoading(false)
}
}, [])
useEffect(() => {
fetchDetail(selectedId)
}, [selectedId, fetchDetail])
const copyUrl = () => {
navigator.clipboard?.writeText(`${API_BASE}/meta/${selectedId}`)
setCopied(true)
setTimeout(() => setCopied(false), 2000)
}
const selectedFile = files.find(f => f.file_id === selectedId)
const isLive = state?.session_status === 'live'
return (
<div className="p-6 h-full overflow-y-auto thin-scrollbar">
{/* File selector */}
<div className="flex items-center gap-2 mb-4 flex-wrap">
{onClear && (
<button
onClick={onClear}
className="flex items-center gap-1 text-xs text-secondary hover:text-text px-2 py-1.5 rounded-lg glass transition-all"
>
<ChevronLeft className="w-3 h-3" />
Back
</button>
)}
{files.map(f => (
<button
key={f.file_id}
onClick={() => setSelectedId(f.file_id)}
className={`px-3 py-1.5 rounded-lg text-xs font-mono transition-all ${selectedId === f.file_id
? 'glass-orange text-primary'
: 'glass text-secondary hover:text-text'
}`}
>
{f.filename}
</button>
))}
</div>
{loading && (
<div className="flex items-center justify-center py-12">
<motion.div
animate={{ opacity: [0.3, 0.8, 0.3] }}
transition={{ duration: 1.5, repeat: Infinity }}
className="text-sm text-secondary font-mono"
>
Fetching file data...
</motion.div>
</div>
)}
{!loading && meta && (
<>
{/* File header */}
<motion.div
initial={{ opacity: 0, y: 10 }}
animate={{ opacity: 1, y: 0 }}
className="glass rounded-2xl p-5 mb-4"
>
<div className="flex items-center justify-between mb-4">
<div className="flex items-center gap-3">
<div className="w-10 h-10 rounded-xl glass-orange flex items-center justify-center">
<FileText className="w-5 h-5 text-primary" />
</div>
<div>
<div className="text-sm font-semibold">{meta.meta?.filename || selectedFile?.filename}</div>
<div className="text-[10px] text-secondary font-mono">{selectedId}</div>
</div>
</div>
<div className="flex items-center gap-2">
<span className={`text-[10px] font-mono ${isLive ? 'text-success' : 'text-critical'}`}>
{isLive ? '● LIVE' : '● OFFLINE'}
</span>
<button
onClick={copyUrl}
className="flex items-center gap-1 px-2 py-1 rounded-lg text-[10px] glass hover:glass-orange transition-all"
>
{copied ? <Check className="w-3 h-3 text-success" /> : <Copy className="w-3 h-3" />}
{copied ? 'Copied' : 'Copy URL'}
</button>
</div>
</div>
{/* Real measured metadata grid */}
<div className="grid grid-cols-2 md:grid-cols-4 gap-4">
{[
['Size', meta.meta?.size_human || '—'],
['Lines', meta.meta?.total_lines || '—'],
['Format', meta.meta?.format || '—'],
['Chunks', meta.meta?.total_chunks || '—'],
['Words', meta.meta?.total_words || '—'],
['Chars', meta.meta?.total_chars || '—'],
['Entropy', meta.meta?.entropy || '—'],
['Merkle Root', meta.meta?.merkle_root?.slice(0, 12) + '...' || '—'],
].map(([label, value]) => (
<div key={label}>
<div className="text-[10px] uppercase tracking-wider text-secondary mb-1">{label}</div>
<div className="text-sm font-mono tabular-nums">{value}</div>
</div>
))}
</div>
{state && (
<div className="mt-4 pt-4 border-t border-white/5 grid grid-cols-3 gap-4">
<div>
<div className="text-[10px] uppercase tracking-wider text-secondary mb-1">Index Size</div>
<div className="text-sm font-mono">{state.compression_ratio || '—'}</div>
</div>
<div>
<div className="text-[10px] uppercase tracking-wider text-secondary mb-1">Queries</div>
<div className="text-sm font-mono tabular-nums">{state.total_queries || 0}</div>
</div>
<div>
<div className="text-[10px] uppercase tracking-wider text-secondary mb-1">Last Access</div>
<div className="text-sm font-mono">{state.last_access ? new Date(state.last_access * 1000).toLocaleTimeString() : 'Never'}</div>
</div>
</div>
)}
</motion.div>
{/* Tabs */}
<div className="flex items-center gap-1 mb-4">
{[
{ id: 'meta', label: 'Meta', icon: FileText },
{ id: 'summary', label: 'Summary', icon: Activity },
{ id: 'capabilities', label: 'Capabilities', icon: Shield },
{ id: 'chunks', label: 'Chunks', icon: Layers },
].map(tab => (
<button
key={tab.id}
onClick={() => setActiveTab(tab.id)}
className={`flex items-center gap-1.5 px-3 py-2 rounded-xl text-xs transition-all ${activeTab === tab.id
? 'glass-orange text-primary font-medium'
: 'glass text-secondary hover:text-text'
}`}
>
<tab.icon className="w-3.5 h-3.5" />
{tab.label}
</button>
))}
</div>
{/* Tab content */}
<AnimatePresence mode="wait">
<motion.div
key={activeTab}
initial={{ opacity: 0, y: 10 }}
animate={{ opacity: 1, y: 0 }}
exit={{ opacity: 0, y: -10 }}
transition={{ duration: 0.2 }}
>
{/* Meta tab */}
{activeTab === 'meta' && meta && (
<div className="glass rounded-2xl p-5">
<div className="flex items-center gap-2 mb-3">
<Hash className="w-4 h-4 text-primary" />
<span className="text-sm font-semibold">Metadata</span>
</div>
<pre className="text-[11px] font-mono text-secondary leading-relaxed overflow-x-auto thin-scrollbar">
{JSON.stringify(meta, null, 2)}
</pre>
</div>
)}
{/* Summary tab */}
{activeTab === 'summary' && summary && (
<div className="space-y-4">
{/* Semantic chunks */}
{summary.semantic_chunks && (
<div className="glass rounded-2xl p-5">
<div className="flex items-center gap-2 mb-3">
<Layers className="w-4 h-4 text-primary" />
<span className="text-sm font-semibold">Semantic Chunks ({summary.semantic_chunks.length})</span>
</div>
<div className="space-y-1.5 max-h-64 overflow-y-auto thin-scrollbar">
{summary.semantic_chunks.map(chunk => (
<div key={chunk.idx} className="flex items-center gap-3 py-1.5 px-2 rounded-lg hover:bg-white/5 text-[10px] font-mono">
<span className="text-primary w-6">#{chunk.idx}</span>
<span className="text-secondary w-20">{chunk.type}</span>
<span className="text-secondary/70">L{chunk.lines}</span>
<span className="text-secondary/50">{chunk.size}B</span>
</div>
))}
</div>
</div>
)}
{/* Functions */}
{summary.functions && summary.functions.length > 0 && (
<div className="glass rounded-2xl p-5">
<div className="flex items-center gap-2 mb-3">
<Code className="w-4 h-4 text-primary" />
<span className="text-sm font-semibold">Functions ({summary.functions.length})</span>
</div>
<div className="space-y-1">
{summary.functions.map((fn, i) => (
<div key={i} className="flex items-center gap-3 py-1.5 px-2 rounded-lg hover:bg-white/5 text-[10px] font-mono">
<span className="text-secondary/50">L{fn.line}</span>
<span className="text-primary">{fn.symbol}</span>
</div>
))}
</div>
</div>
)}
{/* Top words */}
{summary.top_words && (
<div className="glass rounded-2xl p-5">
<div className="flex items-center gap-2 mb-3">
<Search className="w-4 h-4 text-primary" />
<span className="text-sm font-semibold">Top Words</span>
</div>
<div className="flex flex-wrap gap-2">
{summary.top_words.map((w, i) => (
<span key={i} className="px-2 py-1 rounded-lg glass text-[10px] font-mono">
{w.word} <span className="text-secondary/50">×{w.count}</span>
</span>
))}
</div>
</div>
)}
{/* Section headers */}
{summary.section_headers && summary.section_headers.length > 0 && (
<div className="glass rounded-2xl p-5">
<div className="flex items-center gap-2 mb-3">
<Database className="w-4 h-4 text-primary" />
<span className="text-sm font-semibold">Sections ({summary.section_headers.length})</span>
</div>
<div className="space-y-1">
{summary.section_headers.map((s, i) => (
<div key={i} className="text-[10px] font-mono text-secondary py-1 px-2 rounded hover:bg-white/5">
{s.header} <span className="text-secondary/40">×{s.count}</span>
</div>
))}
</div>
</div>
)}
</div>
)}
{/* Capabilities tab */}
{activeTab === 'capabilities' && capabilities && (
<div className="glass rounded-2xl p-5">
<div className="flex items-center gap-2 mb-3">
<Shield className="w-4 h-4 text-primary" />
<span className="text-sm font-semibold">{capabilities.total} Capabilities</span>
</div>
<div className="grid grid-cols-2 md:grid-cols-3 gap-2">
{capabilities.capabilities?.map(cap => (
<div
key={cap.id}
className={`flex items-center gap-2 py-2 px-3 rounded-xl text-xs ${cap.enabled ? 'glass text-text' : 'bg-white/3 text-secondary/40'
}`}
>
<span className={`w-1.5 h-1.5 rounded-full ${cap.enabled ? 'bg-success' : 'bg-secondary/30'}`} />
<span className="font-mono">{cap.name}</span>
</div>
))}
</div>
</div>
)}
{/* Chunks tab */}
{activeTab === 'chunks' && summary?.semantic_chunks && (
<ChunkViewer fileId={selectedId} chunks={summary.semantic_chunks} />
)}
</motion.div>
</AnimatePresence>
</>
)}
{!loading && !meta && (
<div className="flex items-center justify-center py-12 text-secondary text-sm">
{files.length === 0 ? 'No files indexed.' : 'Select a file to inspect.'}
</div>
)}
</div>
)
}
function ChunkViewer({ fileId, chunks }) {
const [selectedChunk, setSelectedChunk] = useState(null)
const [chunkData, setChunkData] = useState(null)
const [loadingChunk, setLoadingChunk] = useState(false)
const fetchChunk = async (idx) => {
setSelectedChunk(idx)
setLoadingChunk(true)
setChunkData(null)
try {
const res = await fetch(`${API_BASE}/chunk/${fileId}/${idx}`)
const data = await res.json()
setChunkData(data)
} catch {
setChunkData({ error: 'Failed to fetch chunk' })
} finally {
setLoadingChunk(false)
}
}
return (
<div className="grid grid-cols-12 gap-4">
{/* Chunk list */}
<div className="col-span-12 md:col-span-4">
<div className="glass rounded-2xl p-4">
<div className="text-xs font-semibold mb-3">Chunks ({chunks.length})</div>
<div className="space-y-1 max-h-96 overflow-y-auto thin-scrollbar">
{chunks.map(chunk => (
<button
key={chunk.idx}
onClick={() => fetchChunk(chunk.idx)}
className={`w-full flex items-center gap-2 py-2 px-2 rounded-lg text-[10px] font-mono transition-all ${selectedChunk === chunk.idx
? 'glass-orange text-primary'
: 'hover:bg-white/5 text-secondary'
}`}
>
<span className="text-primary w-6">#{chunk.idx}</span>
<span className="w-16 text-left">{chunk.type}</span>
<span className="text-secondary/50">L{chunk.lines}</span>
</button>
))}
</div>
</div>
</div>
{/* Chunk content */}
<div className="col-span-12 md:col-span-8">
<div className="glass rounded-2xl p-5 min-h-64">
{loadingChunk && (
<div className="flex items-center justify-center py-8">
<motion.div
animate={{ opacity: [0.3, 0.8, 0.3] }}
transition={{ duration: 1.5, repeat: Infinity }}
className="text-xs text-secondary font-mono"
>
Fetching chunk...
</motion.div>
</div>
)}
{!loadingChunk && !selectedChunk && (
<div className="flex items-center justify-center py-8 text-secondary text-xs">
Select a chunk to view its content.
</div>
)}
{!loadingChunk && chunkData && (
<div>
<div className="flex items-center gap-2 mb-3">
<span className="text-xs font-semibold">Chunk #{selectedChunk}</span>
{chunkData.error && <span className="text-[10px] text-critical">{chunkData.error}</span>}
</div>
<pre className="text-[10px] font-mono text-secondary leading-relaxed overflow-x-auto thin-scrollbar max-h-96">
{chunkData.content || chunkData.chunk_content || chunkData.text || JSON.stringify(chunkData, null, 2)}
</pre>
</div>
)}
</div>
</div>
</div>
)
}
|