2023-03-15 05:30:05 +00:00
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import { GetServerSidePropsContext } from "next";
|
|
|
|
|
|
|
|
import useSWR from "swr";
|
|
|
|
|
|
|
|
// lib
|
|
|
|
import { requiredAdmin, requiredAuth } from "lib/auth";
|
|
|
|
// services
|
|
|
|
import projectService from "services/project.service";
|
|
|
|
import viewsService from "services/views.service";
|
|
|
|
// layouts
|
|
|
|
import AppLayout from "layouts/app-layout";
|
2023-03-16 08:37:19 +00:00
|
|
|
// contexts
|
|
|
|
import { IssueViewContextProvider } from "contexts/issue-view.context";
|
2023-03-15 05:30:05 +00:00
|
|
|
// components
|
|
|
|
import { CreateUpdateViewModal, DeleteViewModal } from "components/views";
|
|
|
|
// ui
|
|
|
|
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
|
|
|
|
// types
|
|
|
|
import { UserAuth } from "types";
|
|
|
|
// fetch-keys
|
|
|
|
import { PROJECT_DETAILS, VIEW_DETAILS, VIEW_ISSUES } from "constants/fetch-keys";
|
2023-03-16 08:37:19 +00:00
|
|
|
import { IssuesFilterView, IssuesView } from "components/core";
|
|
|
|
import { HeaderButton } from "components/ui";
|
|
|
|
import { PlusIcon } from "@heroicons/react/24/outline";
|
2023-03-15 05:30:05 +00:00
|
|
|
|
|
|
|
const SingleView: React.FC<UserAuth> = (props) => {
|
|
|
|
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
|
|
|
|
);
|
|
|
|
|
|
|
|
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>
|
|
|
|
<AppLayout
|
|
|
|
breadcrumbs={
|
|
|
|
<Breadcrumbs>
|
|
|
|
<BreadcrumbItem
|
|
|
|
title={`${activeProject?.name ?? "Project"} Views`}
|
|
|
|
link={`/${workspaceSlug}/projects/${activeProject?.id}/cycles`}
|
|
|
|
/>
|
|
|
|
</Breadcrumbs>
|
|
|
|
}
|
|
|
|
right={
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<IssuesFilterView />
|
|
|
|
<HeaderButton
|
|
|
|
Icon={PlusIcon}
|
|
|
|
label="Add Issue"
|
|
|
|
onClick={() => {
|
|
|
|
const e = new KeyboardEvent("keydown", {
|
|
|
|
key: "c",
|
|
|
|
});
|
|
|
|
document.dispatchEvent(e);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<IssuesView userAuth={props} />
|
|
|
|
</AppLayout>
|
|
|
|
</IssueViewContextProvider>
|
2023-03-15 05:30:05 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const getServerSideProps = async (ctx: GetServerSidePropsContext) => {
|
|
|
|
const user = await requiredAuth(ctx.req?.headers.cookie);
|
|
|
|
|
|
|
|
const redirectAfterSignIn = ctx.resolvedUrl;
|
|
|
|
|
|
|
|
if (!user) {
|
|
|
|
return {
|
|
|
|
redirect: {
|
|
|
|
destination: `/signin?next=${redirectAfterSignIn}`,
|
|
|
|
permanent: false,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const projectId = ctx.query.projectId as string;
|
|
|
|
const workspaceSlug = ctx.query.workspaceSlug as string;
|
|
|
|
|
|
|
|
const memberDetail = await requiredAdmin(workspaceSlug, projectId, ctx.req?.headers.cookie);
|
|
|
|
|
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
isOwner: memberDetail?.role === 20,
|
|
|
|
isMember: memberDetail?.role === 15,
|
|
|
|
isViewer: memberDetail?.role === 10,
|
|
|
|
isGuest: memberDetail?.role === 5,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default SingleView;
|