init alerter config

This commit is contained in:
karamvir
2023-08-06 01:20:07 -07:00
parent 1a068ed82b
commit 4f844f673f

View File

@@ -1,8 +1,13 @@
import { ResourceUpdates } from "@components/updates/resource";
import { useAddRecentlyViewed, useRead } from "@hooks";
import { useAddRecentlyViewed, useRead, useWrite } from "@hooks";
import { ResourceCard } from "@layouts/card";
import { Section } from "@layouts/page";
import { Resource } from "@layouts/resource";
import { AlarmClock } from "lucide-react";
import { Types } from "@monitor/client";
import { Button } from "@ui/button";
import { History } from "lucide-react";
import { AlarmClock, Save, Settings } from "lucide-react";
import { useState } from "react";
import { Link, useParams } from "react-router-dom";
export const AlerterName = ({ id }: { id: string }) => {
@@ -19,22 +24,6 @@ const AlerterInfo = ({ id }: { id: string }) => {
return <>some description</>;
};
export const AlerterPage = () => {
const id = useParams().alerterId;
if (!id) return null;
useAddRecentlyViewed("Alerter", id);
return (
<Resource
title={<AlerterName id={id} />}
info={<AlerterInfo id={id} />}
actions={<></>}
>
<ResourceUpdates type="Alerter" id={id} />
</Resource>
);
};
export const AlerterCard = ({ id }: { id: string }) => {
const alerters = useRead("ListAlerters", {}).data;
const alerter = alerters?.find((a) => a.id === id);
@@ -51,3 +40,70 @@ export const AlerterCard = ({ id }: { id: string }) => {
</Link>
);
};
export const AlerterConfig = ({ id }: { id: string }) => {
const alerter = useRead("GetAlerter", { id }).data;
const [update, set] = useState<Partial<Types.AlerterConfig>>({});
const { mutate, isLoading } = useWrite("UpdateAlerter");
if (!id || !alerter?.config) return null;
return (
<Section
title="Config"
icon={<Settings className="w-4 h-4" />}
actions={
<div className="flex gap-4">
<Button variant="outline" intent="warning" onClick={() => set({})}>
<History className="w-4 h-4" />
</Button>
<Button
variant="outline"
intent="success"
onClick={() => {
if (!update.type || !update.params) return null;
mutate({
config: { type: update.type, params: update.params },
id,
});
}}
>
<Save className="w-4 h-4" />
</Button>
</div>
}
>
{/* <Config config={server?.config as any} update={update} set={set} /> */}
{/* <Configuration
config={
alerter.config as Extract<Types.AlerterConfig, { type: "Slack" }>
}
loading={isLoading}
update={update}
set={(input) => set((update) => ({ ...update, ...input }))}
layout={{
general: ["type", "params"],
}}
// overrides={{
// params:
// }}
/> */}
</Section>
);
};
export const AlerterPage = () => {
const id = useParams().alerterId;
if (!id) return null;
useAddRecentlyViewed("Alerter", id);
return (
<Resource
title={<AlerterName id={id} />}
info={<AlerterInfo id={id} />}
actions={<></>}
>
<ResourceUpdates type="Alerter" id={id} />
<AlerterConfig id={id} />
</Resource>
);
};