plane/apps/app/components/ui/empty-state.tsx

78 lines
2.1 KiB
TypeScript
Raw Normal View History

import React from "react";
import Image from "next/image";
2023-03-22 11:28:32 +00:00
// ui
import { PrimaryButton } from "components/ui";
// icon
import { PlusIcon } from "@heroicons/react/24/outline";
// helper
import { capitalizeFirstLetter } from "helpers/string.helper";
type Props = {
type: "cycle" | "module" | "project" | "issue" | "view" | "page" | "estimate";
title: string;
description: React.ReactNode | string;
imgURL: string;
2023-03-22 09:17:13 +00:00
action?: () => void;
};
2023-03-22 09:17:13 +00:00
export const EmptyState: React.FC<Props> = ({ type, title, description, imgURL, action }) => {
const shortcutKey = (type: string) => {
switch (type) {
case "cycle":
return "Q";
case "module":
return "M";
case "project":
return "P";
2023-03-22 09:17:13 +00:00
case "issue":
return "C";
case "view":
return "V";
case "page":
return "D";
2023-03-22 09:17:13 +00:00
default:
return null;
}
};
return (
<div className="flex h-full w-full flex-col items-center justify-center gap-5 text-center">
<div className="h-32 w-72">
<Image src={imgURL} height="128" width="288" alt={type} />
</div>
<h3 className="text-xl font-semibold">{title}</h3>
2023-03-22 09:17:13 +00:00
{shortcutKey(type) && (
<span>
Use shortcut{" "}
<span className="text-custom-text-200 mx-1 rounded-sm border border-custom-border-100 bg-custom-background-90 px-2 py-1 text-sm font-medium">
2023-03-22 09:17:13 +00:00
{shortcutKey(type)}
</span>{" "}
to create {type} from anywhere.
</span>
)}
<p className="max-w-md text-sm text-custom-text-200">{description}</p>
2023-03-22 11:28:32 +00:00
<PrimaryButton
className="flex items-center gap-1"
onClick={() => {
2023-03-22 09:17:13 +00:00
if (action) {
action();
return;
}
if (!shortcutKey(type)) return;
const e = new KeyboardEvent("keydown", {
2023-03-22 09:17:13 +00:00
key: shortcutKey(type) as string,
});
document.dispatchEvent(e);
}}
>
<PlusIcon className="h-4 w-4 font-bold text-white" />
Create New {capitalizeFirstLetter(type)}
2023-03-22 11:28:32 +00:00
</PrimaryButton>
</div>
);
};