mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
20fe27e086
* fix: event tracking method updated to store, chore: updated and added events for workspace, projects and create issue * fix: posthog auth event tracking --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
70 lines
2.2 KiB
TypeScript
70 lines
2.2 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/project/empty-state";
|
||
import { Loader } from "@plane/ui";
|
||
// images
|
||
import emptyProject from "public/empty-state/Project_full_screen.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, commandPalette: commandPaletteStore, trackEvent: { setTrackElement } } = 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 w-full p-8 overflow-y-auto">
|
||
{projectStore.searchedProjects.length == 0 ? (
|
||
<div className="w-full text-center text-custom-text-400 mt-10">No matching projects</div>
|
||
) : (
|
||
<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="Why no fly 😔"
|
||
description="Let’s take off, cap’n!"
|
||
primaryButton={{
|
||
icon: <Plus className="h-4 w-4" />,
|
||
text: "Start something new",
|
||
onClick: () => {
|
||
setTrackElement("PROJECTS_EMPTY_STATE");
|
||
commandPaletteStore.toggleCreateProjectModal(true)
|
||
}
|
||
}}
|
||
/>
|
||
)}
|
||
</>
|
||
);
|
||
});
|