mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
269 lines
11 KiB
TypeScript
269 lines
11 KiB
TypeScript
// react
|
|
import React, { useEffect } from "react";
|
|
// swr
|
|
import useSWR, { mutate } from "swr";
|
|
// react-hook-form
|
|
import { Controller, useForm } from "react-hook-form";
|
|
// layouts
|
|
import SettingsLayout from "layouts/settings-layout";
|
|
// services
|
|
import projectService from "lib/services/project.service";
|
|
import workspaceService from "lib/services/workspace.service";
|
|
// hooks
|
|
import useToast from "lib/hooks/useToast";
|
|
import useUser from "lib/hooks/useUser";
|
|
// headless ui
|
|
import { Listbox, Transition } from "@headlessui/react";
|
|
// ui
|
|
import { Button } from "ui";
|
|
// icons
|
|
import { CheckIcon, ChevronDownIcon } from "@heroicons/react/24/outline";
|
|
// types
|
|
import { IProject, IWorkspace } from "types";
|
|
// fetch-keys
|
|
import { PROJECTS_LIST, PROJECT_DETAILS, WORKSPACE_MEMBERS } from "constants/fetch-keys";
|
|
|
|
const ControlSettings = () => {
|
|
const { activeWorkspace, activeProject } = useUser();
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const { data: projectDetails } = useSWR<IProject>(
|
|
activeWorkspace && activeProject ? PROJECT_DETAILS(activeProject.id) : null,
|
|
activeWorkspace && activeProject
|
|
? () => projectService.getProject(activeWorkspace.slug, activeProject.id)
|
|
: null
|
|
);
|
|
|
|
const { data: people } = useSWR(
|
|
activeWorkspace ? WORKSPACE_MEMBERS : null,
|
|
activeWorkspace ? () => workspaceService.workspaceMembers(activeWorkspace.slug) : null
|
|
);
|
|
|
|
const {
|
|
handleSubmit,
|
|
reset,
|
|
control,
|
|
formState: { isSubmitting },
|
|
} = useForm<IProject>({});
|
|
|
|
const onSubmit = async (formData: IProject) => {
|
|
if (!activeWorkspace || !activeProject) return;
|
|
const payload: Partial<IProject> = {
|
|
name: formData.name,
|
|
network: formData.network,
|
|
identifier: formData.identifier,
|
|
description: formData.description,
|
|
default_assignee: formData.default_assignee,
|
|
project_lead: formData.project_lead,
|
|
icon: formData.icon,
|
|
};
|
|
await projectService
|
|
.updateProject(activeWorkspace.slug, activeProject.id, payload)
|
|
.then((res) => {
|
|
mutate<IProject>(
|
|
PROJECT_DETAILS(activeProject.id),
|
|
(prevData) => ({ ...prevData, ...res }),
|
|
false
|
|
);
|
|
mutate<IProject[]>(
|
|
PROJECTS_LIST(activeWorkspace.slug),
|
|
(prevData) => {
|
|
const newData = prevData?.map((item) => {
|
|
if (item.id === res.id) {
|
|
return res;
|
|
}
|
|
return item;
|
|
});
|
|
return newData;
|
|
},
|
|
false
|
|
);
|
|
setToastAlert({
|
|
title: "Success",
|
|
type: "success",
|
|
message: "Project updated successfully",
|
|
});
|
|
})
|
|
.catch((err) => {
|
|
console.log(err);
|
|
});
|
|
};
|
|
|
|
useEffect(() => {
|
|
projectDetails &&
|
|
reset({
|
|
...projectDetails,
|
|
default_assignee: projectDetails.default_assignee?.id,
|
|
project_lead: projectDetails.project_lead?.id,
|
|
workspace: (projectDetails.workspace as IWorkspace).id,
|
|
});
|
|
}, [projectDetails, reset]);
|
|
|
|
return (
|
|
<SettingsLayout type="project" noHeader>
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
<div className="space-y-8">
|
|
<div>
|
|
<h3 className="text-3xl font-bold leading-6 text-gray-900">Control</h3>
|
|
<p className="mt-4 text-sm text-gray-500">Set the control for the project.</p>
|
|
</div>
|
|
<div className="grid grid-cols-2 gap-16">
|
|
<div>
|
|
<h4 className="text-md leading-6 text-gray-900 mb-1">Project Lead</h4>
|
|
<p className="text-sm text-gray-500 mb-3">Select the project leader.</p>
|
|
<Controller
|
|
control={control}
|
|
name="project_lead"
|
|
render={({ field: { onChange, value } }) => (
|
|
<Listbox value={value} onChange={onChange}>
|
|
{({ open }) => (
|
|
<>
|
|
<div className="relative">
|
|
<Listbox.Button className="relative w-full flex justify-between items-center gap-4 border border-gray-300 rounded-md shadow-sm p-3 text-left cursor-default focus:outline-none focus:ring-1 focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">
|
|
<span className="block truncate">
|
|
{people?.find((person) => person.member.id === value)?.member
|
|
.first_name ?? "Select Lead"}
|
|
</span>
|
|
<ChevronDownIcon className="h-5 w-5 text-gray-400" aria-hidden="true" />
|
|
</Listbox.Button>
|
|
|
|
<Transition
|
|
show={open}
|
|
as={React.Fragment}
|
|
leave="transition ease-in duration-100"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<Listbox.Options className="absolute z-20 mt-1 w-full bg-white shadow-lg max-h-60 rounded-md py-1 text-base ring-1 ring-black ring-opacity-5 overflow-auto focus:outline-none sm:text-sm">
|
|
{people?.map((person) => (
|
|
<Listbox.Option
|
|
key={person.id}
|
|
className={({ active }) =>
|
|
`${
|
|
active ? "bg-indigo-50" : ""
|
|
} text-gray-900 cursor-default select-none relative px-3 py-2`
|
|
}
|
|
value={person.member.id}
|
|
>
|
|
{({ selected, active }) => (
|
|
<>
|
|
<span
|
|
className={`${
|
|
selected ? "font-semibold" : "font-normal"
|
|
} block truncate`}
|
|
>
|
|
{person.member.first_name !== ""
|
|
? person.member.first_name
|
|
: person.member.email}
|
|
</span>
|
|
|
|
{selected ? (
|
|
<span
|
|
className={`absolute inset-y-0 right-0 flex items-center pr-4 ${
|
|
active ? "text-white" : "text-theme"
|
|
}`}
|
|
>
|
|
<CheckIcon className="h-5 w-5" aria-hidden="true" />
|
|
</span>
|
|
) : null}
|
|
</>
|
|
)}
|
|
</Listbox.Option>
|
|
))}
|
|
</Listbox.Options>
|
|
</Transition>
|
|
</div>
|
|
</>
|
|
)}
|
|
</Listbox>
|
|
)}
|
|
/>
|
|
</div>
|
|
<div>
|
|
<h4 className="text-md leading-6 text-gray-900 mb-1">Default Assignee</h4>
|
|
<p className="text-sm text-gray-500 mb-3">
|
|
Select the default assignee for the project.
|
|
</p>
|
|
<Controller
|
|
control={control}
|
|
name="default_assignee"
|
|
render={({ field: { value, onChange } }) => (
|
|
<Listbox value={value} onChange={onChange}>
|
|
{({ open }) => (
|
|
<>
|
|
<div className="relative">
|
|
<Listbox.Button className="relative w-full flex justify-between items-center gap-4 border border-gray-300 rounded-md shadow-sm p-3 text-left cursor-default focus:outline-none focus:ring-1 focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">
|
|
<span className="block truncate">
|
|
{people?.find((p) => p.member.id === value)?.member.first_name ??
|
|
"Select Default Assignee"}
|
|
</span>
|
|
<ChevronDownIcon className="h-5 w-5 text-gray-400" aria-hidden="true" />
|
|
</Listbox.Button>
|
|
|
|
<Transition
|
|
show={open}
|
|
as={React.Fragment}
|
|
leave="transition ease-in duration-100"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<Listbox.Options className="absolute z-20 mt-1 w-full bg-white shadow-lg max-h-60 rounded-md py-1 text-base ring-1 ring-black ring-opacity-5 overflow-auto focus:outline-none sm:text-sm">
|
|
{people?.map((person) => (
|
|
<Listbox.Option
|
|
key={person.id}
|
|
className={({ active }) =>
|
|
`${
|
|
active ? "bg-indigo-50" : ""
|
|
} text-gray-900 cursor-default select-none relative px-3 py-2`
|
|
}
|
|
value={person.member.id}
|
|
>
|
|
{({ selected, active }) => (
|
|
<>
|
|
<span
|
|
className={`${
|
|
selected ? "font-semibold" : "font-normal"
|
|
} block truncate`}
|
|
>
|
|
{person.member.first_name !== ""
|
|
? person.member.first_name
|
|
: person.member.email}
|
|
</span>
|
|
|
|
{selected ? (
|
|
<span
|
|
className={`absolute inset-y-0 right-0 flex items-center pr-4 ${
|
|
active ? "text-white" : "text-theme"
|
|
}`}
|
|
>
|
|
<CheckIcon className="h-5 w-5" aria-hidden="true" />
|
|
</span>
|
|
) : null}
|
|
</>
|
|
)}
|
|
</Listbox.Option>
|
|
))}
|
|
</Listbox.Options>
|
|
</Transition>
|
|
</div>
|
|
</>
|
|
)}
|
|
</Listbox>
|
|
)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<Button type="submit" disabled={isSubmitting}>
|
|
{isSubmitting ? "Updating Project..." : "Update Project"}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</SettingsLayout>
|
|
);
|
|
};
|
|
|
|
export default ControlSettings;
|