forked from github/plane
78 lines
2.3 KiB
TypeScript
78 lines
2.3 KiB
TypeScript
|
import type { NextPage } from "next";
|
||
|
import { useRouter } from "next/router";
|
||
|
import useSWR from "swr";
|
||
|
import { observer } from "mobx-react-lite";
|
||
|
// layout
|
||
|
import { AppLayout } from "layouts/app-layout";
|
||
|
import { WorkspaceSettingLayout } from "layouts/settings-layout";
|
||
|
// components
|
||
|
import { WorkspaceSettingHeader } from "components/headers";
|
||
|
import { WebHookForm } from "components/web-hooks";
|
||
|
// hooks
|
||
|
import { useMobxStore } from "lib/mobx/store-provider";
|
||
|
// types
|
||
|
import { RootStore } from "store/root";
|
||
|
import { IExtendedWebhook, IWebhook } from "types";
|
||
|
import { Spinner } from "@plane/ui";
|
||
|
import { useEffect } from "react";
|
||
|
import { WebHookFormTypes } from "components/web-hooks/form";
|
||
|
|
||
|
const Webhooks: NextPage = observer(() => {
|
||
|
const router = useRouter();
|
||
|
const { workspaceSlug, webhookId, isCreated } = router.query as {
|
||
|
workspaceSlug: string;
|
||
|
webhookId: string;
|
||
|
isCreated: string;
|
||
|
};
|
||
|
|
||
|
const { webhook: webhookStore }: RootStore = useMobxStore();
|
||
|
|
||
|
useEffect(() => {
|
||
|
if (isCreated !== "true") {
|
||
|
webhookStore.clearSecretKey();
|
||
|
}
|
||
|
}, []);
|
||
|
|
||
|
const { isLoading } = useSWR(
|
||
|
workspaceSlug && webhookId ? `WEBHOOKS_DETAIL_${workspaceSlug}_${webhookId}` : null,
|
||
|
workspaceSlug && webhookId
|
||
|
? async () => {
|
||
|
await webhookStore.fetchById(workspaceSlug, webhookId);
|
||
|
}
|
||
|
: null
|
||
|
);
|
||
|
|
||
|
const onSubmit = (data: IExtendedWebhook): Promise<IWebhook> => {
|
||
|
const payload = {
|
||
|
url: data?.url,
|
||
|
is_active: data?.is_active,
|
||
|
project: data?.project,
|
||
|
cycle: data?.cycle,
|
||
|
module: data?.module,
|
||
|
issue: data?.issue,
|
||
|
issue_comment: data?.issue_comment,
|
||
|
};
|
||
|
return webhookStore.update(workspaceSlug, webhookId, payload);
|
||
|
};
|
||
|
|
||
|
const initialPayload = webhookStore.currentWebhook as IWebhook;
|
||
|
|
||
|
return (
|
||
|
<AppLayout header={<WorkspaceSettingHeader title="Webhook Settings" />}>
|
||
|
<WorkspaceSettingLayout>
|
||
|
<div className="w-full overflow-y-auto py-3 pr-4">
|
||
|
{isLoading ? (
|
||
|
<div className="flex w-full h-full items-center justify-center">
|
||
|
<Spinner />
|
||
|
</div>
|
||
|
) : (
|
||
|
<WebHookForm type={WebHookFormTypes.EDIT} initialData={initialPayload} onSubmit={onSubmit} />
|
||
|
)}
|
||
|
</div>
|
||
|
</WorkspaceSettingLayout>
|
||
|
</AppLayout>
|
||
|
);
|
||
|
});
|
||
|
|
||
|
export default Webhooks;
|