import React, { useEffect, useState } from 'react' function statusLabel(job) { if (!job) return null const type = job.type === 'prepare' ? 'prepare' : job.type const progress = typeof job.progress === 'number' ? `${job.progress.toFixed(0)}%` : null const detail = job.detail ? ` ${job.detail}` : '' return `${type} · ${job.status}${progress ? ` · ${progress}` : ''}${detail}` } function fileSyncMeta(file) { const sync = file?.sync || {} const status = String(sync.status || 'pending') const progress = Math.max(0, Math.min(100, Number(sync.progress) || 0)) const detail = String(sync.detail || '').trim() const error = String(sync.error || '').trim() if (status === 'ready') { return { status, progress: 100, label: 'Available', detail: detail || 'Ready in chat.' } } if (status === 'failed') { return { status, progress: 100, label: 'Sync failed', detail: error || detail || 'Heimgeist could not finish syncing this file.' } } if (status === 'syncing') { return { status, progress, label: progress > 0 ? `Syncing ${Math.round(progress)}%` : 'Syncing', detail: detail || 'Building corpus, enrichment, embeddings, and indexes.' } } return { status: 'pending', progress: 6, label: 'Queued', detail: 'Waiting to start the full sync pipeline.' } } export default function LibraryManager({ apiBase, library, jobs, onRefresh, onDeleted }) { const [busy, setBusy] = useState(false) const [confirmDelete, setConfirmDelete] = useState(false) const [errorMessage, setErrorMessage] = useState('') useEffect(() => { setConfirmDelete(false) setErrorMessage('') }, [library?.slug, library?.name]) async function expectOk(response) { if (response.ok) return response const detail = await response.text() throw new Error(detail || `HTTP ${response.status}`) } async function runAction(fn) { setBusy(true) try { setErrorMessage('') await fn() setConfirmDelete(false) } finally { setBusy(false) await onRefresh() } } async function addPaths() { if (!library) return const paths = await window.electronAPI?.pickPaths?.() if (!Array.isArray(paths) || paths.length === 0) return try { await runAction(async () => { const response = await fetch(`${apiBase}/libraries/${library.slug}/files/register`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ paths }) }) await expectOk(response) }) } catch (error) { setErrorMessage(String(error?.message || error)) } } async function removeFile(rel) { if (!library) return try { await runAction(async () => { const response = await fetch(`${apiBase}/libraries/${library.slug}/files`, { method: 'DELETE', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ rel }) }) await expectOk(response) }) } catch (error) { setErrorMessage(String(error?.message || error)) } } async function deleteLibrary() { if (!library) return await runAction(async () => { const response = await fetch(`${apiBase}/libraries/${library.slug}`, { method: 'DELETE' }) await expectOk(response) }) onDeleted?.(library.slug) } if (!library) { return (
Create a database and add files. Heimgeist will keep its retrieval pipeline updated automatically.
No files registered yet.
)}