mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
a36aa4d093
* fix add subgroup issue FED-1101 * fix subgroup by None assignee FED-1100 * fix grouping by asignee or labels FED-1096 * fix create view popup FED-1093 * fix subgroup exception in swimlanes * fix show sub issue filter FED-1102 * use Enums instead of numbers * fix Estimates setting permission for admin * disable access to project settings for viewers and guests * fix project unautorized flicker * add observer to estimates * add permissions to member list
65 lines
2.1 KiB
TypeScript
65 lines
2.1 KiB
TypeScript
import React, { ReactElement } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
// store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
import { ProjectSettingLayout } from "layouts/settings-layout";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
// components
|
|
import { AutoArchiveAutomation, AutoCloseAutomation } from "components/automation";
|
|
import { ProjectSettingHeader } from "components/headers";
|
|
// types
|
|
import { NextPageWithLayout } from "types/app";
|
|
import { IProject } from "types";
|
|
import { EUserWorkspaceRoles } from "constants/workspace";
|
|
|
|
const AutomationSettingsPage: NextPageWithLayout = observer(() => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
// store
|
|
const {
|
|
user: { currentProjectRole },
|
|
project: { currentProjectDetails: projectDetails, updateProject },
|
|
} = useMobxStore();
|
|
|
|
const handleChange = async (formData: Partial<IProject>) => {
|
|
if (!workspaceSlug || !projectId || !projectDetails) return;
|
|
|
|
await updateProject(workspaceSlug.toString(), projectId.toString(), formData).catch(() => {
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Something went wrong. Please try again.",
|
|
});
|
|
});
|
|
};
|
|
|
|
const isAdmin = currentProjectRole === EUserWorkspaceRoles.ADMIN;
|
|
|
|
return (
|
|
<section className={`pr-9 py-8 w-full overflow-y-auto ${isAdmin ? "" : "opacity-60"}`}>
|
|
<div className="flex items-center py-3.5 border-b border-custom-border-100">
|
|
<h3 className="text-xl font-medium">Automations</h3>
|
|
</div>
|
|
<AutoArchiveAutomation handleChange={handleChange} />
|
|
<AutoCloseAutomation handleChange={handleChange} />
|
|
</section>
|
|
);
|
|
});
|
|
|
|
AutomationSettingsPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<AppLayout header={<ProjectSettingHeader title="Automations Settings" />} withProjectWrapper>
|
|
<ProjectSettingLayout>{page}</ProjectSettingLayout>
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default AutomationSettingsPage;
|