2023-12-26 07:58:47 +00:00
|
|
|
import React from "react";
|
2023-11-27 11:45:48 +00:00
|
|
|
import Image from "next/image";
|
|
|
|
// ui
|
|
|
|
import { Button } from "@plane/ui";
|
|
|
|
// assets
|
|
|
|
import EmptyWebhook from "public/empty-state/web-hook.svg";
|
|
|
|
|
2023-12-26 07:58:47 +00:00
|
|
|
type Props = {
|
|
|
|
onClick: () => void;
|
|
|
|
};
|
2023-11-27 11:45:48 +00:00
|
|
|
|
2023-12-26 07:58:47 +00:00
|
|
|
export const WebhooksEmptyState: React.FC<Props> = (props) => {
|
|
|
|
const { onClick } = props;
|
2023-11-27 11:45:48 +00:00
|
|
|
return (
|
|
|
|
<div
|
2023-12-10 10:18:10 +00:00
|
|
|
className={`mx-auto flex w-full items-center justify-center rounded-sm border border-custom-border-200 bg-custom-background-90 px-16 py-10 lg:w-3/4`}
|
2023-11-27 11:45:48 +00:00
|
|
|
>
|
2023-12-10 10:18:10 +00:00
|
|
|
<div className="flex w-full flex-col items-center text-center">
|
2023-11-27 11:45:48 +00:00
|
|
|
<Image src={EmptyWebhook} className="w-52 sm:w-60" alt="empty" />
|
2023-12-10 10:18:10 +00:00
|
|
|
<h6 className="mb-3 mt-6 text-xl font-semibold sm:mt-8">No webhooks</h6>
|
|
|
|
<p className="mb-7 text-custom-text-300 sm:mb-8">
|
2023-11-27 11:45:48 +00:00
|
|
|
Create webhooks to receive real-time updates and automate actions
|
|
|
|
</p>
|
2023-12-26 07:58:47 +00:00
|
|
|
<Button className="flex items-center gap-1.5" onClick={onClick}>
|
2023-11-27 11:45:48 +00:00
|
|
|
Add webhook
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|