Some checks failed
Release Workflow / determine-release-type (push) Has been cancelled
Release Workflow / checks (push) Has been cancelled
Release Workflow / e2e-tests (push) Has been cancelled
Release Workflow / build-images (push) Has been cancelled
Release Workflow / publish-release (push) Has been cancelled
76 lines
2.8 KiB
TypeScript
76 lines
2.8 KiB
TypeScript
import { useId } from "react";
|
|
import { useMutation, useSuspenseQuery } from "@tanstack/react-query";
|
|
import { Save, X } from "lucide-react";
|
|
import { toast } from "sonner";
|
|
import { getBackupScheduleOptions, updateBackupScheduleMutation } from "~/client/api-client/@tanstack/react-query.gen";
|
|
import { Button } from "~/client/components/ui/button";
|
|
import { parseError } from "~/client/lib/errors";
|
|
import { useNavigate } from "@tanstack/react-router";
|
|
import { getCronExpression } from "~/utils/utils";
|
|
import { CreateScheduleForm, type BackupScheduleFormValues } from "../components/create-schedule-form";
|
|
|
|
export function EditBackupPage({ backupId }: { backupId: string }) {
|
|
const navigate = useNavigate();
|
|
const formId = useId();
|
|
|
|
const { data: schedule } = useSuspenseQuery({
|
|
...getBackupScheduleOptions({ path: { shortId: backupId } }),
|
|
});
|
|
|
|
const updateSchedule = useMutation({
|
|
...updateBackupScheduleMutation(),
|
|
onSuccess: () => {
|
|
toast.success("Backup schedule saved successfully");
|
|
void navigate({ to: `/backups/${schedule.shortId}` });
|
|
},
|
|
onError: (error) => {
|
|
toast.error("Failed to save backup schedule", {
|
|
description: parseError(error)?.message,
|
|
});
|
|
},
|
|
});
|
|
|
|
const handleSubmit = (formValues: BackupScheduleFormValues) => {
|
|
const cronExpression = getCronExpression(
|
|
formValues.frequency,
|
|
formValues.dailyTime,
|
|
formValues.weeklyDay,
|
|
formValues.monthlyDays,
|
|
formValues.cronExpression,
|
|
);
|
|
|
|
const retentionPolicy: Record<string, number> = {};
|
|
if (formValues.keepLast) retentionPolicy.keepLast = formValues.keepLast;
|
|
if (formValues.keepHourly) retentionPolicy.keepHourly = formValues.keepHourly;
|
|
if (formValues.keepDaily) retentionPolicy.keepDaily = formValues.keepDaily;
|
|
if (formValues.keepWeekly) retentionPolicy.keepWeekly = formValues.keepWeekly;
|
|
if (formValues.keepMonthly) retentionPolicy.keepMonthly = formValues.keepMonthly;
|
|
if (formValues.keepYearly) retentionPolicy.keepYearly = formValues.keepYearly;
|
|
|
|
updateSchedule.mutate({
|
|
path: { shortId: schedule.shortId },
|
|
body: {
|
|
...formValues,
|
|
enabled: formValues.frequency === "manual" ? false : schedule.enabled,
|
|
cronExpression,
|
|
retentionPolicy: Object.keys(retentionPolicy).length > 0 ? retentionPolicy : undefined,
|
|
},
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<CreateScheduleForm volume={schedule.volume} initialValues={schedule} onSubmit={handleSubmit} formId={formId} />
|
|
<div className="flex justify-end mt-4 gap-2">
|
|
<Button type="submit" className="ml-auto" variant="primary" form={formId} loading={updateSchedule.isPending}>
|
|
<Save className="h-4 w-4 mr-2" />
|
|
Update schedule
|
|
</Button>
|
|
<Button variant="outline" onClick={() => navigate({ to: `/backups/${schedule.shortId}` })}>
|
|
<X className="h-4 w-4 mr-2" />
|
|
Cancel
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|