mirror of
https://github.com/makeplane/plane.git
synced 2026-02-24 20:20:49 +01:00
* chore: gitignore updated * chore: check icon added to propel package * feat: search icon migration * chore: check icon migration * chore: plus icon added to propel package * chore: code refactor * chore: plus icon migration and code refactor * chore: trash icon added to propel package * chore: code refactor * chore: trash icon migration * chore: edit icon added to propel package * chore: new tab icon added to propel package * chore: edit icon migration * chore: newtab icon migration * chore: lock icon added to propel package * chore: lock icon migration * chore: globe icon added to propel package * chore: globe icon migration * chore: copy icon added to propel package * chore: copy icon migration * chore: link icon added to propel package * chore: link icon migration * chore: link icon migration * chore: info icon added to propel package * chore: code refactor * chore: code refactor * chore: code refactor * chore: code refactor
130 lines
4.7 KiB
TypeScript
130 lines
4.7 KiB
TypeScript
import { observer } from "mobx-react";
|
|
import { useParams } from "next/navigation";
|
|
// icons
|
|
import { Circle } from "lucide-react";
|
|
// plane imports
|
|
import {
|
|
EUserPermissions,
|
|
EUserPermissionsLevel,
|
|
SPACE_BASE_PATH,
|
|
SPACE_BASE_URL,
|
|
WORK_ITEM_TRACKER_ELEMENTS,
|
|
} from "@plane/constants";
|
|
import { useTranslation } from "@plane/i18n";
|
|
import { Button } from "@plane/propel/button";
|
|
import { NewTabIcon, WorkItemsIcon } from "@plane/propel/icons";
|
|
import { Tooltip } from "@plane/propel/tooltip";
|
|
import { EIssuesStoreType } from "@plane/types";
|
|
import { Breadcrumbs, Header } from "@plane/ui";
|
|
// components
|
|
import { BreadcrumbLink } from "@/components/common/breadcrumb-link";
|
|
import { CountChip } from "@/components/common/count-chip";
|
|
// constants
|
|
import { HeaderFilters } from "@/components/issues/filters";
|
|
// helpers
|
|
// hooks
|
|
import { useCommandPalette } from "@/hooks/store/use-command-palette";
|
|
import { useIssues } from "@/hooks/store/use-issues";
|
|
import { useProject } from "@/hooks/store/use-project";
|
|
import { useUserPermissions } from "@/hooks/store/user";
|
|
import { useAppRouter } from "@/hooks/use-app-router";
|
|
import { usePlatformOS } from "@/hooks/use-platform-os";
|
|
// plane web imports
|
|
import { CommonProjectBreadcrumbs } from "@/plane-web/components/breadcrumbs/common";
|
|
|
|
export const IssuesHeader = observer(function IssuesHeader() {
|
|
// router
|
|
const router = useAppRouter();
|
|
const { workspaceSlug, projectId } = useParams();
|
|
// store hooks
|
|
const {
|
|
issues: { getGroupIssueCount },
|
|
} = useIssues(EIssuesStoreType.PROJECT);
|
|
// i18n
|
|
const { t } = useTranslation();
|
|
|
|
const { currentProjectDetails, loader } = useProject();
|
|
|
|
const { toggleCreateIssueModal } = useCommandPalette();
|
|
const { allowPermissions } = useUserPermissions();
|
|
const { isMobile } = usePlatformOS();
|
|
|
|
const SPACE_APP_URL = (SPACE_BASE_URL.trim() === "" ? window.location.origin : SPACE_BASE_URL) + SPACE_BASE_PATH;
|
|
const publishedURL = `${SPACE_APP_URL}/issues/${currentProjectDetails?.anchor}`;
|
|
|
|
const issuesCount = getGroupIssueCount(undefined, undefined, false);
|
|
const canUserCreateIssue = allowPermissions(
|
|
[EUserPermissions.ADMIN, EUserPermissions.MEMBER],
|
|
EUserPermissionsLevel.PROJECT
|
|
);
|
|
|
|
return (
|
|
<Header>
|
|
<Header.LeftItem>
|
|
<div className="flex items-center gap-2.5">
|
|
<Breadcrumbs onBack={() => router.back()} isLoading={loader === "init-loader"} className="flex-grow-0">
|
|
<CommonProjectBreadcrumbs workspaceSlug={workspaceSlug?.toString()} projectId={projectId?.toString()} />
|
|
<Breadcrumbs.Item
|
|
component={
|
|
<BreadcrumbLink
|
|
label="Work Items"
|
|
href={`/${workspaceSlug}/projects/${projectId}/issues/`}
|
|
icon={<WorkItemsIcon className="h-4 w-4 text-tertiary" />}
|
|
isLast
|
|
/>
|
|
}
|
|
isLast
|
|
/>
|
|
</Breadcrumbs>
|
|
{issuesCount && issuesCount > 0 ? (
|
|
<Tooltip
|
|
isMobile={isMobile}
|
|
tooltipContent={`There are ${issuesCount} ${issuesCount > 1 ? "work items" : "work item"} in this project`}
|
|
position="bottom"
|
|
>
|
|
<CountChip count={issuesCount} />
|
|
</Tooltip>
|
|
) : null}
|
|
</div>
|
|
{currentProjectDetails?.anchor ? (
|
|
<a
|
|
href={publishedURL}
|
|
className="group flex items-center gap-1.5 rounded-sm bg-accent-primary/10 px-2.5 py-1 text-11 font-medium text-accent-primary"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<Circle className="h-1.5 w-1.5 fill-accent-primary" strokeWidth={2} />
|
|
{t("workspace_projects.network.public.title")}
|
|
<NewTabIcon className="hidden h-3 w-3 group-hover:block" strokeWidth={2} />
|
|
</a>
|
|
) : (
|
|
<></>
|
|
)}
|
|
</Header.LeftItem>
|
|
<Header.RightItem>
|
|
<div className="hidden gap-2 md:flex">
|
|
<HeaderFilters
|
|
projectId={projectId}
|
|
currentProjectDetails={currentProjectDetails}
|
|
workspaceSlug={workspaceSlug}
|
|
canUserCreateIssue={canUserCreateIssue}
|
|
/>
|
|
</div>
|
|
{canUserCreateIssue && (
|
|
<Button
|
|
variant="primary"
|
|
size="lg"
|
|
onClick={() => {
|
|
toggleCreateIssueModal(true, EIssuesStoreType.PROJECT);
|
|
}}
|
|
data-ph-element={WORK_ITEM_TRACKER_ELEMENTS.HEADER_ADD_BUTTON.WORK_ITEMS}
|
|
>
|
|
<div className="block sm:hidden">{t("issue.label", { count: 1 })}</div>
|
|
<div className="hidden sm:block">{t("issue.add.label")}</div>
|
|
</Button>
|
|
)}
|
|
</Header.RightItem>
|
|
</Header>
|
|
);
|
|
});
|