2023-03-15 05:31:54 +00:00
|
|
|
import React from "react";
|
2023-07-12 06:15:45 +00:00
|
|
|
|
2023-03-15 05:31:54 +00:00
|
|
|
import Image from "next/image";
|
|
|
|
|
2023-03-22 11:28:32 +00:00
|
|
|
// ui
|
2023-11-01 11:41:07 +00:00
|
|
|
import { Button } from "@plane/ui";
|
2023-03-15 05:31:54 +00:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
title: string;
|
2023-08-03 09:58:22 +00:00
|
|
|
description?: React.ReactNode;
|
2023-07-12 06:15:45 +00:00
|
|
|
image: any;
|
2023-08-01 08:28:58 +00:00
|
|
|
primaryButton?: {
|
|
|
|
icon?: any;
|
|
|
|
text: string;
|
|
|
|
onClick: () => void;
|
|
|
|
};
|
2023-07-23 09:41:28 +00:00
|
|
|
secondaryButton?: React.ReactNode;
|
2023-10-04 13:54:13 +00:00
|
|
|
disabled?: boolean;
|
2023-03-15 05:31:54 +00:00
|
|
|
};
|
|
|
|
|
2023-07-12 06:15:45 +00:00
|
|
|
export const EmptyState: React.FC<Props> = ({
|
|
|
|
title,
|
|
|
|
description,
|
|
|
|
image,
|
2023-08-01 08:28:58 +00:00
|
|
|
primaryButton,
|
2023-07-23 09:41:28 +00:00
|
|
|
secondaryButton,
|
2023-10-04 13:54:13 +00:00
|
|
|
disabled = false,
|
2023-07-12 06:15:45 +00:00
|
|
|
}) => (
|
2023-10-18 13:47:02 +00:00
|
|
|
<div className={`flex items-center justify-center h-full w-full`}>
|
2023-07-12 06:15:45 +00:00
|
|
|
<div className="text-center flex flex-col items-center w-full">
|
2023-11-29 15:02:10 +00:00
|
|
|
<Image src={image} className="w-52 sm:w-60" alt={primaryButton?.text || "button image"} />
|
2023-07-12 06:15:45 +00:00
|
|
|
<h6 className="text-xl font-semibold mt-6 sm:mt-8 mb-3">{title}</h6>
|
2023-11-29 14:32:13 +00:00
|
|
|
{description && <p className="text-custom-text-300 mb-7 sm:mb-8 px-5">{description}</p>}
|
2023-07-23 09:41:28 +00:00
|
|
|
<div className="flex items-center gap-4">
|
2023-08-01 08:28:58 +00:00
|
|
|
{primaryButton && (
|
2023-11-01 11:41:07 +00:00
|
|
|
<Button
|
|
|
|
variant="primary"
|
|
|
|
prependIcon={primaryButton.icon}
|
|
|
|
onClick={primaryButton.onClick}
|
|
|
|
disabled={disabled}
|
|
|
|
>
|
2023-08-01 08:28:58 +00:00
|
|
|
{primaryButton.text}
|
2023-11-01 11:41:07 +00:00
|
|
|
</Button>
|
2023-07-23 09:41:28 +00:00
|
|
|
)}
|
|
|
|
{secondaryButton}
|
|
|
|
</div>
|
2023-03-15 05:31:54 +00:00
|
|
|
</div>
|
2023-07-12 06:15:45 +00:00
|
|
|
</div>
|
|
|
|
);
|