forked from github/plane
da6ecd439c
* chore: update tooltip design * fix: due date popup overflow * fix: build error * fix: build error * chore: add key to map return value * refactor: favorite projects sidebar list
113 lines
3.7 KiB
TypeScript
113 lines
3.7 KiB
TypeScript
import React, { useState, FC } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
import useTheme from "hooks/use-theme";
|
|
import useUserAuth from "hooks/use-user-auth";
|
|
import useProjects from "hooks/use-projects";
|
|
// components
|
|
import { DeleteProjectModal, SingleSidebarProject } from "components/project";
|
|
// icons
|
|
import { PlusIcon } from "@heroicons/react/24/outline";
|
|
// helpers
|
|
import { copyTextToClipboard } from "helpers/string.helper";
|
|
// types
|
|
import { IProject } from "types";
|
|
|
|
export const ProjectSidebarList: FC = () => {
|
|
const [deleteProjectModal, setDeleteProjectModal] = useState(false);
|
|
const [projectToDelete, setProjectToDelete] = useState<IProject | null>(null);
|
|
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
const { user } = useUserAuth();
|
|
|
|
const { collapsed: sidebarCollapse } = useTheme();
|
|
const { setToastAlert } = useToast();
|
|
|
|
const { projects: allProjects } = useProjects();
|
|
const favoriteProjects = allProjects?.filter((p) => p.is_favorite);
|
|
|
|
const handleDeleteProject = (project: IProject) => {
|
|
setProjectToDelete(project);
|
|
setDeleteProjectModal(true);
|
|
};
|
|
|
|
const handleCopyText = (projectId: string) => {
|
|
const originURL =
|
|
typeof window !== "undefined" && window.location.origin ? window.location.origin : "";
|
|
copyTextToClipboard(`${originURL}/${workspaceSlug}/projects/${projectId}/issues`).then(() => {
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Link Copied!",
|
|
message: "Project link copied to clipboard.",
|
|
});
|
|
});
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<DeleteProjectModal
|
|
isOpen={deleteProjectModal}
|
|
onClose={() => setDeleteProjectModal(false)}
|
|
data={projectToDelete}
|
|
user={user}
|
|
/>
|
|
<div className="h-full overflow-y-auto px-4">
|
|
{favoriteProjects && favoriteProjects.length > 0 && (
|
|
<div className="flex flex-col space-y-2 mt-5">
|
|
{!sidebarCollapse && (
|
|
<h5 className="text-sm font-medium text-custom-sidebar-text-200">Favorites</h5>
|
|
)}
|
|
{favoriteProjects.map((project) => (
|
|
<SingleSidebarProject
|
|
key={project.id}
|
|
project={project}
|
|
sidebarCollapse={sidebarCollapse}
|
|
handleDeleteProject={() => handleDeleteProject(project)}
|
|
handleCopyText={() => handleCopyText(project.id)}
|
|
shortContextMenu
|
|
/>
|
|
))}
|
|
</div>
|
|
)}
|
|
{allProjects && allProjects.length > 0 && (
|
|
<div className="flex flex-col space-y-2 mt-5">
|
|
{!sidebarCollapse && (
|
|
<h5 className="text-sm font-medium text-custom-sidebar-text-200">Projects</h5>
|
|
)}
|
|
{allProjects.map((project) => (
|
|
<SingleSidebarProject
|
|
key={project.id}
|
|
project={project}
|
|
sidebarCollapse={sidebarCollapse}
|
|
handleDeleteProject={() => handleDeleteProject(project)}
|
|
handleCopyText={() => handleCopyText(project.id)}
|
|
/>
|
|
))}
|
|
</div>
|
|
)}
|
|
{allProjects && allProjects.length === 0 && (
|
|
<button
|
|
type="button"
|
|
className="flex w-full items-center gap-2 px-3 py-2 text-sm text-custom-sidebar-text-200 mt-5"
|
|
onClick={() => {
|
|
const e = new KeyboardEvent("keydown", {
|
|
key: "p",
|
|
});
|
|
document.dispatchEvent(e);
|
|
}}
|
|
>
|
|
<PlusIcon className="h-5 w-5" />
|
|
{!sidebarCollapse && "Add Project"}
|
|
</button>
|
|
)}
|
|
</div>
|
|
</>
|
|
);
|
|
};
|