* feat: demo DB seed/regenerate, backup/restore/sync refinements, SSH/SSL polish - Demo SQLite DB: feature-rich seed (12 objects, 500-row audit log) + regenerate action in Settings - Backup/restore: headless-testable core logic, psql -f for plain dumps, sync passes --clean --if-exists - SSH/SSL runtime refinements and connection testing improvements - Data grid: DataTypeIcon component, FK popover, table tree polish - Docs: AGENTS.md/README updates, new screenshots, MIT LICENSE * chore: optimize README screenshots (4.7 MB → 916 KB via pngquant, quality 70-90) * v0.6.0: release workflow, constraint-aware cell editing, pending-cell styling - Bump version to 0.6.0 across package.json, Cargo.toml, tauri.conf.json - Add .github/workflows/release.yml: tag-triggered CI builds macOS (aarch64 + x64), Windows, and Linux installers into a draft GitHub Release - README: installer download table (unsigned note, per-platform files), "how releases are made" section - CellEditor: constraint-aware commit — empty input on nullable columns becomes NULL, NOT NULL text-like types fall back to empty string, all other types blocked with an inline error bubble; replace "Set NULL" checkbox with a NULL row in the FK dropdown / empty enum option - VirtualDataGrid: pending-edit dot → animated pending outline (ring) on staged cells; matching test updates - docs-coverage test: align with rewritten README comparison table
326 lines
16 KiB
TypeScript
326 lines
16 KiB
TypeScript
import { useState, useEffect, useCallback, useRef } from "react";
|
|
import { FileSearch, Upload } from "lucide-react";
|
|
import { open } from "@tauri-apps/plugin-dialog";
|
|
import { Button } from "../ui/Button";
|
|
import { BackupProgress } from "./BackupProgress";
|
|
import { useBackupStore } from "../../stores/backupStore";
|
|
import { useNotificationStore } from "../../stores/notificationStore";
|
|
import { detectPgTools, pgRestore, getSchemas } from "../../lib/commands";
|
|
import type { PgToolStatus } from "../../lib/types";
|
|
|
|
interface RestorePageProps {
|
|
connectionId: string;
|
|
}
|
|
|
|
const PLATFORM_INSTALL_INSTRUCTIONS: Record<string, string> = {
|
|
darwin: "brew install libpq",
|
|
linux: "sudo apt install postgresql-client # Debian/Ubuntu\nsudo dnf install postgresql # Fedora\nsudo pacman -S postgresql # Arch",
|
|
win32: "Download PostgreSQL installer from https://www.postgresql.org/download/windows/ and ensure pg_restore is in your PATH.",
|
|
};
|
|
|
|
function getPlatformInstructions(): string {
|
|
const platform =
|
|
typeof navigator !== "undefined"
|
|
? navigator.platform.toLowerCase()
|
|
: "";
|
|
if (platform.includes("mac") || platform.includes("darwin"))
|
|
return PLATFORM_INSTALL_INSTRUCTIONS.darwin;
|
|
if (platform.includes("linux")) return PLATFORM_INSTALL_INSTRUCTIONS.linux;
|
|
if (platform.includes("win")) return PLATFORM_INSTALL_INSTRUCTIONS.win32;
|
|
return PLATFORM_INSTALL_INSTRUCTIONS.linux;
|
|
}
|
|
|
|
export function RestorePage({ connectionId }: RestorePageProps) {
|
|
const [filePath, setFilePath] = useState("");
|
|
const [format, setFormat] = useState("custom");
|
|
const [clean, setClean] = useState(true);
|
|
const [schema, setSchema] = useState("");
|
|
const [confirmed, setConfirmed] = useState(false);
|
|
const [toolStatus, setToolStatus] = useState<PgToolStatus | null>(null);
|
|
const [checkingTools, setCheckingTools] = useState(true);
|
|
const [availableSchemas, setAvailableSchemas] = useState<string[]>([]);
|
|
|
|
const activeJobId = useBackupStore((s) => s.activeJobId);
|
|
const jobs = useBackupStore((s) => s.jobs);
|
|
const startJob = useBackupStore((s) => s.startJob);
|
|
const notify = useNotificationStore((s) => s.notify);
|
|
|
|
const activeJob = jobs.find((j) => j.id === activeJobId);
|
|
const isRunning = activeJob?.status === "running";
|
|
const pendingJobRef = useRef<string | null>(null);
|
|
|
|
useEffect(() => {
|
|
if (!pendingJobRef.current || !activeJob) return;
|
|
if (activeJob.id !== pendingJobRef.current) return;
|
|
|
|
if (activeJob.status === "completed") {
|
|
notify("Restore completed successfully", "success");
|
|
pendingJobRef.current = null;
|
|
} else if (activeJob.status === "failed") {
|
|
notify(
|
|
`Restore failed: ${activeJob.error_message || "Unknown error"}`,
|
|
"error",
|
|
);
|
|
pendingJobRef.current = null;
|
|
}
|
|
}, [activeJob, notify]);
|
|
|
|
useEffect(() => {
|
|
setCheckingTools(true);
|
|
setConfirmed(false);
|
|
detectPgTools()
|
|
.then((status) => setToolStatus(status))
|
|
.catch(() =>
|
|
setToolStatus({
|
|
pg_dump_found: false,
|
|
pg_restore_found: false,
|
|
pg_dump_version: null,
|
|
pg_restore_version: null,
|
|
}),
|
|
)
|
|
.finally(() => setCheckingTools(false));
|
|
|
|
getSchemas(connectionId)
|
|
.then((schemas) => setAvailableSchemas(schemas))
|
|
.catch(() => setAvailableSchemas([]));
|
|
}, [connectionId]);
|
|
|
|
const handlePickFile = useCallback(async () => {
|
|
const picked = await open({
|
|
multiple: false,
|
|
filters: [
|
|
{
|
|
name: "Backup Files",
|
|
extensions: ["dump", "sql", "tar", "custom", "gz"],
|
|
},
|
|
],
|
|
});
|
|
if (picked && typeof picked === "string") setFilePath(picked);
|
|
}, []);
|
|
|
|
const handleStartRestore = useCallback(async () => {
|
|
if (!filePath) {
|
|
notify("Please select a file path", "error");
|
|
return;
|
|
}
|
|
const jobId = `restore-${Date.now()}`;
|
|
startJob(jobId, "restore");
|
|
pendingJobRef.current = jobId;
|
|
|
|
try {
|
|
await pgRestore(connectionId, {
|
|
format,
|
|
filePath,
|
|
clean,
|
|
schema: schema || undefined,
|
|
});
|
|
} catch (e) {
|
|
const msg = e instanceof Error ? e.message : String(e);
|
|
useBackupStore.getState().failJob(jobId, msg);
|
|
}
|
|
}, [filePath, format, clean, schema, connectionId, startJob, notify]);
|
|
|
|
const toolsMissing = toolStatus && !toolStatus.pg_restore_found;
|
|
const canStart = filePath && confirmed && !isRunning;
|
|
|
|
return (
|
|
<div className="flex flex-col h-full">
|
|
{/* Toolbar header */}
|
|
<div className="flex items-center gap-2 border-b border-border px-3 py-1.5">
|
|
<Upload size={14} className="text-accent" />
|
|
<span className="text-xs font-medium text-text">Restore</span>
|
|
<span className="text-[11px] text-text-muted">
|
|
Restore a database from a backup file
|
|
</span>
|
|
</div>
|
|
|
|
{/* Content */}
|
|
<div className="flex-1 overflow-y-auto">
|
|
<div className="max-w-lg mx-auto space-y-6 outline outline-border">
|
|
{/* Tool check */}
|
|
{checkingTools && (
|
|
<div className="glass p-4 text-center">
|
|
<p className="text-sm text-text-muted">
|
|
Checking for pg_restore...
|
|
</p>
|
|
</div>
|
|
)}
|
|
|
|
{toolsMissing && (
|
|
<div className="bg-amber-500/10 border border-amber-500/30 rounded-lg px-4 py-4 space-y-2">
|
|
<p className="text-amber-300 text-sm font-semibold">
|
|
pg_restore not found
|
|
</p>
|
|
<p className="text-amber-200/80 text-xs leading-relaxed">
|
|
The PostgreSQL client tools are required for
|
|
backup/restore operations. Install them using:
|
|
</p>
|
|
<pre className="text-xs text-amber-100 bg-amber-500/10 rounded-lg p-3 whitespace-pre-wrap font-mono leading-relaxed">
|
|
{getPlatformInstructions()}
|
|
</pre>
|
|
</div>
|
|
)}
|
|
|
|
{!checkingTools && !toolsMissing && (
|
|
<>
|
|
{/* Configuration card */}
|
|
<div className="p-5 space-y-5">
|
|
{/* Format */}
|
|
<div className="space-y-1">
|
|
<label className="text-[11px] uppercase tracking-wider text-text-muted font-medium">
|
|
Format
|
|
</label>
|
|
<select
|
|
value={format}
|
|
onChange={(e) =>
|
|
setFormat(e.target.value)
|
|
}
|
|
className="w-full rounded-lg bg-surface border border-border px-3 py-2 text-sm text-text focus:outline-none focus:border-accent focus:ring-1 focus:ring-accent/50 transition-colors cursor-pointer"
|
|
>
|
|
<option value="custom">
|
|
Custom Archive
|
|
</option>
|
|
<option value="plain">Plain SQL</option>
|
|
<option value="tar">Tarball</option>
|
|
<option value="directory">
|
|
Directory
|
|
</option>
|
|
</select>
|
|
</div>
|
|
|
|
{/* Backup file */}
|
|
<div className="space-y-1 w-full">
|
|
<label className="text-[11px] uppercase tracking-wider text-text-muted font-medium">
|
|
Backup File
|
|
</label>
|
|
<div className="flex gap-2">
|
|
<input
|
|
type="text"
|
|
value={filePath}
|
|
onChange={(e) =>
|
|
setFilePath(e.target.value)
|
|
}
|
|
placeholder="/path/to/backup.dump"
|
|
className="flex-1 px-4 py-2 text-sm text-text placeholder-text-muted/50 border-b border-border focus:border-accent focus:outline-none transition-colors"
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={handlePickFile}
|
|
className="flex items-center justify-center w-9 h-9 rounded-lg border border-border bg-surface text-text-muted hover:text-text hover:bg-surface-raised hover:border-border-hover transition-colors cursor-pointer shrink-0"
|
|
aria-label="Browse for file"
|
|
>
|
|
<FileSearch size={15} />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Schema (optional) */}
|
|
<div className="space-y-1">
|
|
<label className="text-[11px] uppercase tracking-wider text-text-muted font-medium">
|
|
Schema{" "}
|
|
<span className="font-normal normal-case tracking-normal">
|
|
(optional)
|
|
</span>
|
|
</label>
|
|
<select
|
|
value={schema}
|
|
onChange={(e) =>
|
|
setSchema(e.target.value)
|
|
}
|
|
className="w-full rounded-lg bg-surface border border-border px-3 py-2 text-sm text-text focus:outline-none focus:border-accent focus:ring-1 focus:ring-accent/50 transition-colors cursor-pointer"
|
|
>
|
|
<option value="">All schemas</option>
|
|
{availableSchemas.map((s) => (
|
|
<option key={s} value={s}>
|
|
{s}
|
|
</option>
|
|
))}
|
|
</select>
|
|
</div>
|
|
|
|
{/* Clean toggle */}
|
|
<label
|
|
className={`flex items-center gap-2.5 cursor-pointer group ${
|
|
format === "plain"
|
|
? "opacity-40 pointer-events-none"
|
|
: ""
|
|
}`}
|
|
>
|
|
<input
|
|
type="checkbox"
|
|
checked={clean}
|
|
onChange={(e) =>
|
|
setClean(e.target.checked)
|
|
}
|
|
disabled={format === "plain"}
|
|
className="rounded bg-surface border-border accent-accent w-4 h-4 cursor-pointer disabled:cursor-not-allowed"
|
|
/>
|
|
<span className="text-sm text-text-muted group-hover:text-text transition-colors">
|
|
Clean{" "}
|
|
<code className="text-[11px] text-text-muted/60 bg-surface-raised rounded px-1.5 py-0.5">
|
|
DROP before CREATE
|
|
</code>
|
|
</span>
|
|
</label>
|
|
{format === "plain" && (
|
|
<p className="text-[11px] text-text-muted/70 -mt-3">
|
|
Plain SQL restores run via psql and don't
|
|
support DROP-before-CREATE. Use Custom
|
|
Archive for clean restores.
|
|
</p>
|
|
)}
|
|
</div>
|
|
|
|
{/* Destructive confirmation */}
|
|
<div className="bg-red-500/5 border border-red-500/20 px-4 py-3">
|
|
<label className="flex items-start gap-3 cursor-pointer">
|
|
<input
|
|
type="checkbox"
|
|
checked={confirmed}
|
|
onChange={(e) =>
|
|
setConfirmed(e.target.checked)
|
|
}
|
|
className="mt-0.5 rounded bg-surface border-border accent-red-500 w-4 h-4 cursor-pointer"
|
|
data-testid="restore-confirm-checkbox"
|
|
/>
|
|
<span className="text-sm text-red-300/90 leading-relaxed">
|
|
I understand this will overwrite data on
|
|
the target database. This action cannot
|
|
be undone.
|
|
</span>
|
|
</label>
|
|
</div>
|
|
|
|
{/* Progress */}
|
|
{activeJob && (
|
|
<div className="px-4">
|
|
<BackupProgress
|
|
progress={activeJob.status === "completed" ? 100 : 50}
|
|
jobType="restore"
|
|
status={activeJob.status}
|
|
errorMessage={activeJob.error_message ?? undefined}
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
{/* Actions */}
|
|
<div className="flex justify-end pb-2 pr-2">
|
|
<Button
|
|
onClick={handleStartRestore}
|
|
disabled={!canStart}
|
|
>
|
|
<Upload size={14} className="mr-1.5" />
|
|
{isRunning
|
|
? "Restoring..."
|
|
: "Start Restore"}
|
|
</Button>
|
|
</div>
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|