2023-10-30 14:39:04 +00:00
|
|
|
import { PlusIcon } from "lucide-react";
|
|
|
|
// components
|
|
|
|
import { EmptyState } from "components/common";
|
2023-11-01 11:41:07 +00:00
|
|
|
import { Button } from "@plane/ui";
|
2023-10-30 14:39:04 +00:00
|
|
|
// assets
|
|
|
|
import emptyIssue from "public/empty-state/issue.svg";
|
|
|
|
|
2023-11-01 11:41:07 +00:00
|
|
|
type Props = {
|
|
|
|
openIssuesListModal: () => void;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const ModuleEmptyState: React.FC<Props> = ({ openIssuesListModal }) => (
|
2023-10-30 14:39:04 +00:00
|
|
|
<div className="h-full w-full grid place-items-center">
|
|
|
|
<EmptyState
|
|
|
|
title="Module issues will appear here"
|
|
|
|
description="Issues help you track individual pieces of work. With Issues, keep track of what's going on, who is working on it, and what's done."
|
|
|
|
image={emptyIssue}
|
|
|
|
primaryButton={{
|
|
|
|
text: "New issue",
|
|
|
|
icon: <PlusIcon className="h-3 w-3" strokeWidth={2} />,
|
|
|
|
onClick: () => {
|
|
|
|
const e = new KeyboardEvent("keydown", {
|
|
|
|
key: "c",
|
|
|
|
});
|
|
|
|
document.dispatchEvent(e);
|
|
|
|
},
|
|
|
|
}}
|
2023-11-01 11:41:07 +00:00
|
|
|
secondaryButton={
|
|
|
|
<Button
|
|
|
|
variant="neutral-primary"
|
|
|
|
prependIcon={<PlusIcon className="h-3 w-3" strokeWidth={2} />}
|
|
|
|
onClick={openIssuesListModal}
|
|
|
|
>
|
|
|
|
Add an existing issue
|
|
|
|
</Button>
|
|
|
|
}
|
2023-10-30 14:39:04 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|