2023-03-15 05:30:05 +00:00
|
|
|
import { useRouter } from "next/router";
|
|
|
|
|
|
|
|
import useSWR from "swr";
|
|
|
|
|
|
|
|
// services
|
|
|
|
import projectService from "services/project.service";
|
|
|
|
import viewsService from "services/views.service";
|
|
|
|
// layouts
|
2023-04-08 08:16:46 +00:00
|
|
|
import { ProjectAuthorizationWrapper } from "layouts/auth-layout";
|
2023-03-16 08:37:19 +00:00
|
|
|
// contexts
|
|
|
|
import { IssueViewContextProvider } from "contexts/issue-view.context";
|
2023-04-08 08:16:46 +00:00
|
|
|
// components
|
|
|
|
import { IssuesFilterView, IssuesView } from "components/core";
|
2023-03-15 05:30:05 +00:00
|
|
|
// ui
|
2023-03-30 08:23:03 +00:00
|
|
|
import { CustomMenu, PrimaryButton } from "components/ui";
|
2023-03-15 05:30:05 +00:00
|
|
|
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
|
2023-04-08 08:16:46 +00:00
|
|
|
// icons
|
2023-03-16 08:37:19 +00:00
|
|
|
import { PlusIcon } from "@heroicons/react/24/outline";
|
2023-03-23 19:41:42 +00:00
|
|
|
import { StackedLayersIcon } from "components/icons";
|
2023-04-08 08:16:46 +00:00
|
|
|
// helpers
|
|
|
|
import { truncateText } from "helpers/string.helper";
|
|
|
|
// fetch-keys
|
|
|
|
import { PROJECT_DETAILS, VIEWS_LIST, VIEW_DETAILS } from "constants/fetch-keys";
|
2023-03-15 05:30:05 +00:00
|
|
|
|
2023-04-08 08:16:46 +00:00
|
|
|
const SingleView: React.FC = () => {
|
2023-03-15 05:30:05 +00:00
|
|
|
const router = useRouter();
|
|
|
|
const { workspaceSlug, projectId, viewId } = router.query;
|
|
|
|
|
|
|
|
const { data: activeProject } = useSWR(
|
|
|
|
workspaceSlug && projectId ? PROJECT_DETAILS(projectId as string) : null,
|
|
|
|
workspaceSlug && projectId
|
|
|
|
? () => projectService.getProject(workspaceSlug as string, projectId as string)
|
|
|
|
: null
|
|
|
|
);
|
|
|
|
|
2023-03-23 19:41:42 +00:00
|
|
|
const { data: views } = useSWR(
|
|
|
|
workspaceSlug && projectId ? VIEWS_LIST(projectId as string) : null,
|
|
|
|
workspaceSlug && projectId
|
|
|
|
? () => viewsService.getViews(workspaceSlug as string, projectId as string)
|
|
|
|
: null
|
|
|
|
);
|
|
|
|
|
2023-03-15 05:30:05 +00:00
|
|
|
const { data: viewDetails } = useSWR(
|
|
|
|
workspaceSlug && projectId && viewId ? VIEW_DETAILS(viewId as string) : null,
|
|
|
|
workspaceSlug && projectId && viewId
|
|
|
|
? () =>
|
|
|
|
viewsService.getViewDetails(
|
|
|
|
workspaceSlug as string,
|
|
|
|
projectId as string,
|
|
|
|
viewId as string
|
|
|
|
)
|
|
|
|
: null
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
2023-03-16 08:37:19 +00:00
|
|
|
<IssueViewContextProvider>
|
2023-04-08 08:16:46 +00:00
|
|
|
<ProjectAuthorizationWrapper
|
2023-03-16 08:37:19 +00:00
|
|
|
breadcrumbs={
|
|
|
|
<Breadcrumbs>
|
|
|
|
<BreadcrumbItem
|
|
|
|
title={`${activeProject?.name ?? "Project"} Views`}
|
|
|
|
link={`/${workspaceSlug}/projects/${activeProject?.id}/cycles`}
|
|
|
|
/>
|
|
|
|
</Breadcrumbs>
|
|
|
|
}
|
2023-03-23 19:41:42 +00:00
|
|
|
left={
|
|
|
|
<CustomMenu
|
|
|
|
label={
|
|
|
|
<>
|
|
|
|
<StackedLayersIcon height={12} width={12} />
|
|
|
|
{viewDetails?.name && truncateText(viewDetails.name, 40)}
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
className="ml-1.5"
|
|
|
|
width="auto"
|
|
|
|
>
|
|
|
|
{views?.map((view) => (
|
|
|
|
<CustomMenu.MenuItem
|
|
|
|
key={view.id}
|
|
|
|
renderAs="a"
|
|
|
|
href={`/${workspaceSlug}/projects/${projectId}/views/${view.id}`}
|
|
|
|
>
|
|
|
|
{truncateText(view.name, 40)}
|
|
|
|
</CustomMenu.MenuItem>
|
|
|
|
))}
|
|
|
|
</CustomMenu>
|
|
|
|
}
|
2023-03-16 08:37:19 +00:00
|
|
|
right={
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<IssuesFilterView />
|
2023-03-30 08:23:03 +00:00
|
|
|
<PrimaryButton
|
|
|
|
className="flex items-center gap-2"
|
2023-03-16 08:37:19 +00:00
|
|
|
onClick={() => {
|
2023-03-30 08:23:03 +00:00
|
|
|
const e = new KeyboardEvent("keydown", { key: "c" });
|
2023-03-16 08:37:19 +00:00
|
|
|
document.dispatchEvent(e);
|
|
|
|
}}
|
2023-03-30 08:23:03 +00:00
|
|
|
>
|
2023-05-10 20:45:39 +00:00
|
|
|
<PlusIcon className="h-4 w-4" />
|
2023-03-30 08:23:03 +00:00
|
|
|
Add Issue
|
|
|
|
</PrimaryButton>
|
2023-03-16 08:37:19 +00:00
|
|
|
</div>
|
|
|
|
}
|
|
|
|
>
|
2023-07-04 17:43:07 +00:00
|
|
|
<div className="h-full w-full flex flex-col">
|
|
|
|
<IssuesView />
|
|
|
|
</div>
|
2023-04-08 08:16:46 +00:00
|
|
|
</ProjectAuthorizationWrapper>
|
2023-03-16 08:37:19 +00:00
|
|
|
</IssueViewContextProvider>
|
2023-03-15 05:30:05 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default SingleView;
|