mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
375 lines
14 KiB
TypeScript
375 lines
14 KiB
TypeScript
import React, { useEffect, useState } from "react";
|
|
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
|
|
import { mutate } from "swr";
|
|
|
|
// react-hook-form
|
|
import { Controller, useForm } from "react-hook-form";
|
|
// icons
|
|
import {
|
|
CalendarDaysIcon,
|
|
ChartPieIcon,
|
|
LinkIcon,
|
|
PlusIcon,
|
|
Squares2X2Icon,
|
|
TrashIcon,
|
|
} from "@heroicons/react/24/outline";
|
|
// progress-bar
|
|
import { CircularProgressbar } from "react-circular-progressbar";
|
|
|
|
import { Popover, Transition } from "@headlessui/react";
|
|
import DatePicker from "react-datepicker";
|
|
|
|
// services
|
|
import modulesService from "services/modules.service";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
// components
|
|
import {
|
|
DeleteModuleModal,
|
|
ModuleLinkModal,
|
|
SidebarLeadSelect,
|
|
SidebarMembersSelect,
|
|
} from "components/modules";
|
|
|
|
import "react-circular-progressbar/dist/styles.css";
|
|
// components
|
|
import { SidebarProgressStats } from "components/core";
|
|
// ui
|
|
import { CustomSelect, Loader } from "components/ui";
|
|
// helpers
|
|
import { renderShortNumericDateFormat, timeAgo } from "helpers/date-time.helper";
|
|
import { copyTextToClipboard } from "helpers/string.helper";
|
|
import { groupBy } from "helpers/array.helper";
|
|
// types
|
|
import { IIssue, IModule, ModuleIssueResponse } from "types";
|
|
// fetch-keys
|
|
import { MODULE_DETAILS } from "constants/fetch-keys";
|
|
import ProgressChart from "components/core/sidebar/progress-chart";
|
|
// constant
|
|
import { MODULE_STATUS } from "constants/module";
|
|
|
|
const defaultValues: Partial<IModule> = {
|
|
lead: "",
|
|
members_list: [],
|
|
start_date: null,
|
|
target_date: null,
|
|
status: null,
|
|
};
|
|
|
|
type Props = {
|
|
issues: IIssue[];
|
|
module?: IModule;
|
|
isOpen: boolean;
|
|
moduleIssues: ModuleIssueResponse[] | undefined;
|
|
};
|
|
|
|
export const ModuleDetailsSidebar: React.FC<Props> = ({ issues, module, isOpen, moduleIssues }) => {
|
|
const [moduleDeleteModal, setModuleDeleteModal] = useState(false);
|
|
const [moduleLinkModal, setModuleLinkModal] = useState(false);
|
|
const [startDateRange, setStartDateRange] = useState<Date | null>(new Date());
|
|
const [endDateRange, setEndDateRange] = useState<Date | null>(null);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, moduleId } = router.query;
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const { reset, watch, control } = useForm({
|
|
defaultValues,
|
|
});
|
|
|
|
const groupedIssues = {
|
|
backlog: [],
|
|
unstarted: [],
|
|
started: [],
|
|
cancelled: [],
|
|
completed: [],
|
|
...groupBy(moduleIssues ?? [], "issue_detail.state_detail.group"),
|
|
};
|
|
|
|
const submitChanges = (data: Partial<IModule>) => {
|
|
if (!workspaceSlug || !projectId || !moduleId) return;
|
|
|
|
mutate<IModule>(
|
|
MODULE_DETAILS(moduleId as string),
|
|
(prevData) => ({
|
|
...(prevData as IModule),
|
|
...data,
|
|
}),
|
|
false
|
|
);
|
|
|
|
modulesService
|
|
.patchModule(workspaceSlug as string, projectId as string, moduleId as string, data)
|
|
.then((res) => {
|
|
console.log(res);
|
|
mutate(MODULE_DETAILS(moduleId as string));
|
|
})
|
|
.catch((e) => {
|
|
console.log(e);
|
|
});
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (module)
|
|
reset({
|
|
...module,
|
|
members_list: module.members_list ?? module.members_detail?.map((m) => m.id),
|
|
});
|
|
}, [module, reset]);
|
|
|
|
const isStartValid = new Date(`${module?.start_date}`) <= new Date();
|
|
const isEndValid = new Date(`${module?.target_date}`) >= new Date(`${module?.start_date}`);
|
|
return (
|
|
<>
|
|
<ModuleLinkModal
|
|
isOpen={moduleLinkModal}
|
|
handleClose={() => setModuleLinkModal(false)}
|
|
module={module}
|
|
/>
|
|
<DeleteModuleModal
|
|
isOpen={moduleDeleteModal}
|
|
setIsOpen={setModuleDeleteModal}
|
|
data={module}
|
|
/>
|
|
<div
|
|
className={`fixed top-0 ${
|
|
isOpen ? "right-0" : "-right-[24rem]"
|
|
} z-20 h-full w-[24rem] overflow-y-auto border-l bg-gray-50 p-5 duration-300`}
|
|
>
|
|
{module ? (
|
|
<>
|
|
<div className="flex gap-1 text-sm my-2">
|
|
<div className="flex items-center ">
|
|
<Controller
|
|
control={control}
|
|
name="status"
|
|
render={({ field: { value } }) => (
|
|
<CustomSelect
|
|
label={
|
|
<span
|
|
className={`flex items-center gap-1 text-left capitalize p-1 text-xs h-full w-full text-gray-900`}
|
|
>
|
|
<Squares2X2Icon className="h-4 w-4 flex-shrink-0" />
|
|
{watch("status")}
|
|
</span>
|
|
}
|
|
value={value}
|
|
onChange={(value: any) => {
|
|
submitChanges({ status: value });
|
|
}}
|
|
>
|
|
{MODULE_STATUS.map((option) => (
|
|
<CustomSelect.Option key={option.value} value={option.value}>
|
|
<span className="text-xs">{option.label}</span>
|
|
</CustomSelect.Option>
|
|
))}
|
|
</CustomSelect>
|
|
)}
|
|
/>
|
|
</div>
|
|
<Popover className="flex justify-center items-center relative rounded-lg">
|
|
{({ open }) => (
|
|
<>
|
|
<Popover.Button
|
|
className={`group flex items-center gap-2 rounded-md border bg-transparent h-full w-full p-2 px-4 text-xs font-medium text-gray-900 hover:bg-gray-100 hover:text-gray-900 focus:outline-none ${
|
|
open ? "bg-gray-100" : ""
|
|
}`}
|
|
>
|
|
<CalendarDaysIcon className="h-4 w-4 flex-shrink-0" />
|
|
<span>
|
|
{renderShortNumericDateFormat(`${module?.start_date}`)
|
|
? renderShortNumericDateFormat(`${module?.start_date}`)
|
|
: "N/A"}{" "}
|
|
-{" "}
|
|
{renderShortNumericDateFormat(`${module?.target_date}`)
|
|
? renderShortNumericDateFormat(`${module?.target_date}`)
|
|
: "N/A"}
|
|
</span>
|
|
</Popover.Button>
|
|
|
|
<Transition
|
|
as={React.Fragment}
|
|
enter="transition ease-out duration-200"
|
|
enterFrom="opacity-0 translate-y-1"
|
|
enterTo="opacity-100 translate-y-0"
|
|
leave="transition ease-in duration-150"
|
|
leaveFrom="opacity-100 translate-y-0"
|
|
leaveTo="opacity-0 translate-y-1"
|
|
>
|
|
<Popover.Panel className="absolute top-10 left-0 z-20 transform overflow-hidden">
|
|
<DatePicker
|
|
selected={startDateRange}
|
|
onChange={(dates) => {
|
|
const [start, end] = dates;
|
|
submitChanges({
|
|
start_date: start?.toISOString(),
|
|
target_date: end?.toISOString(),
|
|
});
|
|
if (setStartDateRange) {
|
|
setStartDateRange(start);
|
|
}
|
|
if (setEndDateRange) {
|
|
setEndDateRange(end);
|
|
}
|
|
}}
|
|
startDate={startDateRange}
|
|
endDate={endDateRange}
|
|
selectsRange
|
|
inline
|
|
/>
|
|
</Popover.Panel>
|
|
</Transition>
|
|
</>
|
|
)}
|
|
</Popover>
|
|
</div>
|
|
<div className="flex items-center justify-between pb-3">
|
|
<h4 className="text-sm font-medium">{module.name}</h4>
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
<button
|
|
type="button"
|
|
className="rounded-md border p-2 shadow-sm duration-300 hover:bg-gray-100 focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500"
|
|
onClick={() =>
|
|
copyTextToClipboard(
|
|
`https://app.plane.so/${workspaceSlug}/projects/${projectId}/modules/${module.id}`
|
|
)
|
|
.then(() => {
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Module link copied to clipboard",
|
|
});
|
|
})
|
|
.catch(() => {
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Some error occurred",
|
|
});
|
|
})
|
|
}
|
|
>
|
|
<LinkIcon className="h-3.5 w-3.5" />
|
|
</button>
|
|
<button
|
|
type="button"
|
|
className="rounded-md border border-red-500 p-2 text-red-500 shadow-sm duration-300 hover:bg-red-50 focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500"
|
|
onClick={() => setModuleDeleteModal(true)}
|
|
>
|
|
<TrashIcon className="h-3.5 w-3.5" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div className="divide-y-2 divide-gray-100 text-xs">
|
|
<div className="py-1">
|
|
<SidebarLeadSelect
|
|
control={control}
|
|
submitChanges={submitChanges}
|
|
lead={module.lead_detail}
|
|
/>
|
|
<SidebarMembersSelect control={control} submitChanges={submitChanges} />
|
|
<div className="flex flex-wrap items-center py-2">
|
|
<div className="flex items-center gap-x-2 text-sm sm:basis-1/2">
|
|
<ChartPieIcon className="h-4 w-4 flex-shrink-0" />
|
|
<p>Progress</p>
|
|
</div>
|
|
<div className="flex items-center gap-2 sm:basis-1/2">
|
|
<div className="grid flex-shrink-0 place-items-center">
|
|
<span className="h-4 w-4">
|
|
<CircularProgressbar
|
|
value={groupedIssues.completed.length}
|
|
maxValue={moduleIssues?.length}
|
|
strokeWidth={10}
|
|
/>
|
|
</span>
|
|
</div>
|
|
{groupedIssues.completed.length}/{moduleIssues?.length}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="py-1">
|
|
<div className="flex items-center justify-between gap-2">
|
|
<h4>Links</h4>
|
|
<button
|
|
type="button"
|
|
className="grid h-7 w-7 place-items-center rounded p-1 outline-none duration-300 hover:bg-gray-100"
|
|
onClick={() => setModuleLinkModal(true)}
|
|
>
|
|
<PlusIcon className="h-4 w-4" />
|
|
</button>
|
|
</div>
|
|
<div className="mt-2 space-y-2">
|
|
{module.link_module && module.link_module.length > 0
|
|
? module.link_module.map((link) => (
|
|
<div key={link.id} className="group relative">
|
|
<div className="absolute top-1.5 right-1.5 z-10 opacity-0 group-hover:opacity-100">
|
|
<button
|
|
type="button"
|
|
className="grid h-7 w-7 place-items-center rounded bg-gray-100 p-1 text-red-500 outline-none duration-300 hover:bg-red-50"
|
|
onClick={() => {
|
|
const updatedLinks = module.link_module.filter(
|
|
(l) => l.id !== link.id
|
|
);
|
|
submitChanges({ links_list: updatedLinks });
|
|
}}
|
|
>
|
|
<TrashIcon className="h-4 w-4" />
|
|
</button>
|
|
</div>
|
|
<Link href={link.url} target="_blank">
|
|
<a className="group relative flex gap-2 rounded-md border bg-gray-100 p-2">
|
|
<div className="mt-0.5">
|
|
<LinkIcon className="h-3.5 w-3.5" />
|
|
</div>
|
|
<div>
|
|
<h5>{link.title}</h5>
|
|
<p className="mt-0.5 text-gray-500">
|
|
Added {timeAgo(link.created_at)} ago by{" "}
|
|
{link.created_by_detail.email}
|
|
</p>
|
|
</div>
|
|
</a>
|
|
</Link>
|
|
</div>
|
|
))
|
|
: null}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-col items-center justify-center w-full gap-2 ">
|
|
{isStartValid && isEndValid ? (
|
|
<ProgressChart
|
|
issues={issues}
|
|
start={module?.start_date ?? ""}
|
|
end={module?.target_date ?? ""}
|
|
/>
|
|
) : (
|
|
""
|
|
)}
|
|
{issues.length > 0 ? (
|
|
<SidebarProgressStats issues={issues} groupedIssues={groupedIssues} />
|
|
) : (
|
|
""
|
|
)}
|
|
</div>
|
|
</>
|
|
) : (
|
|
<Loader>
|
|
<div className="space-y-2">
|
|
<Loader.Item height="15px" width="50%" />
|
|
<Loader.Item height="15px" width="30%" />
|
|
</div>
|
|
<div className="mt-8 space-y-3">
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
</div>
|
|
</Loader>
|
|
)}
|
|
</div>
|
|
</>
|
|
);
|
|
};
|