Spaces:
Runtime error
Runtime error
File size: 5,380 Bytes
cd8bd0a | 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 | "use client";
import type { Dispatch, SetStateAction } from "react";
import { Badge, Button } from "@/shared/components";
export type BackupCleanupOptions = {
keepLatest: number;
retentionDays: number;
};
export type BackupRetentionStatus = {
type: string;
message: string;
};
export type StorageBackupHealth = {
backupCount?: number;
backupRetention: {
maxFiles: number;
days: number;
};
};
type DatabaseBackupRetentionCardProps = {
title: string;
className?: string;
storageHealth: StorageBackupHealth;
backupCleanupOptions: BackupCleanupOptions;
setBackupCleanupOptions: Dispatch<SetStateAction<BackupCleanupOptions>>;
saveBackupRetentionLoading: boolean;
backupRetentionStatus: BackupRetentionStatus;
setBackupRetentionStatus: Dispatch<SetStateAction<BackupRetentionStatus>>;
cleanupBackupsLoading: boolean;
cleanupBackupsStatus: BackupRetentionStatus;
onSaveRetention: () => void;
onCleanupBackups: () => void;
};
function StatusAlert({ status }: { status: BackupRetentionStatus }) {
if (!status.message) return null;
const isSuccess = status.type === "success";
return (
<div
className={`mt-3 p-3 rounded-lg text-sm ${
isSuccess
? "bg-green-500/10 text-green-500 border border-green-500/20"
: "bg-red-500/10 text-red-500 border border-red-500/20"
}`}
role="alert"
>
<div className="flex items-center gap-2">
<span className="material-symbols-outlined text-[16px]" aria-hidden="true">
{isSuccess ? "check_circle" : "error"}
</span>
{status.message}
</div>
</div>
);
}
export default function DatabaseBackupRetentionCard({
title,
className = "mb-4",
storageHealth,
backupCleanupOptions,
setBackupCleanupOptions,
saveBackupRetentionLoading,
backupRetentionStatus,
setBackupRetentionStatus,
cleanupBackupsLoading,
cleanupBackupsStatus,
onSaveRetention,
onCleanupBackups,
}: DatabaseBackupRetentionCardProps) {
return (
<div className={`p-3 rounded-lg bg-bg border border-border ${className}`}>
<div className="flex items-start justify-between gap-3 flex-wrap mb-3">
<div>
<p className="text-sm font-medium text-text-main">{title}</p>
<p className="text-xs text-text-muted">
Automatic SQLite backups are stored in <code>db_backups</code>. Configure how many
snapshots to keep and optionally delete backups older than N days.
</p>
</div>
<div className="flex items-center gap-2">
<Badge variant="default" size="sm">
{storageHealth.backupCount || 0} backups
</Badge>
<Badge variant="default" size="sm">
Max {storageHealth.backupRetention.maxFiles}
</Badge>
<Badge variant="default" size="sm">
{storageHealth.backupRetention.days > 0
? `${storageHealth.backupRetention.days}d retention`
: "Age retention off"}
</Badge>
</div>
</div>
<div className="flex flex-wrap items-end gap-3">
<label className="flex flex-col gap-1 text-xs text-text-muted">
Keep latest backups
<input
type="number"
min={1}
max={200}
value={backupCleanupOptions.keepLatest}
onChange={(e) => {
const parsed = Number.parseInt(e.target.value || "1", 10);
setBackupRetentionStatus({ type: "", message: "" });
setBackupCleanupOptions((prev) => ({
...prev,
keepLatest: Number.isFinite(parsed) ? Math.max(1, parsed) : 1,
}));
}}
className="h-9 w-32 rounded-lg border border-border bg-background px-3 text-sm text-text-main"
/>
</label>
<label className="flex flex-col gap-1 text-xs text-text-muted">
Delete older than days
<input
type="number"
min={0}
max={3650}
value={backupCleanupOptions.retentionDays}
onChange={(e) => {
const parsed = Number.parseInt(e.target.value || "0", 10);
setBackupRetentionStatus({ type: "", message: "" });
setBackupCleanupOptions((prev) => ({
...prev,
retentionDays: Number.isFinite(parsed) ? Math.max(0, parsed) : 0,
}));
}}
className="h-9 w-32 rounded-lg border border-border bg-background px-3 text-sm text-text-main"
/>
</label>
<Button
variant="outline"
size="sm"
onClick={onSaveRetention}
loading={saveBackupRetentionLoading}
>
<span className="material-symbols-outlined text-[14px] mr-1" aria-hidden="true">
save
</span>
Save retention
</Button>
<Button
variant="outline"
size="sm"
onClick={onCleanupBackups}
loading={cleanupBackupsLoading}
>
<span className="material-symbols-outlined text-[14px] mr-1" aria-hidden="true">
auto_delete
</span>
Clean old backups
</Button>
</div>
<StatusAlert status={backupRetentionStatus} />
<StatusAlert status={cleanupBackupsStatus} />
</div>
);
}
|