mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3c2f5d12ed
* chore: add next theme and initial setup * chore: add dark mode colors to layouts * chore: user general setting page theming * chore: dashboard theming * chore: project page theming * chore: workspace setting page theming * chore: my issue page theming * chore: cmdk theming * chore: change hardcode bg and text color to theme * chore: change color name according to the design * style: fix card in the dashboard * style: fix merge conflict design issues * style: add light high contrast and dark high contrast * style: fix cmd k menu color and selection * feat: change theme from cmdk menu * chore: add multiple theme field to custom theme * chore: removed custom theming * fix: build error --------- Co-authored-by: Saheb Giri <iamsahebgiri@gmail.com>
240 lines
9.1 KiB
TypeScript
240 lines
9.1 KiB
TypeScript
import React, { useEffect } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
import Image from "next/image";
|
|
|
|
import useSWR, { mutate } from "swr";
|
|
|
|
import { Controller, useForm } from "react-hook-form";
|
|
// layouts
|
|
import { ProjectAuthorizationWrapper } from "layouts/auth-layout";
|
|
// services
|
|
import projectService from "services/project.service";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
// ui
|
|
import { CustomSelect, Loader, SecondaryButton } from "components/ui";
|
|
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
|
|
// types
|
|
import { IProject, IWorkspace } from "types";
|
|
import type { NextPage } from "next";
|
|
// fetch-keys
|
|
import { PROJECTS_LIST, PROJECT_DETAILS, PROJECT_MEMBERS } from "constants/fetch-keys";
|
|
|
|
const defaultValues: Partial<IProject> = {
|
|
project_lead: null,
|
|
default_assignee: null,
|
|
};
|
|
|
|
const ControlSettings: NextPage = () => {
|
|
const { setToastAlert } = useToast();
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { data: projectDetails } = useSWR<IProject>(
|
|
workspaceSlug && projectId ? PROJECT_DETAILS(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => projectService.getProject(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
const { data: people } = useSWR(
|
|
workspaceSlug && projectId ? PROJECT_MEMBERS(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => projectService.projectMembers(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
const {
|
|
handleSubmit,
|
|
reset,
|
|
control,
|
|
formState: { isSubmitting },
|
|
} = useForm<IProject>({ defaultValues });
|
|
|
|
useEffect(() => {
|
|
if (projectDetails)
|
|
reset({
|
|
...projectDetails,
|
|
default_assignee: projectDetails.default_assignee?.id ?? projectDetails.default_assignee,
|
|
project_lead: projectDetails.project_lead?.id ?? projectDetails.project_lead,
|
|
workspace: (projectDetails.workspace as IWorkspace).id,
|
|
});
|
|
}, [projectDetails, reset]);
|
|
|
|
const onSubmit = async (formData: IProject) => {
|
|
if (!workspaceSlug || !projectId) 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(workspaceSlug as string, projectId as string, payload)
|
|
.then((res) => {
|
|
mutate(PROJECT_DETAILS(projectId as string));
|
|
mutate(PROJECTS_LIST(workspaceSlug as string));
|
|
|
|
setToastAlert({
|
|
title: "Success",
|
|
type: "success",
|
|
message: "Project updated successfully",
|
|
});
|
|
})
|
|
.catch((err) => {
|
|
console.log(err);
|
|
});
|
|
};
|
|
|
|
return (
|
|
<ProjectAuthorizationWrapper
|
|
breadcrumbs={
|
|
<Breadcrumbs>
|
|
<BreadcrumbItem
|
|
title={`${projectDetails?.name ?? "Project"}`}
|
|
link={`/${workspaceSlug}/projects/${projectId}/issues`}
|
|
/>
|
|
<BreadcrumbItem title="Control Settings" />
|
|
</Breadcrumbs>
|
|
}
|
|
>
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
<div className="space-y-8 sm:space-y-12">
|
|
<div className="grid grid-cols-12 items-start gap-4 sm:gap-16">
|
|
<div className="col-span-12 sm:col-span-6">
|
|
<h4 className="text-xl font-semibold">Project Lead</h4>
|
|
<p className="text-brand-secondary">Select the project leader.</p>
|
|
</div>
|
|
<div className="col-span-12 sm:col-span-6">
|
|
{projectDetails ? (
|
|
<Controller
|
|
name="project_lead"
|
|
control={control}
|
|
render={({ field }) => (
|
|
<CustomSelect
|
|
{...field}
|
|
label={
|
|
people?.find((person) => person.member.id === field.value)?.member
|
|
.first_name ?? "Select Lead"
|
|
}
|
|
width="w-full"
|
|
input
|
|
>
|
|
{people?.map((person) => (
|
|
<CustomSelect.Option
|
|
key={person.member.id}
|
|
value={person.member.id}
|
|
className="flex items-center gap-2"
|
|
>
|
|
<div className="flex items-center gap-2">
|
|
{person.member.avatar && person.member.avatar !== "" ? (
|
|
<div className="relative h-4 w-4">
|
|
<Image
|
|
src={person.member.avatar}
|
|
alt="avatar"
|
|
className="rounded-full"
|
|
layout="fill"
|
|
objectFit="cover"
|
|
/>
|
|
</div>
|
|
) : (
|
|
<div className="grid h-4 w-4 flex-shrink-0 place-items-center rounded-full bg-gray-700 capitalize text-white">
|
|
{person.member.first_name && person.member.first_name !== ""
|
|
? person.member.first_name.charAt(0)
|
|
: person.member.email.charAt(0)}
|
|
</div>
|
|
)}
|
|
{person.member.first_name !== ""
|
|
? person.member.first_name
|
|
: person.member.email}
|
|
</div>
|
|
</CustomSelect.Option>
|
|
))}
|
|
</CustomSelect>
|
|
)}
|
|
/>
|
|
) : (
|
|
<Loader className="h-9 w-full">
|
|
<Loader.Item width="100%" height="100%" />
|
|
</Loader>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<div className="grid grid-cols-12 items-start gap-4 sm:gap-16">
|
|
<div className="col-span-12 sm:col-span-6">
|
|
<h4 className="text-xl font-semibold">Default Assignee</h4>
|
|
<p className="text-brand-secondary">Select the default assignee for the project.</p>
|
|
</div>
|
|
<div className="col-span-12 sm:col-span-6">
|
|
{projectDetails ? (
|
|
<Controller
|
|
name="default_assignee"
|
|
control={control}
|
|
render={({ field }) => (
|
|
<CustomSelect
|
|
{...field}
|
|
label={
|
|
people?.find((p) => p.member.id === field.value)?.member.first_name ??
|
|
"Select Default Assignee"
|
|
}
|
|
width="w-full"
|
|
input
|
|
>
|
|
{people?.map((person) => (
|
|
<CustomSelect.Option
|
|
key={person.member.id}
|
|
value={person.member.id}
|
|
className="flex items-center gap-2"
|
|
>
|
|
<div className="flex items-center gap-2">
|
|
{person.member.avatar && person.member.avatar !== "" ? (
|
|
<div className="relative h-4 w-4">
|
|
<Image
|
|
src={person.member.avatar}
|
|
alt="avatar"
|
|
className="rounded-full"
|
|
layout="fill"
|
|
objectFit="cover"
|
|
/>
|
|
</div>
|
|
) : (
|
|
<div className="grid h-4 w-4 flex-shrink-0 place-items-center rounded-full bg-gray-700 capitalize text-white">
|
|
{person.member.first_name && person.member.first_name !== ""
|
|
? person.member.first_name.charAt(0)
|
|
: person.member.email.charAt(0)}
|
|
</div>
|
|
)}
|
|
{person.member.first_name !== ""
|
|
? person.member.first_name
|
|
: person.member.email}
|
|
</div>
|
|
</CustomSelect.Option>
|
|
))}
|
|
</CustomSelect>
|
|
)}
|
|
/>
|
|
) : (
|
|
<Loader className="h-9 w-full">
|
|
<Loader.Item width="100%" height="100%" />
|
|
</Loader>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<div className="sm:text-right">
|
|
<SecondaryButton type="submit" loading={isSubmitting}>
|
|
{isSubmitting ? "Updating Project..." : "Update Project"}
|
|
</SecondaryButton>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</ProjectAuthorizationWrapper>
|
|
);
|
|
};
|
|
|
|
export default ControlSettings;
|