forked from github/plane
061be85a5d
* fix: GET request changes * fix: filtering changes * feat: cycles and modules archive. * chore: disable fetching of cycle/ module details when clicked on the card in archives page. * chore: remove copy link button from archived modules/ cycles. * fix: archived cycle and module loading fliker issue. * chore: add validation to only archive completed cycles. * chore: add validation to only archive completed or cancelled module. * chore: archived issues/ cycles/ modules empty state update. --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
100 lines
3.3 KiB
TypeScript
100 lines
3.3 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { useRouter } from "next/router";
|
|
import useSWR from "swr";
|
|
// hooks
|
|
import { ArchiveIcon, Breadcrumbs, LayersIcon } from "@plane/ui";
|
|
import { BreadcrumbLink } from "@/components/common";
|
|
import { ProjectLogo } from "@/components/project";
|
|
import { ISSUE_DETAILS } from "@/constants/fetch-keys";
|
|
import { useProject } from "@/hooks/store";
|
|
// components
|
|
// ui
|
|
// types
|
|
import { IssueArchiveService } from "@/services/issue";
|
|
// constants
|
|
// services
|
|
// helpers
|
|
// components
|
|
|
|
const issueArchiveService = new IssueArchiveService();
|
|
|
|
export const ProjectArchivedIssueDetailsHeader: FC = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, archivedIssueId } = router.query;
|
|
// store hooks
|
|
const { currentProjectDetails } = useProject();
|
|
|
|
const { data: issueDetails } = useSWR(
|
|
workspaceSlug && projectId && archivedIssueId ? ISSUE_DETAILS(archivedIssueId as string) : null,
|
|
workspaceSlug && projectId && archivedIssueId
|
|
? () =>
|
|
issueArchiveService.retrieveArchivedIssue(
|
|
workspaceSlug as string,
|
|
projectId as string,
|
|
archivedIssueId as string
|
|
)
|
|
: null
|
|
);
|
|
|
|
return (
|
|
<div className="relative z-10 flex h-14 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>
|
|
<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">
|
|
<ProjectLogo logo={currentProjectDetails?.logo_props} className="text-sm" />
|
|
</span>
|
|
)
|
|
}
|
|
/>
|
|
}
|
|
/>
|
|
<Breadcrumbs.BreadcrumbItem
|
|
type="text"
|
|
link={
|
|
<BreadcrumbLink
|
|
href={`/${workspaceSlug}/projects/${projectId}/archives/issues`}
|
|
label="Archives"
|
|
icon={<ArchiveIcon className="h-4 w-4 text-custom-text-300" />}
|
|
/>
|
|
}
|
|
/>
|
|
<Breadcrumbs.BreadcrumbItem
|
|
type="text"
|
|
link={
|
|
<BreadcrumbLink
|
|
href={`/${workspaceSlug}/projects/${projectId}/archives/issues`}
|
|
label="Issues"
|
|
icon={<LayersIcon className="h-4 w-4 text-custom-text-300" />}
|
|
/>
|
|
}
|
|
/>
|
|
<Breadcrumbs.BreadcrumbItem
|
|
type="text"
|
|
link={
|
|
<BreadcrumbLink
|
|
label={
|
|
currentProjectDetails && issueDetails
|
|
? `${currentProjectDetails.identifier}-${issueDetails.sequence_id}`
|
|
: ""
|
|
}
|
|
/>
|
|
}
|
|
/>
|
|
</Breadcrumbs>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
});
|