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-12-10 10:18:10 +00:00
|
|
|
<div className={`flex h-full w-full items-center justify-center`}>
|
|
|
|
<div className="flex w-full flex-col items-center text-center">
|
2023-11-29 15:02:10 +00:00
|
|
|
<Image src={image} className="w-52 sm:w-60" alt={primaryButton?.text || "button image"} />
|
2023-12-10 10:18:10 +00:00
|
|
|
<h6 className="mb-3 mt-6 text-xl font-semibold sm:mt-8">{title}</h6>
|
|
|
|
{description && <p className="mb-7 px-5 text-custom-text-300 sm:mb-8">{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>
|
|
|
|
);
|