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>
182 lines
5.7 KiB
TypeScript
182 lines
5.7 KiB
TypeScript
import React, { useState } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR, { mutate } 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 } from "components/cycles";
|
|
// services
|
|
import issuesService from "services/issues.service";
|
|
import cycleServices from "services/cycles.service";
|
|
import projectService from "services/project.service";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
// ui
|
|
import { CustomMenu } from "components/ui";
|
|
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
|
|
// helpers
|
|
import { truncateText } from "helpers/string.helper";
|
|
import { getDateRangeStatus } from "helpers/date-time.helper";
|
|
// fetch-keys
|
|
import {
|
|
CYCLE_ISSUES,
|
|
CYCLE_LIST,
|
|
PROJECT_DETAILS,
|
|
CYCLE_DETAILS,
|
|
PROJECT_ISSUES_LIST,
|
|
} from "constants/fetch-keys";
|
|
|
|
const SingleCycle: React.FC = () => {
|
|
const [cycleIssuesListModal, setCycleIssuesListModal] = useState(false);
|
|
const [cycleSidebar, setCycleSidebar] = useState(true);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, cycleId } = router.query;
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const { data: activeProject } = useSWR(
|
|
workspaceSlug && projectId ? PROJECT_DETAILS(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => projectService.getProject(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
const { data: cycles } = useSWR(
|
|
workspaceSlug && projectId ? CYCLE_LIST(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => cycleServices.getCycles(workspaceSlug as string, projectId as string)
|
|
: 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 { data: issues } = useSWR(
|
|
workspaceSlug && projectId
|
|
? PROJECT_ISSUES_LIST(workspaceSlug as string, projectId as string)
|
|
: null,
|
|
workspaceSlug && projectId
|
|
? () => issuesService.getIssues(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
const openIssuesListModal = () => {
|
|
setCycleIssuesListModal(true);
|
|
};
|
|
|
|
const handleAddIssuesToCycle = async (data: { issues: string[] }) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
await issuesService
|
|
.addIssueToCycle(workspaceSlug as string, projectId as string, cycleId as string, data)
|
|
.then(() => {
|
|
mutate(CYCLE_ISSUES(cycleId as string));
|
|
})
|
|
.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)}
|
|
issues={issues?.filter((i) => !i.cycle_id) ?? []}
|
|
handleOnSubmit={handleAddIssuesToCycle}
|
|
/>
|
|
<ProjectAuthorizationWrapper
|
|
breadcrumbs={
|
|
<Breadcrumbs>
|
|
<BreadcrumbItem
|
|
title={`${activeProject?.name ?? "Project"} Cycles`}
|
|
link={`/${workspaceSlug}/projects/${activeProject?.id}/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/${activeProject?.id}/cycles/${cycle.id}`}
|
|
>
|
|
{truncateText(cycle.name, 40)}
|
|
</CustomMenu.MenuItem>
|
|
))}
|
|
</CustomMenu>
|
|
}
|
|
right={
|
|
<div
|
|
className={`flex items-center gap-2 ${cycleSidebar ? "mr-[24rem]" : ""} duration-300`}
|
|
>
|
|
<IssuesFilterView />
|
|
<button
|
|
type="button"
|
|
className={`grid h-7 w-7 place-items-center rounded p-1 outline-none duration-300 hover:bg-brand-surface-1 ${
|
|
cycleSidebar ? "rotate-180" : ""
|
|
}`}
|
|
onClick={() => setCycleSidebar((prevData) => !prevData)}
|
|
>
|
|
<ArrowLeftIcon className="h-4 w-4" />
|
|
</button>
|
|
</div>
|
|
}
|
|
>
|
|
<div className={`h-full ${cycleSidebar ? "mr-[24rem]" : ""} duration-300`}>
|
|
<IssuesView
|
|
type="cycle"
|
|
openIssuesListModal={openIssuesListModal}
|
|
isCompleted={cycleStatus === "completed" ?? false}
|
|
/>
|
|
</div>
|
|
<CycleDetailsSidebar
|
|
cycleStatus={cycleStatus}
|
|
cycle={cycleDetails}
|
|
isOpen={cycleSidebar}
|
|
isCompleted={cycleStatus === "completed" ?? false}
|
|
/>
|
|
</ProjectAuthorizationWrapper>
|
|
</IssueViewContextProvider>
|
|
);
|
|
};
|
|
|
|
export default SingleCycle;
|