34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
import { createFileRoute } from "@tanstack/react-router";
|
|
import { getNotificationDestinationOptions } from "~/client/api-client/@tanstack/react-query.gen";
|
|
import { NotificationDetailsPage } from "~/client/modules/notifications/routes/notification-details";
|
|
|
|
export const Route = createFileRoute("/(dashboard)/notifications/$notificationId")({
|
|
component: RouteComponent,
|
|
errorComponent: () => <div>Failed to load notification</div>,
|
|
loader: async ({ params, context }) => {
|
|
const res = await context.queryClient.ensureQueryData({
|
|
...getNotificationDestinationOptions({ path: { id: params.notificationId } }),
|
|
});
|
|
|
|
return res;
|
|
},
|
|
staticData: {
|
|
breadcrumb: (match) => [
|
|
{ label: "Notifications", href: "/notifications" },
|
|
{ label: match.loaderData?.name || "Notification Details" },
|
|
],
|
|
},
|
|
head: ({ loaderData }) => ({
|
|
meta: [
|
|
{ title: `Zerobyte - ${loaderData?.name}` },
|
|
{
|
|
name: "description",
|
|
content: "View and edit notification destination settings.",
|
|
},
|
|
],
|
|
}),
|
|
});
|
|
|
|
function RouteComponent() {
|
|
return <NotificationDetailsPage notificationId={Route.useParams().notificationId} />;
|
|
}
|