Some checks failed
Branch Build CE / Build Setup (push) Has been cancelled
Branch Build CE / Build-Push Admin Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Web Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Space Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Live Collaboration Docker Image (push) Has been cancelled
Branch Build CE / Build-Push API Server Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Proxy Docker Image (push) Has been cancelled
Branch Build CE / Build-Push AIO Docker Image (push) Has been cancelled
Branch Build CE / Upload Build Assets (push) Has been cancelled
Branch Build CE / Build Release (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Codespell / Check for spelling errors (push) Has been cancelled
Sync Repositories / sync_changes (push) Has been cancelled
Synced from upstream: 8853637e981ed7d8a6cff32bd98e7afe20f54362
82 lines
2.9 KiB
TypeScript
82 lines
2.9 KiB
TypeScript
"use client";
|
|
|
|
import type { FC } from "react";
|
|
import { useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useParams } from "next/navigation";
|
|
import { RefreshCcw } from "lucide-react";
|
|
// ui
|
|
import { EProjectFeatureKey, EUserPermissions, EUserPermissionsLevel } from "@plane/constants";
|
|
import { useTranslation } from "@plane/i18n";
|
|
import { Button } from "@plane/propel/button";
|
|
import { Breadcrumbs, Header } from "@plane/ui";
|
|
// components
|
|
import { InboxIssueCreateModalRoot } from "@/components/inbox/modals/create-modal";
|
|
// hooks
|
|
import { useProject } from "@/hooks/store/use-project";
|
|
import { useProjectInbox } from "@/hooks/store/use-project-inbox";
|
|
import { useUserPermissions } from "@/hooks/store/user";
|
|
// plane web
|
|
import { CommonProjectBreadcrumbs } from "@/plane-web/components/breadcrumbs/common";
|
|
|
|
export const ProjectInboxHeader: FC = observer(() => {
|
|
// states
|
|
const [createIssueModal, setCreateIssueModal] = useState(false);
|
|
// router
|
|
const { workspaceSlug, projectId } = useParams();
|
|
// store hooks
|
|
const { allowPermissions } = useUserPermissions();
|
|
const { t } = useTranslation();
|
|
|
|
const { currentProjectDetails, loader: currentProjectDetailsLoader } = useProject();
|
|
const { loader } = useProjectInbox();
|
|
|
|
// derived value
|
|
const isAuthorized = allowPermissions(
|
|
[EUserPermissions.ADMIN, EUserPermissions.MEMBER, EUserPermissions.GUEST],
|
|
EUserPermissionsLevel.PROJECT
|
|
);
|
|
|
|
return (
|
|
<Header>
|
|
<Header.LeftItem>
|
|
<div className="flex items-center gap-4 flex-grow">
|
|
<Breadcrumbs isLoading={currentProjectDetailsLoader === "init-loader"}>
|
|
<CommonProjectBreadcrumbs
|
|
workspaceSlug={workspaceSlug?.toString() ?? ""}
|
|
projectId={projectId?.toString() ?? ""}
|
|
featureKey={EProjectFeatureKey.INTAKE}
|
|
isLast
|
|
/>
|
|
</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">{t("syncing")}...</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</Header.LeftItem>
|
|
<Header.RightItem>
|
|
{currentProjectDetails?.inbox_view && workspaceSlug && projectId && isAuthorized ? (
|
|
<div className="flex items-center gap-2">
|
|
<InboxIssueCreateModalRoot
|
|
workspaceSlug={workspaceSlug.toString()}
|
|
projectId={projectId.toString()}
|
|
modalState={createIssueModal}
|
|
handleModalClose={() => setCreateIssueModal(false)}
|
|
/>
|
|
|
|
<Button variant="primary" size="sm" onClick={() => setCreateIssueModal(true)}>
|
|
{t("add_work_item")}
|
|
</Button>
|
|
</div>
|
|
) : (
|
|
<></>
|
|
)}
|
|
</Header.RightItem>
|
|
</Header>
|
|
);
|
|
});
|