2023-03-16 08:37:19 +00:00
|
|
|
import React, { useState } from "react";
|
|
|
|
|
|
|
|
import Link from "next/link";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
|
|
|
|
import useSWR from "swr";
|
|
|
|
|
|
|
|
// lib
|
|
|
|
import { requiredAuth } from "lib/auth";
|
|
|
|
|
|
|
|
// services
|
|
|
|
import viewsService from "services/views.service";
|
|
|
|
import projectService from "services/project.service";
|
|
|
|
|
|
|
|
// layouts
|
|
|
|
import AppLayout from "layouts/app-layout";
|
|
|
|
// ui
|
|
|
|
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
|
|
|
|
// icons
|
2023-03-22 09:17:13 +00:00
|
|
|
import { TrashIcon } from "@heroicons/react/24/outline";
|
|
|
|
// image
|
|
|
|
import emptyView from "public/empty-state/empty-view.svg";
|
2023-03-16 08:37:19 +00:00
|
|
|
// fetching keys
|
|
|
|
import { PROJECT_DETAILS, VIEWS_LIST } from "constants/fetch-keys";
|
|
|
|
// components
|
2023-03-22 09:17:13 +00:00
|
|
|
import { CustomMenu, PrimaryButton, Loader, EmptyState } from "components/ui";
|
2023-03-18 06:04:29 +00:00
|
|
|
import { DeleteViewModal, CreateUpdateViewModal } from "components/views";
|
2023-03-16 08:37:19 +00:00
|
|
|
// types
|
|
|
|
import { IView } from "types";
|
|
|
|
import type { NextPage, GetServerSidePropsContext } from "next";
|
|
|
|
|
|
|
|
const ProjectViews: NextPage = () => {
|
2023-03-18 06:04:29 +00:00
|
|
|
const [isCreateViewModalOpen, setIsCreateViewModalOpen] = useState(false);
|
2023-03-16 08:37:19 +00:00
|
|
|
const [selectedView, setSelectedView] = useState<IView | null>(null);
|
|
|
|
|
|
|
|
const {
|
|
|
|
query: { workspaceSlug, projectId },
|
|
|
|
} = useRouter();
|
|
|
|
|
|
|
|
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: views } = useSWR(
|
|
|
|
workspaceSlug && projectId ? VIEWS_LIST(projectId as string) : null,
|
|
|
|
workspaceSlug && projectId
|
|
|
|
? () => viewsService.getViews(workspaceSlug as string, projectId as string)
|
|
|
|
: null
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<AppLayout
|
|
|
|
meta={{
|
|
|
|
title: "Plane - Views",
|
|
|
|
}}
|
|
|
|
breadcrumbs={
|
|
|
|
<Breadcrumbs>
|
|
|
|
<BreadcrumbItem title="Projects" link={`/${workspaceSlug}/projects`} />
|
|
|
|
<BreadcrumbItem title={`${activeProject?.name ?? "Project"} Cycles`} />
|
|
|
|
</Breadcrumbs>
|
|
|
|
}
|
2023-03-18 06:04:29 +00:00
|
|
|
right={
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<PrimaryButton type="button" onClick={() => setIsCreateViewModalOpen(true)}>
|
|
|
|
Create View
|
|
|
|
</PrimaryButton>
|
|
|
|
</div>
|
|
|
|
}
|
2023-03-16 08:37:19 +00:00
|
|
|
>
|
2023-03-18 06:04:29 +00:00
|
|
|
<CreateUpdateViewModal
|
|
|
|
isOpen={isCreateViewModalOpen}
|
|
|
|
handleClose={() => setIsCreateViewModalOpen(false)}
|
|
|
|
/>
|
2023-03-16 08:37:19 +00:00
|
|
|
<DeleteViewModal
|
|
|
|
isOpen={!!selectedView}
|
|
|
|
data={selectedView}
|
|
|
|
onClose={() => setSelectedView(null)}
|
|
|
|
onSuccess={() => setSelectedView(null)}
|
|
|
|
/>
|
2023-03-22 09:17:13 +00:00
|
|
|
{views ? (
|
|
|
|
views.length > 0 ? (
|
|
|
|
<div className="rounded-md border">
|
|
|
|
{views.map((view) => (
|
|
|
|
<div
|
|
|
|
className="flex items-center justify-between rounded-md border-b bg-white p-4"
|
|
|
|
key={view.id}
|
|
|
|
>
|
|
|
|
<Link href={`/${workspaceSlug}/projects/${projectId}/views/${view.id}`}>
|
|
|
|
<a>{view.name}</a>
|
|
|
|
</Link>
|
|
|
|
<CustomMenu width="auto" verticalEllipsis>
|
|
|
|
<CustomMenu.MenuItem
|
|
|
|
onClick={() => {
|
|
|
|
setSelectedView(view);
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<span className="flex items-center justify-start gap-2 text-gray-800">
|
|
|
|
<TrashIcon className="h-4 w-4" />
|
|
|
|
<span>Delete</span>
|
|
|
|
</span>
|
|
|
|
</CustomMenu.MenuItem>
|
|
|
|
</CustomMenu>
|
|
|
|
</div>
|
|
|
|
))}
|
2023-03-16 08:37:19 +00:00
|
|
|
</div>
|
2023-03-22 09:17:13 +00:00
|
|
|
) : (
|
|
|
|
<EmptyState
|
|
|
|
type="view"
|
|
|
|
title="Create New View"
|
|
|
|
description="Views are smaller, focused projects that help you group and organize issues within a specific time frame."
|
|
|
|
imgURL={emptyView}
|
|
|
|
action={() => setIsCreateViewModalOpen(true)}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
) : (
|
|
|
|
<Loader>
|
|
|
|
<Loader.Item height="30px" />
|
|
|
|
<Loader.Item height="30px" />
|
|
|
|
<Loader.Item height="30px" />
|
|
|
|
</Loader>
|
|
|
|
)}
|
2023-03-16 08:37:19 +00:00
|
|
|
</AppLayout>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
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,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
user,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ProjectViews;
|