mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-28 16:57:14 +00:00
84 lines
2.7 KiB
TypeScript
84 lines
2.7 KiB
TypeScript
"use client";
|
|
|
|
import AlertRuleGraphEditor from "@app/components/alert-rule-editor/AlertRuleGraphEditor";
|
|
import { apiResponseToFormValues } from "@app/lib/alertRuleForm";
|
|
import { createApiClient, formatAxiosError } from "@app/lib/api";
|
|
import { useEnvContext } from "@app/hooks/useEnvContext";
|
|
import { usePaidStatus } from "@app/hooks/usePaidStatus";
|
|
import { toast } from "@app/hooks/useToast";
|
|
import { tierMatrix } from "@server/lib/billing/tierMatrix";
|
|
import { useParams, useRouter } from "next/navigation";
|
|
import { useTranslations } from "next-intl";
|
|
import { useEffect, useState } from "react";
|
|
import type { AxiosResponse } from "axios";
|
|
import type { GetAlertRuleResponse } from "@server/private/routers/alertRule";
|
|
import type { AlertRuleFormValues } from "@app/lib/alertRuleForm";
|
|
|
|
export default function EditAlertRulePage() {
|
|
const t = useTranslations();
|
|
const params = useParams();
|
|
const router = useRouter();
|
|
const orgId = params.orgId as string;
|
|
const ruleIdParam = params.ruleId as string;
|
|
const alertRuleId = parseInt(ruleIdParam, 10);
|
|
|
|
const api = createApiClient(useEnvContext());
|
|
const { isPaidUser } = usePaidStatus();
|
|
const isPaid = isPaidUser(tierMatrix.alertingRules);
|
|
|
|
const [formValues, setFormValues] = useState<AlertRuleFormValues | null | undefined>(undefined);
|
|
|
|
useEffect(() => {
|
|
if (isNaN(alertRuleId)) {
|
|
router.replace(`/${orgId}/settings/alerting`);
|
|
return;
|
|
}
|
|
|
|
api.get<AxiosResponse<GetAlertRuleResponse>>(
|
|
`/org/${orgId}/alert-rule/${alertRuleId}`
|
|
)
|
|
.then((res) => {
|
|
const rule = res.data.data;
|
|
setFormValues(apiResponseToFormValues(rule));
|
|
})
|
|
.catch((e) => {
|
|
toast({
|
|
title: t("error"),
|
|
description: formatAxiosError(e),
|
|
variant: "destructive"
|
|
});
|
|
setFormValues(null);
|
|
});
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [orgId, alertRuleId]);
|
|
|
|
useEffect(() => {
|
|
if (formValues === null) {
|
|
router.replace(`/${orgId}/settings/alerting`);
|
|
}
|
|
}, [formValues, orgId, router]);
|
|
|
|
if (formValues === undefined) {
|
|
return (
|
|
<div className="min-h-[12rem] flex items-center justify-center text-muted-foreground text-sm">
|
|
{t("loading")}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (formValues === null) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<AlertRuleGraphEditor
|
|
key={alertRuleId}
|
|
orgId={orgId}
|
|
alertRuleId={alertRuleId}
|
|
initialValues={formValues}
|
|
isNew={false}
|
|
disabled={!isPaid}
|
|
/>
|
|
);
|
|
}
|