mirror of
https://github.com/nicotsx/ironmount.git
synced 2025-12-10 12:10:51 +01:00
* feat: add custom restore target directory Adds the ability to restore snapshots to a custom directory instead of only the original path. Closes #12. Changes: - Add target parameter to restore API endpoint - Add directory picker UI in file browser restore dialog - Add target input field in snapshot restore form - Create reusable PathSelector component Note: Run `bun run gen:api-client` after merging to regenerate types. * refactor: path selector design * refactor: unify restore snapshot dialogs * refactor: restore snapshot as a page * chore: fix liniting issues * chore(create-notification): remove un-used prop --------- Co-authored-by: Deepseek1 <Deepseek1@users.noreply.github.com>
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
import { redirect } from "react-router";
|
|
import { getSnapshotDetails } from "~/client/api-client";
|
|
import { RestoreForm } from "~/client/components/restore-form";
|
|
import type { Route } from "./+types/restore-snapshot";
|
|
|
|
export const handle = {
|
|
breadcrumb: (match: Route.MetaArgs) => [
|
|
{ label: "Repositories", href: "/repositories" },
|
|
{ label: match.params.name, href: `/repositories/${match.params.name}` },
|
|
{ label: match.params.snapshotId, href: `/repositories/${match.params.name}/${match.params.snapshotId}` },
|
|
{ label: "Restore" },
|
|
],
|
|
};
|
|
|
|
export function meta({ params }: Route.MetaArgs) {
|
|
return [
|
|
{ title: `Zerobyte - Restore Snapshot ${params.snapshotId}` },
|
|
{
|
|
name: "description",
|
|
content: "Restore files from a backup snapshot.",
|
|
},
|
|
];
|
|
}
|
|
|
|
export const clientLoader = async ({ params }: Route.ClientLoaderArgs) => {
|
|
const snapshot = await getSnapshotDetails({
|
|
path: { name: params.name, snapshotId: params.snapshotId },
|
|
});
|
|
if (snapshot.data) return { snapshot: snapshot.data, name: params.name, snapshotId: params.snapshotId };
|
|
|
|
return redirect("/repositories");
|
|
};
|
|
|
|
export default function RestoreSnapshotPage({ loaderData }: Route.ComponentProps) {
|
|
const { snapshot, name, snapshotId } = loaderData;
|
|
|
|
return (
|
|
<RestoreForm
|
|
snapshot={snapshot}
|
|
repositoryName={name}
|
|
snapshotId={snapshotId}
|
|
returnPath={`/repositories/${name}/${snapshotId}`}
|
|
/>
|
|
);
|
|
}
|