forked from github/plane
15f621ad91
* fix: project fav changes * fix: project create workspace member * style: member select dropdown ui and command k modal alignment fix (#2473) * style: member select dropdown fix * style: command k modal alignment fix * fix: project create modal changes * fix: sidebar shortcut fixes * fix: minor console issues --------- Co-authored-by: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com>
68 lines
1.9 KiB
TypeScript
68 lines
1.9 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// lib
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// components
|
|
import { ProjectCard } from "components/project";
|
|
import { EmptyState } from "components/common";
|
|
import { Loader } from "@plane/ui";
|
|
// images
|
|
import emptyProject from "public/empty-state/project.svg";
|
|
// icons
|
|
import { Plus } from "lucide-react";
|
|
|
|
export interface IProjectCardList {
|
|
workspaceSlug: string;
|
|
}
|
|
|
|
export const ProjectCardList: FC<IProjectCardList> = observer((props) => {
|
|
const { workspaceSlug } = props;
|
|
// store
|
|
const { project: projectStore } = useMobxStore();
|
|
|
|
const projects = workspaceSlug ? projectStore.projects[workspaceSlug.toString()] : null;
|
|
|
|
if (!projects) {
|
|
return (
|
|
<Loader className="grid grid-cols-3 gap-4">
|
|
<Loader.Item height="100px" />
|
|
<Loader.Item height="100px" />
|
|
<Loader.Item height="100px" />
|
|
<Loader.Item height="100px" />
|
|
<Loader.Item height="100px" />
|
|
<Loader.Item height="100px" />
|
|
</Loader>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{projects.length > 0 ? (
|
|
<div className="h-full p-8 overflow-y-auto">
|
|
<div className="grid grid-cols-1 gap-9 md:grid-cols-2 lg:grid-cols-3">
|
|
{projectStore.searchedProjects.map((project) => (
|
|
<ProjectCard key={project.id} project={project} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<EmptyState
|
|
image={emptyProject}
|
|
title="No projects yet"
|
|
description="Get started by creating your first project"
|
|
primaryButton={{
|
|
icon: <Plus className="h-4 w-4" />,
|
|
text: "New Project",
|
|
onClick: () => {
|
|
const e = new KeyboardEvent("keydown", {
|
|
key: "p",
|
|
});
|
|
document.dispatchEvent(e);
|
|
},
|
|
}}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
});
|