* chore: headers + common containers * fix: filters code splitting * fix: home header * fix: header changes * chore: page alignments fixed * fix: uncommented filters * fix: used enums * fix: cards + filters * fix: enum changes * fix: reverted package changes * fix: reverted package changes * fix: Card + tags seperated + naming fixed * fix: card + tags seperated + naming fixed * fix: mobile headers fixed partially * fix: build errors + minor css * fix: checkbox spacing * fix: review changes * fix: lint errors * fix: minor review changes
92 lines
3.3 KiB
TypeScript
92 lines
3.3 KiB
TypeScript
"use client";
|
|
|
|
import React, { useEffect, useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useParams } from "next/navigation";
|
|
import useSWR from "swr";
|
|
// ui
|
|
import { Button } from "@plane/ui";
|
|
// components
|
|
import { NotAuthorizedView } from "@/components/auth-screens";
|
|
import { PageHead } from "@/components/core";
|
|
import { EmptyState } from "@/components/empty-state";
|
|
import { WebhookSettingsLoader } from "@/components/ui";
|
|
import { WebhooksList, CreateWebhookModal } from "@/components/web-hooks";
|
|
// constants
|
|
import { EmptyStateType } from "@/constants/empty-state";
|
|
// hooks
|
|
import { useUser, useWebhook, useWorkspace } from "@/hooks/store";
|
|
|
|
const WebhooksListPage = observer(() => {
|
|
// states
|
|
const [showCreateWebhookModal, setShowCreateWebhookModal] = useState(false);
|
|
// router
|
|
const { workspaceSlug } = useParams();
|
|
// mobx store
|
|
const {
|
|
canPerformWorkspaceAdminActions,
|
|
membership: { currentWorkspaceRole },
|
|
} = useUser();
|
|
const { fetchWebhooks, webhooks, clearSecretKey, webhookSecretKey, createWebhook } = useWebhook();
|
|
const { currentWorkspace } = useWorkspace();
|
|
|
|
useSWR(
|
|
workspaceSlug && canPerformWorkspaceAdminActions ? `WEBHOOKS_LIST_${workspaceSlug}` : null,
|
|
workspaceSlug && canPerformWorkspaceAdminActions ? () => fetchWebhooks(workspaceSlug.toString()) : null
|
|
);
|
|
|
|
const pageTitle = currentWorkspace?.name ? `${currentWorkspace.name} - Webhooks` : undefined;
|
|
|
|
// clear secret key when modal is closed.
|
|
useEffect(() => {
|
|
if (!showCreateWebhookModal && webhookSecretKey) clearSecretKey();
|
|
}, [showCreateWebhookModal, webhookSecretKey, clearSecretKey]);
|
|
|
|
if (currentWorkspaceRole && !canPerformWorkspaceAdminActions) {
|
|
return <NotAuthorizedView section="settings" />;
|
|
}
|
|
|
|
if (!webhooks) return <WebhookSettingsLoader />;
|
|
|
|
return (
|
|
<>
|
|
<PageHead title={pageTitle} />
|
|
<div className="w-full overflow-y-auto">
|
|
<CreateWebhookModal
|
|
createWebhook={createWebhook}
|
|
clearSecretKey={clearSecretKey}
|
|
currentWorkspace={currentWorkspace}
|
|
isOpen={showCreateWebhookModal}
|
|
onClose={() => {
|
|
setShowCreateWebhookModal(false);
|
|
}}
|
|
/>
|
|
{Object.keys(webhooks).length > 0 ? (
|
|
<div className="flex h-full w-full flex-col">
|
|
<div className="flex items-center justify-between gap-4 border-b border-custom-border-200 py-3.5">
|
|
<div className="text-xl font-medium">Webhooks</div>
|
|
<Button variant="primary" size="sm" onClick={() => setShowCreateWebhookModal(true)}>
|
|
Add webhook
|
|
</Button>
|
|
</div>
|
|
<WebhooksList />
|
|
</div>
|
|
) : (
|
|
<div className="flex h-full w-full flex-col">
|
|
<div className="flex items-center justify-between gap-4 border-b border-custom-border-200 pb-3.5">
|
|
<div className="text-xl font-medium">Webhooks</div>
|
|
<Button variant="primary" size="sm" onClick={() => setShowCreateWebhookModal(true)}>
|
|
Add webhook
|
|
</Button>
|
|
</div>
|
|
<div className="h-full w-full flex items-center justify-center">
|
|
<EmptyState type={EmptyStateType.WORKSPACE_SETTINGS_WEBHOOKS} />
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</>
|
|
);
|
|
});
|
|
|
|
export default WebhooksListPage;
|