190 lines
No EOL
6.1 KiB
TypeScript
190 lines
No EOL
6.1 KiB
TypeScript
"use client"
|
|
|
|
import { useState } from "react"
|
|
import { Button } from "@/components/ui/button"
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
|
|
import { Input } from "@/components/ui/input"
|
|
import { Label } from "@/components/ui/label"
|
|
import { Upload, FolderOpen, Loader2 } from "lucide-react"
|
|
|
|
export default function AdminPage() {
|
|
const [fileUploadLoading, setFileUploadLoading] = useState(false)
|
|
const [pathUploadLoading, setPathUploadLoading] = useState(false)
|
|
const [selectedFile, setSelectedFile] = useState<File | null>(null)
|
|
const [folderPath, setFolderPath] = useState("/app/documents/")
|
|
const [uploadStatus, setUploadStatus] = useState<string>("")
|
|
|
|
const handleFileUpload = async (e: React.FormEvent) => {
|
|
e.preventDefault()
|
|
if (!selectedFile) return
|
|
|
|
setFileUploadLoading(true)
|
|
setUploadStatus("")
|
|
|
|
try {
|
|
const formData = new FormData()
|
|
formData.append("file", selectedFile)
|
|
|
|
const response = await fetch("/api/upload", {
|
|
method: "POST",
|
|
body: formData,
|
|
})
|
|
|
|
const result = await response.json()
|
|
|
|
if (response.ok) {
|
|
setUploadStatus(`File uploaded successfully! ID: ${result.id}`)
|
|
setSelectedFile(null)
|
|
// Reset the file input
|
|
const fileInput = document.getElementById("file-input") as HTMLInputElement
|
|
if (fileInput) fileInput.value = ""
|
|
} else {
|
|
setUploadStatus(`Error: ${result.error || "Upload failed"}`)
|
|
}
|
|
} catch (error) {
|
|
setUploadStatus(`Error: ${error instanceof Error ? error.message : "Upload failed"}`)
|
|
} finally {
|
|
setFileUploadLoading(false)
|
|
}
|
|
}
|
|
|
|
const handlePathUpload = async (e: React.FormEvent) => {
|
|
e.preventDefault()
|
|
if (!folderPath.trim()) return
|
|
|
|
setPathUploadLoading(true)
|
|
setUploadStatus("")
|
|
|
|
try {
|
|
const response = await fetch("/api/upload_path", {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify({ path: folderPath }),
|
|
})
|
|
|
|
const result = await response.json()
|
|
|
|
if (response.ok) {
|
|
const successful = result.results.filter((r: {status: string}) => r.status === "indexed").length
|
|
const total = result.results.length
|
|
setUploadStatus(`Path processed successfully! ${successful}/${total} files indexed.`)
|
|
setFolderPath("")
|
|
} else {
|
|
setUploadStatus(`Error: ${result.error || "Path upload failed"}`)
|
|
}
|
|
} catch (error) {
|
|
setUploadStatus(`Error: ${error instanceof Error ? error.message : "Path upload failed"}`)
|
|
} finally {
|
|
setPathUploadLoading(false)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className="space-y-8">
|
|
<div>
|
|
<h1 className="text-3xl font-bold">Ingest</h1>
|
|
<p className="text-muted-foreground">Upload and manage documents in your database</p>
|
|
</div>
|
|
|
|
{uploadStatus && (
|
|
<Card className={uploadStatus.includes("Error") ? "border-destructive" : "border-green-500"}>
|
|
<CardContent className="pt-6">
|
|
<p className={uploadStatus.includes("Error") ? "text-destructive" : "text-green-600"}>
|
|
{uploadStatus}
|
|
</p>
|
|
</CardContent>
|
|
</Card>
|
|
)}
|
|
|
|
<div className="grid gap-6 md:grid-cols-2">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle className="flex items-center gap-2">
|
|
<Upload className="h-5 w-5" />
|
|
Upload File
|
|
</CardTitle>
|
|
<CardDescription>
|
|
Upload a single document to be indexed and searchable
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<form onSubmit={handleFileUpload} className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="file-input">Select File</Label>
|
|
<Input
|
|
id="file-input"
|
|
type="file"
|
|
onChange={(e) => setSelectedFile(e.target.files?.[0] || null)}
|
|
accept=".pdf,.doc,.docx,.txt,.md"
|
|
className="cursor-pointer"
|
|
/>
|
|
</div>
|
|
<Button
|
|
type="submit"
|
|
disabled={!selectedFile || fileUploadLoading}
|
|
className="w-full"
|
|
>
|
|
{fileUploadLoading ? (
|
|
<>
|
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
|
Uploading...
|
|
</>
|
|
) : (
|
|
<>
|
|
<Upload className="mr-2 h-4 w-4" />
|
|
Upload File
|
|
</>
|
|
)}
|
|
</Button>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle className="flex items-center gap-2">
|
|
<FolderOpen className="h-5 w-5" />
|
|
Upload Folder
|
|
</CardTitle>
|
|
<CardDescription>
|
|
Process all documents in a folder path on the server
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<form onSubmit={handlePathUpload} className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="folder-path">Folder Path</Label>
|
|
<Input
|
|
id="folder-path"
|
|
type="text"
|
|
placeholder="/path/to/documents"
|
|
value={folderPath}
|
|
onChange={(e) => setFolderPath(e.target.value)}
|
|
/>
|
|
</div>
|
|
<Button
|
|
type="submit"
|
|
disabled={!folderPath.trim() || pathUploadLoading}
|
|
className="w-full"
|
|
>
|
|
{pathUploadLoading ? (
|
|
<>
|
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
|
Processing...
|
|
</>
|
|
) : (
|
|
<>
|
|
<FolderOpen className="mr-2 h-4 w-4" />
|
|
Process Folder
|
|
</>
|
|
)}
|
|
</Button>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
)
|
|
} |