2023-02-08 04:43:07 +00:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
|
|
|
|
import useSWR, { mutate } from "swr";
|
|
|
|
|
|
|
|
// services
|
|
|
|
import projectService from "services/project.service";
|
|
|
|
// lib
|
|
|
|
import { requiredAdmin } from "lib/auth";
|
|
|
|
// layouts
|
|
|
|
import AppLayout from "layouts/app-layout";
|
|
|
|
// hooks
|
|
|
|
import useToast from "hooks/use-toast";
|
|
|
|
// ui
|
2023-03-17 05:10:38 +00:00
|
|
|
import { SecondaryButton } from "components/ui";
|
2023-02-08 04:43:07 +00:00
|
|
|
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
|
2023-03-17 05:10:38 +00:00
|
|
|
// icons
|
|
|
|
import { ContrastIcon, PeopleGroupIcon, ViewListIcon } from "components/icons";
|
2023-02-08 04:43:07 +00:00
|
|
|
// types
|
|
|
|
import { IProject, UserAuth } from "types";
|
2023-02-23 12:20:37 +00:00
|
|
|
import type { NextPage, GetServerSidePropsContext } from "next";
|
2023-02-08 04:43:07 +00:00
|
|
|
// fetch-keys
|
|
|
|
import { PROJECTS_LIST, PROJECT_DETAILS } from "constants/fetch-keys";
|
|
|
|
|
|
|
|
const FeaturesSettings: NextPage<UserAuth> = (props) => {
|
|
|
|
const router = useRouter();
|
|
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
|
|
|
|
const { data: projectDetails } = useSWR(
|
|
|
|
workspaceSlug && projectId ? PROJECT_DETAILS(projectId as string) : null,
|
|
|
|
workspaceSlug && projectId
|
|
|
|
? () => projectService.getProject(workspaceSlug as string, projectId as string)
|
|
|
|
: null
|
|
|
|
);
|
|
|
|
|
|
|
|
const handleSubmit = async (formData: Partial<IProject>) => {
|
|
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
|
|
|
|
mutate<IProject>(
|
|
|
|
PROJECT_DETAILS(projectId as string),
|
|
|
|
(prevData) => ({ ...(prevData as IProject), ...formData }),
|
|
|
|
false
|
|
|
|
);
|
|
|
|
|
|
|
|
mutate<IProject[]>(
|
|
|
|
PROJECTS_LIST(workspaceSlug as string),
|
|
|
|
(prevData) =>
|
|
|
|
prevData?.map((p) => {
|
|
|
|
if (p.id === projectId)
|
|
|
|
return {
|
|
|
|
...p,
|
|
|
|
...formData,
|
|
|
|
};
|
|
|
|
|
|
|
|
return p;
|
|
|
|
}),
|
|
|
|
false
|
|
|
|
);
|
|
|
|
|
|
|
|
await projectService
|
|
|
|
.updateProject(workspaceSlug as string, projectId as string, formData)
|
|
|
|
.then((res) => {
|
|
|
|
mutate(PROJECT_DETAILS(projectId as string));
|
|
|
|
mutate(PROJECTS_LIST(workspaceSlug as string));
|
|
|
|
|
|
|
|
setToastAlert({
|
|
|
|
title: "Success!",
|
|
|
|
type: "success",
|
|
|
|
message: "Project features updated successfully.",
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
console.error(err);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<AppLayout
|
|
|
|
memberType={props}
|
|
|
|
breadcrumbs={
|
|
|
|
<Breadcrumbs>
|
|
|
|
<BreadcrumbItem
|
|
|
|
title={`${projectDetails?.name ?? "Project"}`}
|
|
|
|
link={`/${workspaceSlug}/projects/${projectDetails?.id}/issues`}
|
|
|
|
/>
|
|
|
|
<BreadcrumbItem title="Features Settings" />
|
|
|
|
</Breadcrumbs>
|
|
|
|
}
|
2023-03-03 07:59:36 +00:00
|
|
|
settingsLayout
|
2023-02-08 04:43:07 +00:00
|
|
|
>
|
|
|
|
<section className="space-y-8">
|
2023-03-03 07:59:36 +00:00
|
|
|
<h3 className="text-2xl font-semibold">Features</h3>
|
|
|
|
<div className="space-y-5">
|
2023-03-16 12:44:07 +00:00
|
|
|
<div className="flex items-center justify-between gap-x-8 gap-y-2 rounded-[10px] border bg-white p-5">
|
2023-03-03 07:59:36 +00:00
|
|
|
<div className="flex items-start gap-3">
|
|
|
|
<ContrastIcon color="#3f76ff" width={28} height={28} className="flex-shrink-0" />
|
|
|
|
<div>
|
|
|
|
<h4 className="text-xl font-semibold">Cycles</h4>
|
|
|
|
<p className="text-gray-500">
|
|
|
|
Cycles are enabled for all the projects in this workspace. Access them from the
|
|
|
|
navigation bar.
|
|
|
|
</p>
|
|
|
|
</div>
|
2023-02-08 04:43:07 +00:00
|
|
|
</div>
|
2023-03-03 07:59:36 +00:00
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
className={`relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none ${
|
|
|
|
projectDetails?.cycle_view ? "bg-green-500" : "bg-gray-200"
|
|
|
|
}`}
|
|
|
|
role="switch"
|
|
|
|
aria-checked={projectDetails?.cycle_view}
|
|
|
|
onClick={() => handleSubmit({ cycle_view: !projectDetails?.cycle_view })}
|
|
|
|
>
|
|
|
|
<span className="sr-only">Use cycles</span>
|
|
|
|
<span
|
|
|
|
aria-hidden="true"
|
|
|
|
className={`inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out ${
|
|
|
|
projectDetails?.cycle_view ? "translate-x-5" : "translate-x-0"
|
2023-02-08 04:43:07 +00:00
|
|
|
}`}
|
2023-03-03 07:59:36 +00:00
|
|
|
/>
|
|
|
|
</button>
|
2023-02-08 04:43:07 +00:00
|
|
|
</div>
|
2023-03-16 12:44:07 +00:00
|
|
|
<div className="flex items-center justify-between gap-x-8 gap-y-2 rounded-[10px] border bg-white p-5">
|
2023-03-03 07:59:36 +00:00
|
|
|
<div className="flex items-start gap-3">
|
2023-03-13 18:08:43 +00:00
|
|
|
<PeopleGroupIcon color="#ff6b00" width={28} height={28} className="flex-shrink-0" />
|
2023-03-03 07:59:36 +00:00
|
|
|
<div>
|
|
|
|
<h4 className="-mt-1.5 text-xl font-semibold">Modules</h4>
|
|
|
|
<p className="text-gray-500">
|
|
|
|
Modules are enabled for all the projects in this workspace. Access it from the
|
|
|
|
navigation bar.
|
|
|
|
</p>
|
|
|
|
</div>
|
2023-02-08 04:43:07 +00:00
|
|
|
</div>
|
2023-03-03 07:59:36 +00:00
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
className={`relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none ${
|
|
|
|
projectDetails?.module_view ? "bg-green-500" : "bg-gray-200"
|
|
|
|
}`}
|
|
|
|
role="switch"
|
|
|
|
aria-checked={projectDetails?.module_view}
|
|
|
|
onClick={() => handleSubmit({ module_view: !projectDetails?.module_view })}
|
|
|
|
>
|
|
|
|
<span className="sr-only">Use cycles</span>
|
|
|
|
<span
|
|
|
|
aria-hidden="true"
|
|
|
|
className={`inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out ${
|
|
|
|
projectDetails?.module_view ? "translate-x-5" : "translate-x-0"
|
2023-02-08 04:43:07 +00:00
|
|
|
}`}
|
2023-03-03 07:59:36 +00:00
|
|
|
/>
|
|
|
|
</button>
|
2023-02-08 04:43:07 +00:00
|
|
|
</div>
|
2023-03-16 12:44:07 +00:00
|
|
|
<div className="flex items-center justify-between gap-x-8 gap-y-2 rounded-[10px] border bg-white p-5">
|
|
|
|
<div className="flex items-start gap-3">
|
|
|
|
<ViewListIcon color="#ff6b00" width={28} height={28} className="flex-shrink-0" />
|
|
|
|
<div>
|
|
|
|
<h4 className="-mt-1.5 text-xl font-semibold">Views</h4>
|
|
|
|
<p className="text-gray-500">
|
|
|
|
Modules are enabled for all the projects in this workspace. Access it from the
|
|
|
|
navigation bar.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
className={`relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none ${
|
|
|
|
projectDetails?.issue_views_view ? "bg-green-500" : "bg-gray-200"
|
|
|
|
}`}
|
|
|
|
role="switch"
|
|
|
|
aria-checked={projectDetails?.issue_views_view}
|
|
|
|
onClick={() => handleSubmit({ issue_views_view: !projectDetails?.issue_views_view })}
|
|
|
|
>
|
|
|
|
<span className="sr-only">Use views</span>
|
|
|
|
<span
|
|
|
|
aria-hidden="true"
|
|
|
|
className={`inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out ${
|
|
|
|
projectDetails?.issue_views_view ? "translate-x-5" : "translate-x-0"
|
|
|
|
}`}
|
|
|
|
/>
|
|
|
|
</button>
|
|
|
|
</div>
|
2023-02-08 04:43:07 +00:00
|
|
|
</div>
|
2023-03-03 07:59:36 +00:00
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<a href="https://plane.so/" target="_blank" rel="noreferrer">
|
2023-03-17 05:10:38 +00:00
|
|
|
<SecondaryButton outline>Plane is open-source, view Roadmap</SecondaryButton>
|
2023-03-03 07:59:36 +00:00
|
|
|
</a>
|
|
|
|
<a href="https://github.com/makeplane/plane" target="_blank" rel="noreferrer">
|
2023-03-17 05:10:38 +00:00
|
|
|
<SecondaryButton outline>Star us on GitHub</SecondaryButton>
|
2023-03-03 07:59:36 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
2023-02-08 04:43:07 +00:00
|
|
|
</section>
|
|
|
|
</AppLayout>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2023-02-23 12:20:37 +00:00
|
|
|
export const getServerSideProps = async (ctx: GetServerSidePropsContext) => {
|
2023-02-08 04:43:07 +00:00
|
|
|
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 FeaturesSettings;
|