mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
c9cbca5ec8
* chore: issue archive services and types added * chore: project type and constant updated * feat: auto-close and auto-archive feature added * feat: implement rendering of archived issues * feat: implemented rendering of only list view for archived issues , chore: update types and services * feat: implemented archive issue detail page and unarchive issue functionality , chore: refactor code * feat: activity for issue archive and issue restore added * fix: redirection and delete fix * fix: merge conflict * fix: restore issue redirection fix * fix: disable modification of issue properties for archived issues, style: disable properties styling * fix: hide empty group, switch to list view on redirct to archived issues * fix: remove unnecessary header buttons for archived issue * fix: auto-close dropdown fix
82 lines
2.4 KiB
TypeScript
82 lines
2.4 KiB
TypeScript
import React from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import { mutate } from "swr";
|
|
|
|
// services
|
|
import projectService from "services/project.service";
|
|
// layouts
|
|
import { ProjectAuthorizationWrapper } from "layouts/auth-layout";
|
|
// hooks
|
|
import useUserAuth from "hooks/use-user-auth";
|
|
import useProjectDetails from "hooks/use-project-details";
|
|
import useToast from "hooks/use-toast";
|
|
// components
|
|
import { SettingsHeader } from "components/project";
|
|
import { AutoArchiveAutomation, AutoCloseAutomation } from "components/automation";
|
|
// ui
|
|
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
|
|
// types
|
|
import type { NextPage } from "next";
|
|
import { IProject } from "types";
|
|
// constant
|
|
import { PROJECT_DETAILS } from "constants/fetch-keys";
|
|
|
|
const AutomationsSettings: NextPage = () => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { user } = useUserAuth();
|
|
const { setToastAlert } = useToast();
|
|
|
|
const { projectDetails } = useProjectDetails();
|
|
|
|
const handleChange = async (formData: Partial<IProject>) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
mutate<IProject>(
|
|
PROJECT_DETAILS(projectId as string),
|
|
(prevData) => ({ ...(prevData as IProject), ...formData }),
|
|
false
|
|
);
|
|
|
|
await projectService
|
|
.updateProject(workspaceSlug as string, projectId as string, formData, user)
|
|
.then(() => {
|
|
mutate(PROJECT_DETAILS(projectId as string));
|
|
})
|
|
.catch(() => {
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Something went wrong. Please try again.",
|
|
});
|
|
});
|
|
};
|
|
|
|
return (
|
|
<ProjectAuthorizationWrapper
|
|
breadcrumbs={
|
|
<Breadcrumbs>
|
|
<BreadcrumbItem
|
|
title={`${projectDetails?.name ?? "Project"}`}
|
|
link={`/${workspaceSlug}/projects/${projectDetails?.id}/issues`}
|
|
/>
|
|
<BreadcrumbItem title="Automations Settings" />
|
|
</Breadcrumbs>
|
|
}
|
|
>
|
|
<div className="p-8">
|
|
<SettingsHeader />
|
|
<section className="space-y-5">
|
|
<AutoCloseAutomation projectDetails={projectDetails} handleChange={handleChange} />
|
|
<AutoArchiveAutomation projectDetails={projectDetails} handleChange={handleChange} />
|
|
</section>
|
|
</div>
|
|
</ProjectAuthorizationWrapper>
|
|
);
|
|
};
|
|
|
|
export default AutomationsSettings;
|