mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
4a2057c0b3
* fix: custom colors opacity * chore: update text colors for dark mode * fix: dropdown text colors, datepicker bg color * chore: update text colors * chore: updated primary bg color * style: new empty states added * refactor: empty state for issues * style: empty state for estimates * chore: update labels, estimates and integrations empty states * fix: custom analytics sidebar
135 lines
4.3 KiB
TypeScript
135 lines
4.3 KiB
TypeScript
import React, { useState } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import { mutate } from "swr";
|
|
|
|
// services
|
|
import projectService from "services/project.service";
|
|
// hooks
|
|
import useProjects from "hooks/use-projects";
|
|
import useWorkspaces from "hooks/use-workspaces";
|
|
import useUserAuth from "hooks/use-user-auth";
|
|
// layouts
|
|
import { WorkspaceAuthorizationLayout } from "layouts/auth-layout";
|
|
// components
|
|
import { JoinProjectModal } from "components/project/join-project-modal";
|
|
import { DeleteProjectModal, SingleProjectCard } from "components/project";
|
|
// ui
|
|
import { EmptyState, Loader, PrimaryButton } from "components/ui";
|
|
import { Breadcrumbs, BreadcrumbItem } from "components/breadcrumbs";
|
|
// icons
|
|
import { PlusIcon } from "@heroicons/react/24/outline";
|
|
// images
|
|
import emptyProject from "public/empty-state/project.svg";
|
|
// types
|
|
import type { NextPage } from "next";
|
|
// fetch-keys
|
|
import { PROJECT_MEMBERS } from "constants/fetch-keys";
|
|
|
|
const ProjectsPage: NextPage = () => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
const { user } = useUserAuth();
|
|
// context data
|
|
const { activeWorkspace } = useWorkspaces();
|
|
const { projects } = useProjects();
|
|
// states
|
|
const [deleteProject, setDeleteProject] = useState<string | null>(null);
|
|
const [selectedProjectToJoin, setSelectedProjectToJoin] = useState<string | null>(null);
|
|
|
|
return (
|
|
<WorkspaceAuthorizationLayout
|
|
breadcrumbs={
|
|
<Breadcrumbs>
|
|
<BreadcrumbItem title={`${activeWorkspace?.name ?? "Workspace"} Projects`} />
|
|
</Breadcrumbs>
|
|
}
|
|
right={
|
|
<PrimaryButton
|
|
className="flex items-center gap-2"
|
|
onClick={() => {
|
|
const e = new KeyboardEvent("keydown", { key: "p" });
|
|
document.dispatchEvent(e);
|
|
}}
|
|
>
|
|
<PlusIcon className="h-4 w-4" />
|
|
Add Project
|
|
</PrimaryButton>
|
|
}
|
|
>
|
|
<JoinProjectModal
|
|
data={projects?.find((item) => item.id === selectedProjectToJoin)}
|
|
onClose={() => setSelectedProjectToJoin(null)}
|
|
onJoin={async () => {
|
|
const project = projects?.find((item) => item.id === selectedProjectToJoin);
|
|
if (!project) return;
|
|
|
|
await projectService
|
|
.joinProject(workspaceSlug as string, {
|
|
project_ids: [project.id],
|
|
})
|
|
.then(async () => {
|
|
mutate(PROJECT_MEMBERS(project.id));
|
|
setSelectedProjectToJoin(null);
|
|
})
|
|
.catch(() => {
|
|
setSelectedProjectToJoin(null);
|
|
});
|
|
}}
|
|
/>
|
|
<DeleteProjectModal
|
|
isOpen={!!deleteProject}
|
|
onClose={() => setDeleteProject(null)}
|
|
data={projects?.find((item) => item.id === deleteProject) ?? null}
|
|
user={user}
|
|
/>
|
|
{projects ? (
|
|
<div className="h-full w-full overflow-hidden">
|
|
{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">
|
|
{projects.map((project) => (
|
|
<SingleProjectCard
|
|
key={project.id}
|
|
project={project}
|
|
setToJoinProject={setSelectedProjectToJoin}
|
|
setDeleteProject={setDeleteProject}
|
|
/>
|
|
))}
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<EmptyState
|
|
image={emptyProject}
|
|
title="No projects yet"
|
|
description="Get started by creating your first project"
|
|
buttonText="New Project"
|
|
buttonIcon={<PlusIcon className="h-4 w-4" />}
|
|
onClick={() => {
|
|
const e = new KeyboardEvent("keydown", {
|
|
key: "p",
|
|
});
|
|
document.dispatchEvent(e);
|
|
}}
|
|
/>
|
|
)}
|
|
</div>
|
|
) : (
|
|
<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>
|
|
)}
|
|
</WorkspaceAuthorizationLayout>
|
|
);
|
|
};
|
|
|
|
export default ProjectsPage;
|