mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
81 lines
2.8 KiB
TypeScript
81 lines
2.8 KiB
TypeScript
"use client";
|
|
|
|
import { FC, useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useParams } from "next/navigation";
|
|
import { RefreshCcw } from "lucide-react";
|
|
// ui
|
|
import { Breadcrumbs, Button, LayersIcon } from "@plane/ui";
|
|
// components
|
|
import { BreadcrumbLink, Logo } from "@/components/common";
|
|
import { InboxIssueCreateEditModalRoot } from "@/components/inbox";
|
|
// hooks
|
|
import { useProject, useProjectInbox } from "@/hooks/store";
|
|
|
|
const ProjectInboxHeader: FC = observer(() => {
|
|
// states
|
|
const [createIssueModal, setCreateIssueModal] = useState(false);
|
|
// router
|
|
const { workspaceSlug, projectId } = useParams();
|
|
// store hooks
|
|
const { currentProjectDetails } = useProject();
|
|
const { loader } = useProjectInbox();
|
|
|
|
return (
|
|
<div className="relative z-10 flex h-[3.75rem] w-full flex-shrink-0 flex-row items-center justify-between gap-x-2 gap-y-4 bg-custom-sidebar-background-100 p-4">
|
|
<div className="flex w-full flex-grow items-center gap-2 overflow-ellipsis whitespace-nowrap">
|
|
<div className="flex items-center gap-4">
|
|
<Breadcrumbs>
|
|
<Breadcrumbs.BreadcrumbItem
|
|
type="text"
|
|
link={
|
|
<BreadcrumbLink
|
|
href={`/${workspaceSlug}/projects`}
|
|
label={currentProjectDetails?.name ?? "Project"}
|
|
icon={
|
|
currentProjectDetails && (
|
|
<span className="grid place-items-center flex-shrink-0 h-4 w-4">
|
|
<Logo logo={currentProjectDetails?.logo_props} size={16} />
|
|
</span>
|
|
)
|
|
}
|
|
/>
|
|
}
|
|
/>
|
|
|
|
<Breadcrumbs.BreadcrumbItem
|
|
type="text"
|
|
link={<BreadcrumbLink label="Inbox" icon={<LayersIcon className="h-4 w-4 text-custom-text-300" />} />}
|
|
/>
|
|
</Breadcrumbs>
|
|
|
|
{loader === "pagination-loading" && (
|
|
<div className="flex items-center gap-1.5 text-custom-text-300">
|
|
<RefreshCcw className="h-3.5 w-3.5 animate-spin" />
|
|
<p className="text-sm">Syncing...</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{currentProjectDetails?.inbox_view && workspaceSlug && projectId && (
|
|
<div className="flex items-center gap-2">
|
|
<InboxIssueCreateEditModalRoot
|
|
workspaceSlug={workspaceSlug.toString()}
|
|
projectId={projectId.toString()}
|
|
modalState={createIssueModal}
|
|
handleModalClose={() => setCreateIssueModal(false)}
|
|
issue={undefined}
|
|
/>
|
|
|
|
<Button variant="primary" size="sm" onClick={() => setCreateIssueModal(true)}>
|
|
Add Issue
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|
|
|
|
export default ProjectInboxHeader;
|