mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
e4f48d6878
* chore: emoji-picker-react package added * chore: emoji and emoji picker component added * chore: emoji picker custom style added * chore: migration of the emoji's * chore: migration changes * chore: project logo prop * chore: added logo props in the serializer * chore: removed unused keys * chore: implement emoji picker throughout the web app * style: emoji icon picker * chore: update project logo renderer in the space app * chore: migrations fixes --------- Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
97 lines
3.4 KiB
TypeScript
97 lines
3.4 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { useRouter } from "next/router";
|
|
import useSWR from "swr";
|
|
// hooks
|
|
import { PanelRight } from "lucide-react";
|
|
import { Breadcrumbs, LayersIcon } from "@plane/ui";
|
|
import { BreadcrumbLink } from "components/common";
|
|
import { SidebarHamburgerToggle } from "components/core/sidebar/sidebar-menu-hamburger-toggle";
|
|
import { ISSUE_DETAILS } from "constants/fetch-keys";
|
|
import { cn } from "helpers/common.helper";
|
|
import { useApplication, useProject } from "hooks/store";
|
|
// ui
|
|
// helpers
|
|
// services
|
|
import { IssueService } from "services/issue";
|
|
import { ProjectLogo } from "components/project";
|
|
// constants
|
|
// components
|
|
|
|
// services
|
|
const issueService = new IssueService();
|
|
|
|
export const ProjectIssueDetailsHeader: FC = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, issueId } = router.query;
|
|
// store hooks
|
|
const { currentProjectDetails, getProjectById } = useProject();
|
|
const { theme: themeStore } = useApplication();
|
|
|
|
const { data: issueDetails } = useSWR(
|
|
workspaceSlug && projectId && issueId ? ISSUE_DETAILS(issueId as string) : null,
|
|
workspaceSlug && projectId && issueId
|
|
? () => issueService.retrieve(workspaceSlug as string, projectId as string, issueId as string)
|
|
: null
|
|
);
|
|
|
|
const isSidebarCollapsed = themeStore.issueDetailSidebarCollapsed;
|
|
|
|
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 border-b border-custom-border-200 bg-custom-sidebar-background-100 p-4">
|
|
<div className="flex w-full flex-grow items-center gap-2 overflow-ellipsis whitespace-nowrap">
|
|
<SidebarHamburgerToggle />
|
|
<div>
|
|
<Breadcrumbs onBack={router.back}>
|
|
<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">
|
|
<ProjectLogo logo={currentProjectDetails?.logo_props} className="text-sm" />
|
|
</span>
|
|
)
|
|
}
|
|
/>
|
|
}
|
|
/>
|
|
|
|
<Breadcrumbs.BreadcrumbItem
|
|
type="text"
|
|
link={
|
|
<BreadcrumbLink
|
|
href={`/${workspaceSlug}/projects/${projectId}/issues`}
|
|
label="Issues"
|
|
icon={<LayersIcon className="h-4 w-4 text-custom-text-300" />}
|
|
/>
|
|
}
|
|
/>
|
|
|
|
<Breadcrumbs.BreadcrumbItem
|
|
type="text"
|
|
link={
|
|
<BreadcrumbLink
|
|
label={
|
|
`${getProjectById(issueDetails?.project_id || "")?.identifier}-${issueDetails?.sequence_id}` ??
|
|
"..."
|
|
}
|
|
/>
|
|
}
|
|
/>
|
|
</Breadcrumbs>
|
|
</div>
|
|
</div>
|
|
<button className="block md:hidden" onClick={() => themeStore.toggleIssueDetailSidebar()}>
|
|
<PanelRight
|
|
className={cn("w-4 h-4 ", !isSidebarCollapsed ? "text-custom-primary-100" : " text-custom-text-200")}
|
|
/>
|
|
</button>
|
|
</div>
|
|
);
|
|
});
|