mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3d7fe40035
* refactor: issue views and my issues * chore: update view dropdown options * refactor: render emoji function * refactor: api calss * fix: build errors * fix: fetch states only when dropdown is opened * chore: my issues dnd * fix: build errors * refactor: folder structure
192 lines
6.2 KiB
TypeScript
192 lines
6.2 KiB
TypeScript
import React, { useState } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
// icons
|
|
import { ArrowLeftIcon } from "@heroicons/react/24/outline";
|
|
import { CyclesIcon } from "components/icons";
|
|
// layouts
|
|
import { ProjectAuthorizationWrapper } from "layouts/auth-layout";
|
|
// contexts
|
|
import { IssueViewContextProvider } from "contexts/issue-view.context";
|
|
// components
|
|
import { ExistingIssuesListModal, IssuesFilterView, IssuesView } from "components/core";
|
|
import { CycleDetailsSidebar, TransferIssues, TransferIssuesModal } from "components/cycles";
|
|
// services
|
|
import issuesService from "services/issues.service";
|
|
import cycleServices from "services/cycles.service";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
import useUserAuth from "hooks/use-user-auth";
|
|
// components
|
|
import { AnalyticsProjectModal } from "components/analytics";
|
|
// ui
|
|
import { CustomMenu, SecondaryButton } from "components/ui";
|
|
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
|
|
// helpers
|
|
import { truncateText } from "helpers/string.helper";
|
|
import { getDateRangeStatus } from "helpers/date-time.helper";
|
|
// types
|
|
import { ISearchIssueResponse } from "types";
|
|
// fetch-keys
|
|
import { CYCLES_LIST, CYCLE_DETAILS } from "constants/fetch-keys";
|
|
|
|
const SingleCycle: React.FC = () => {
|
|
const [cycleIssuesListModal, setCycleIssuesListModal] = useState(false);
|
|
const [cycleSidebar, setCycleSidebar] = useState(true);
|
|
const [analyticsModal, setAnalyticsModal] = useState(false);
|
|
const [transferIssuesModal, setTransferIssuesModal] = useState(false);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, cycleId } = router.query;
|
|
|
|
const { user } = useUserAuth();
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const { data: cycles } = useSWR(
|
|
workspaceSlug && projectId ? CYCLES_LIST(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => cycleServices.getCyclesWithParams(workspaceSlug as string, projectId as string, "all")
|
|
: null
|
|
);
|
|
|
|
const { data: cycleDetails } = useSWR(
|
|
cycleId ? CYCLE_DETAILS(cycleId as string) : null,
|
|
workspaceSlug && projectId && cycleId
|
|
? () =>
|
|
cycleServices.getCycleDetails(
|
|
workspaceSlug as string,
|
|
projectId as string,
|
|
cycleId as string
|
|
)
|
|
: null
|
|
);
|
|
|
|
const cycleStatus =
|
|
cycleDetails?.start_date && cycleDetails?.end_date
|
|
? getDateRangeStatus(cycleDetails?.start_date, cycleDetails?.end_date)
|
|
: "draft";
|
|
|
|
const openIssuesListModal = () => {
|
|
setCycleIssuesListModal(true);
|
|
};
|
|
|
|
const handleAddIssuesToCycle = async (data: ISearchIssueResponse[]) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
const payload = {
|
|
issues: data.map((i) => i.id),
|
|
};
|
|
|
|
await issuesService
|
|
.addIssueToCycle(
|
|
workspaceSlug as string,
|
|
projectId as string,
|
|
cycleId as string,
|
|
payload,
|
|
user
|
|
)
|
|
.catch(() => {
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Selected issues could not be added to the cycle. Please try again.",
|
|
});
|
|
});
|
|
};
|
|
|
|
return (
|
|
<IssueViewContextProvider>
|
|
<ExistingIssuesListModal
|
|
isOpen={cycleIssuesListModal}
|
|
handleClose={() => setCycleIssuesListModal(false)}
|
|
searchParams={{ cycle: true }}
|
|
handleOnSubmit={handleAddIssuesToCycle}
|
|
/>
|
|
<ProjectAuthorizationWrapper
|
|
breadcrumbs={
|
|
<Breadcrumbs>
|
|
<BreadcrumbItem
|
|
title={`${cycleDetails?.project_detail.name ?? "Project"} Cycles`}
|
|
link={`/${workspaceSlug}/projects/${projectId}/cycles`}
|
|
/>
|
|
</Breadcrumbs>
|
|
}
|
|
left={
|
|
<CustomMenu
|
|
label={
|
|
<>
|
|
<CyclesIcon className="h-3 w-3" />
|
|
{cycleDetails?.name && truncateText(cycleDetails.name, 40)}
|
|
</>
|
|
}
|
|
className="ml-1.5"
|
|
width="auto"
|
|
>
|
|
{cycles?.map((cycle) => (
|
|
<CustomMenu.MenuItem
|
|
key={cycle.id}
|
|
renderAs="a"
|
|
href={`/${workspaceSlug}/projects/${projectId}/cycles/${cycle.id}`}
|
|
>
|
|
{truncateText(cycle.name, 40)}
|
|
</CustomMenu.MenuItem>
|
|
))}
|
|
</CustomMenu>
|
|
}
|
|
right={
|
|
<div className={`flex items-center gap-2 duration-300`}>
|
|
<IssuesFilterView />
|
|
<SecondaryButton
|
|
onClick={() => setAnalyticsModal(true)}
|
|
className="!py-1.5 font-normal rounded-md text-custom-text-200 hover:text-custom-text-100"
|
|
outline
|
|
>
|
|
Analytics
|
|
</SecondaryButton>
|
|
<button
|
|
type="button"
|
|
className={`grid h-7 w-7 place-items-center rounded p-1 outline-none duration-300 hover:bg-custom-background-90 ${
|
|
cycleSidebar ? "rotate-180" : ""
|
|
}`}
|
|
onClick={() => setCycleSidebar((prevData) => !prevData)}
|
|
>
|
|
<ArrowLeftIcon className="h-4 w-4" />
|
|
</button>
|
|
</div>
|
|
}
|
|
>
|
|
<TransferIssuesModal
|
|
handleClose={() => setTransferIssuesModal(false)}
|
|
isOpen={transferIssuesModal}
|
|
/>
|
|
<AnalyticsProjectModal isOpen={analyticsModal} onClose={() => setAnalyticsModal(false)} />
|
|
<div
|
|
className={`h-full flex flex-col ${cycleSidebar ? "mr-[24rem]" : ""} ${
|
|
analyticsModal ? "mr-[50%]" : ""
|
|
} duration-300`}
|
|
>
|
|
{cycleStatus === "completed" && (
|
|
<TransferIssues handleClick={() => setTransferIssuesModal(true)} />
|
|
)}
|
|
<IssuesView
|
|
openIssuesListModal={openIssuesListModal}
|
|
disableUserActions={cycleStatus === "completed" ?? false}
|
|
/>
|
|
</div>
|
|
<CycleDetailsSidebar
|
|
cycleStatus={cycleStatus}
|
|
cycle={cycleDetails}
|
|
isOpen={cycleSidebar}
|
|
isCompleted={cycleStatus === "completed" ?? false}
|
|
user={user}
|
|
/>
|
|
</ProjectAuthorizationWrapper>
|
|
</IssueViewContextProvider>
|
|
);
|
|
};
|
|
|
|
export default SingleCycle;
|