mirror of
https://github.com/nicotsx/ironmount.git
synced 2025-12-10 12:10:51 +01:00
* feat: notifications backend & creation * feat: assign notification to backup schedule * refactor: status dot one component * chore(notification-details): remove refetchInterval
209 lines
6.3 KiB
TypeScript
209 lines
6.3 KiB
TypeScript
import { useMutation, useQuery } from "@tanstack/react-query";
|
|
import { redirect, useNavigate } from "react-router";
|
|
import { toast } from "sonner";
|
|
import { useState, useId } from "react";
|
|
import {
|
|
deleteNotificationDestinationMutation,
|
|
getNotificationDestinationOptions,
|
|
testNotificationDestinationMutation,
|
|
updateNotificationDestinationMutation,
|
|
} from "~/client/api-client/@tanstack/react-query.gen";
|
|
import { Button } from "~/client/components/ui/button";
|
|
import {
|
|
AlertDialog,
|
|
AlertDialogAction,
|
|
AlertDialogCancel,
|
|
AlertDialogContent,
|
|
AlertDialogDescription,
|
|
AlertDialogFooter,
|
|
AlertDialogHeader,
|
|
AlertDialogTitle,
|
|
} from "~/client/components/ui/alert-dialog";
|
|
import { parseError } from "~/client/lib/errors";
|
|
import { getNotificationDestination } from "~/client/api-client/sdk.gen";
|
|
import type { Route } from "./+types/notification-details";
|
|
import { cn } from "~/client/lib/utils";
|
|
import { Card, CardContent, CardHeader, CardTitle } from "~/client/components/ui/card";
|
|
import { Bell, TestTube2 } from "lucide-react";
|
|
import { Alert, AlertDescription } from "~/client/components/ui/alert";
|
|
import { CreateNotificationForm, type NotificationFormValues } from "../components/create-notification-form";
|
|
|
|
export const handle = {
|
|
breadcrumb: (match: Route.MetaArgs) => [
|
|
{ label: "Notifications", href: "/notifications" },
|
|
{ label: match.params.id },
|
|
],
|
|
};
|
|
|
|
export function meta({ params }: Route.MetaArgs) {
|
|
return [
|
|
{ title: `Zerobyte - Notification ${params.id}` },
|
|
{
|
|
name: "description",
|
|
content: "View and edit notification destination settings.",
|
|
},
|
|
];
|
|
}
|
|
|
|
export const clientLoader = async ({ params }: Route.ClientLoaderArgs) => {
|
|
const destination = await getNotificationDestination({ path: { id: params.id ?? "" } });
|
|
if (destination.data) return destination.data;
|
|
|
|
return redirect("/notifications");
|
|
};
|
|
|
|
export default function NotificationDetailsPage({ loaderData }: Route.ComponentProps) {
|
|
const navigate = useNavigate();
|
|
const formId = useId();
|
|
const [showDeleteConfirm, setShowDeleteConfirm] = useState(false);
|
|
|
|
const { data } = useQuery({
|
|
...getNotificationDestinationOptions({ path: { id: String(loaderData.id) } }),
|
|
initialData: loaderData,
|
|
});
|
|
|
|
const deleteDestination = useMutation({
|
|
...deleteNotificationDestinationMutation(),
|
|
onSuccess: () => {
|
|
toast.success("Notification destination deleted successfully");
|
|
navigate("/notifications");
|
|
},
|
|
onError: (error) => {
|
|
toast.error("Failed to delete notification destination", {
|
|
description: parseError(error)?.message,
|
|
});
|
|
},
|
|
});
|
|
|
|
const updateDestination = useMutation({
|
|
...updateNotificationDestinationMutation(),
|
|
onSuccess: () => {
|
|
toast.success("Notification destination updated successfully");
|
|
},
|
|
onError: (error) => {
|
|
toast.error("Failed to update notification destination", {
|
|
description: parseError(error)?.message,
|
|
});
|
|
},
|
|
});
|
|
|
|
const testDestination = useMutation({
|
|
...testNotificationDestinationMutation(),
|
|
onSuccess: () => {
|
|
toast.success("Test notification sent successfully");
|
|
},
|
|
onError: (error) => {
|
|
toast.error("Failed to send test notification", {
|
|
description: parseError(error)?.message,
|
|
});
|
|
},
|
|
});
|
|
|
|
const handleConfirmDelete = () => {
|
|
setShowDeleteConfirm(false);
|
|
deleteDestination.mutate({ path: { id: String(data.id) } });
|
|
};
|
|
|
|
const handleSubmit = (values: NotificationFormValues) => {
|
|
updateDestination.mutate({
|
|
path: { id: String(data.id) },
|
|
body: {
|
|
name: values.name,
|
|
config: values,
|
|
},
|
|
});
|
|
};
|
|
|
|
const handleTest = () => {
|
|
testDestination.mutate({ path: { id: String(data.id) } });
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="flex items-center justify-between mb-4">
|
|
<div className="text-sm font-semibold text-muted-foreground flex items-center gap-2">
|
|
<span
|
|
className={cn("inline-flex items-center gap-2 px-2 py-1 rounded-md text-xs bg-gray-500/10 text-gray-500", {
|
|
"bg-green-500/10 text-green-500": data.enabled,
|
|
"bg-red-500/10 text-red-500": !data.enabled,
|
|
})}
|
|
>
|
|
{data.enabled ? "Enabled" : "Disabled"}
|
|
</span>
|
|
<span className="text-xs bg-primary/10 rounded-md px-2 py-1 capitalize">{data.type}</span>
|
|
</div>
|
|
<div className="flex gap-2">
|
|
<Button
|
|
onClick={handleTest}
|
|
disabled={testDestination.isPending || !data.enabled}
|
|
variant="outline"
|
|
loading={testDestination.isPending}
|
|
>
|
|
<TestTube2 className="h-4 w-4 mr-2" />
|
|
Test
|
|
</Button>
|
|
<Button
|
|
onClick={() => setShowDeleteConfirm(true)}
|
|
variant="destructive"
|
|
loading={deleteDestination.isPending}
|
|
>
|
|
Delete
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
<Card>
|
|
<CardHeader>
|
|
<div className="flex items-center gap-3">
|
|
<div className="flex items-center justify-center w-10 h-10 rounded-lg bg-primary/10">
|
|
<Bell className="w-5 h-5 text-primary" />
|
|
</div>
|
|
<CardTitle>{data.name}</CardTitle>
|
|
</div>
|
|
</CardHeader>
|
|
<CardContent className="space-y-6">
|
|
{updateDestination.isError && (
|
|
<Alert variant="destructive">
|
|
<AlertDescription>
|
|
<strong>Failed to update notification destination:</strong>
|
|
<br />
|
|
{parseError(updateDestination.error)?.message}
|
|
</AlertDescription>
|
|
</Alert>
|
|
)}
|
|
<>
|
|
<CreateNotificationForm
|
|
mode="update"
|
|
formId={formId}
|
|
onSubmit={handleSubmit}
|
|
initialValues={data.config}
|
|
loading={updateDestination.isPending}
|
|
/>
|
|
<div className="flex justify-end gap-2 pt-4 border-t">
|
|
<Button type="submit" form={formId} loading={updateDestination.isPending}>
|
|
Save Changes
|
|
</Button>
|
|
</div>
|
|
</>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<AlertDialog open={showDeleteConfirm} onOpenChange={setShowDeleteConfirm}>
|
|
<AlertDialogContent>
|
|
<AlertDialogHeader>
|
|
<AlertDialogTitle>Delete Notification Destination</AlertDialogTitle>
|
|
<AlertDialogDescription>
|
|
Are you sure you want to delete the notification destination "{data.name}"? This action cannot be undone
|
|
and will remove this destination from all backup schedules.
|
|
</AlertDialogDescription>
|
|
</AlertDialogHeader>
|
|
<AlertDialogFooter>
|
|
<AlertDialogCancel>Cancel</AlertDialogCancel>
|
|
<AlertDialogAction onClick={handleConfirmDelete}>Delete</AlertDialogAction>
|
|
</AlertDialogFooter>
|
|
</AlertDialogContent>
|
|
</AlertDialog>
|
|
</>
|
|
);
|
|
}
|