"use client"; import { useState } from "react"; import { observer } from "mobx-react"; import { useParams } from "next/navigation"; import useSWR from "swr"; import { IWebhook } from "@plane/types"; // ui import { TOAST_TYPE, setToast } from "@plane/ui"; // components import { LogoSpinner } from "@/components/common"; import { PageHead } from "@/components/core"; import { DeleteWebhookModal, WebhookDeleteSection, WebhookForm } from "@/components/web-hooks"; // hooks import { useUser, useWebhook, useWorkspace } from "@/hooks/store"; const WebhookDetailsPage = observer(() => { // states const [deleteWebhookModal, setDeleteWebhookModal] = useState(false); // router const { workspaceSlug, webhookId } = useParams(); // mobx store const { membership: { currentWorkspaceRole }, } = useUser(); const { currentWebhook, fetchWebhookById, updateWebhook } = useWebhook(); const { currentWorkspace } = useWorkspace(); // TODO: fix this error // useEffect(() => { // if (isCreated !== "true") clearSecretKey(); // }, [clearSecretKey, isCreated]); const isAdmin = currentWorkspaceRole === 20; const pageTitle = currentWorkspace?.name ? `${currentWorkspace.name} - Webhook` : undefined; useSWR( workspaceSlug && webhookId && isAdmin ? `WEBHOOK_DETAILS_${workspaceSlug}_${webhookId}` : null, workspaceSlug && webhookId && isAdmin ? () => fetchWebhookById(workspaceSlug.toString(), webhookId.toString()) : null ); const handleUpdateWebhook = async (formData: IWebhook) => { if (!workspaceSlug || !formData || !formData.id) return; const payload = { url: formData?.url, is_active: formData?.is_active, project: formData?.project, cycle: formData?.cycle, module: formData?.module, issue: formData?.issue, issue_comment: formData?.issue_comment, }; await updateWebhook(workspaceSlug.toString(), formData.id, payload) .then(() => { setToast({ type: TOAST_TYPE.SUCCESS, title: "Success!", message: "Webhook updated successfully.", }); }) .catch((error) => { setToast({ type: TOAST_TYPE.ERROR, title: "Error!", message: error?.error ?? "Something went wrong. Please try again.", }); }); }; if (!isAdmin) return ( <>

You are not authorized to access this page.

); if (!currentWebhook) return (
); return ( <> setDeleteWebhookModal(false)} />
await handleUpdateWebhook(data)} data={currentWebhook} />
{currentWebhook && setDeleteWebhookModal(true)} />}
); }); export default WebhookDetailsPage;