mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
666d46de58
* fix: gpt error handlijng * fix: enabling ai assistance only when it is configured.
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import { FC } from "react";
|
|
import { ToggleSwitch } from "@plane/ui";
|
|
import Link from "next/link";
|
|
import { RootStore } from "store/root";
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// types
|
|
import { IWebhook } from "types";
|
|
|
|
interface IWebhookListItem {
|
|
workspaceSlug: string;
|
|
webhook: IWebhook;
|
|
}
|
|
|
|
export const WebhooksListItem: FC<IWebhookListItem> = (props) => {
|
|
const { workspaceSlug, webhook } = props;
|
|
|
|
const { webhook: webhookStore }: RootStore = useMobxStore();
|
|
|
|
const handleToggle = () => {
|
|
if (webhook.id) {
|
|
webhookStore.update(workspaceSlug, webhook.id, { ...webhook, is_active: !webhook.is_active }).catch(() => {});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<Link href={`/${workspaceSlug}/settings/webhooks/${webhook?.id}`}>
|
|
<div className="flex cursor-pointer justify-between px-3.5 py-[18px]">
|
|
<div>
|
|
<div className="text-base font-medium">{webhook?.url || "Webhook URL"}</div>
|
|
{/* <div className="text-base text-neutral-700">
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
|
|
</div> */}
|
|
</div>
|
|
<div className="flex gap-4 items-center">
|
|
<ToggleSwitch value={webhook.is_active} onChange={handleToggle} />
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
</div>
|
|
);
|
|
};
|