mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
e1e9a5ed96
* dev: Helpers * dev: views * dev: Chart views Month, Year and Day * dev: Chart Workflow updates * update: scroll functionality implementation * update: data vaidation * update: date renders and issue filter in the month view * update: new date render month view * update: scroll enabled left in chart * update: Item render from the date it created. * update: width implementation in chat view * dev: chart render functionality in the gantt chart * update: month view fix * dev: chart render issues resolved * update: fixed allchat views * update: updated week view default values * update: integrated chart view in issues * update: grabble and sidebar logic impleemntation and integrated gantt in issues * update: Preview gantt chart in month view * fix: mutation in gantt chart after creating a new issue * chore: cycles and modules list gantt chart * update: Ui changes on gantt view * fix: gantt chart height, chore: remove link from issue --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
242 lines
8.3 KiB
TypeScript
242 lines
8.3 KiB
TypeScript
import React, { useEffect } from "react";
|
|
import dynamic from "next/dynamic";
|
|
// headless ui
|
|
import { Tab } from "@headlessui/react";
|
|
// hooks
|
|
import useLocalStorage from "hooks/use-local-storage";
|
|
// components
|
|
import {
|
|
ActiveCycleDetails,
|
|
CompletedCyclesListProps,
|
|
AllCyclesBoard,
|
|
AllCyclesList,
|
|
CyclesListGanttChartView,
|
|
} from "components/cycles";
|
|
// ui
|
|
import { EmptyState, Loader } from "components/ui";
|
|
// icons
|
|
import { ChartBarIcon, ListBulletIcon, Squares2X2Icon } from "@heroicons/react/24/outline";
|
|
import emptyCycle from "public/empty-state/empty-cycle.svg";
|
|
// types
|
|
import {
|
|
SelectCycleType,
|
|
ICycle,
|
|
CurrentAndUpcomingCyclesResponse,
|
|
DraftCyclesResponse,
|
|
} from "types";
|
|
|
|
type Props = {
|
|
setSelectedCycle: React.Dispatch<React.SetStateAction<SelectCycleType>>;
|
|
setCreateUpdateCycleModal: React.Dispatch<React.SetStateAction<boolean>>;
|
|
cyclesCompleteList: ICycle[] | undefined;
|
|
currentAndUpcomingCycles: CurrentAndUpcomingCyclesResponse | undefined;
|
|
draftCycles: DraftCyclesResponse | undefined;
|
|
};
|
|
|
|
export const CyclesView: React.FC<Props> = ({
|
|
setSelectedCycle,
|
|
setCreateUpdateCycleModal,
|
|
cyclesCompleteList,
|
|
currentAndUpcomingCycles,
|
|
draftCycles,
|
|
}) => {
|
|
const { storedValue: cycleTab, setValue: setCycleTab } = useLocalStorage("cycleTab", "All");
|
|
const { storedValue: cyclesView, setValue: setCyclesView } = useLocalStorage("cycleView", "list");
|
|
|
|
const currentTabValue = (tab: string | null) => {
|
|
switch (tab) {
|
|
case "All":
|
|
return 0;
|
|
case "Active":
|
|
return 1;
|
|
case "Upcoming":
|
|
return 2;
|
|
case "Completed":
|
|
return 3;
|
|
case "Drafts":
|
|
return 4;
|
|
default:
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
const CompletedCycles = dynamic<CompletedCyclesListProps>(
|
|
() => import("components/cycles").then((a) => a.CompletedCycles),
|
|
{
|
|
ssr: false,
|
|
loading: () => (
|
|
<Loader className="mb-5">
|
|
<Loader.Item height="12rem" width="100%" />
|
|
</Loader>
|
|
),
|
|
}
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<div className="flex gap-4 justify-between">
|
|
<h3 className="text-2xl font-semibold text-brand-base">Cycles</h3>
|
|
<div className="flex items-center gap-x-1">
|
|
<button
|
|
type="button"
|
|
className={`grid h-7 w-7 place-items-center rounded p-1 outline-none duration-300 hover:bg-brand-surface-2 ${
|
|
cyclesView === "list" ? "bg-brand-surface-2" : ""
|
|
}`}
|
|
onClick={() => setCyclesView("list")}
|
|
>
|
|
<ListBulletIcon className="h-4 w-4 text-brand-secondary" />
|
|
</button>
|
|
<button
|
|
type="button"
|
|
className={`grid h-7 w-7 place-items-center rounded p-1 outline-none duration-300 hover:bg-brand-surface-2 ${
|
|
cyclesView === "grid" ? "bg-brand-surface-2" : ""
|
|
}`}
|
|
onClick={() => setCyclesView("grid")}
|
|
>
|
|
<Squares2X2Icon className="h-4 w-4 text-brand-secondary" />
|
|
</button>
|
|
<button
|
|
type="button"
|
|
className={`grid h-7 w-7 place-items-center rounded p-1 outline-none duration-300 hover:bg-brand-surface-2 ${
|
|
cyclesView === "gantt_chart" ? "bg-brand-surface-2" : ""
|
|
}`}
|
|
onClick={() => setCyclesView("gantt_chart")}
|
|
>
|
|
<ChartBarIcon className="h-4 w-4 text-brand-secondary" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<Tab.Group
|
|
as={React.Fragment}
|
|
defaultIndex={currentTabValue(cycleTab)}
|
|
onChange={(i) => {
|
|
switch (i) {
|
|
case 0:
|
|
return setCycleTab("All");
|
|
case 1:
|
|
return setCycleTab("Active");
|
|
case 2:
|
|
return setCycleTab("Upcoming");
|
|
case 3:
|
|
return setCycleTab("Completed");
|
|
case 4:
|
|
return setCycleTab("Drafts");
|
|
|
|
default:
|
|
return setCycleTab("All");
|
|
}
|
|
}}
|
|
>
|
|
<div className="flex justify-between">
|
|
<Tab.List as="div" className="flex flex-wrap items-center justify-start gap-4 text-base">
|
|
{["All", "Active", "Upcoming", "Completed", "Drafts"].map((tab, index) => {
|
|
if (cyclesView === "gantt_chart" && (tab === "Active" || tab === "Drafts"))
|
|
return null;
|
|
|
|
return (
|
|
<Tab
|
|
key={index}
|
|
className={({ selected }) =>
|
|
`rounded-3xl border px-6 py-1 outline-none ${
|
|
selected
|
|
? "border-brand-accent bg-brand-accent text-white font-medium"
|
|
: "border-brand-base bg-brand-base hover:bg-brand-surface-2"
|
|
}`
|
|
}
|
|
>
|
|
{tab}
|
|
</Tab>
|
|
);
|
|
})}
|
|
</Tab.List>
|
|
</div>
|
|
<Tab.Panels as={React.Fragment}>
|
|
<Tab.Panel as="div" className="mt-7 space-y-5 h-full overflow-y-auto">
|
|
{cyclesView === "list" && (
|
|
<AllCyclesList
|
|
cycles={cyclesCompleteList}
|
|
setCreateUpdateCycleModal={setCreateUpdateCycleModal}
|
|
setSelectedCycle={setSelectedCycle}
|
|
type="current"
|
|
/>
|
|
)}
|
|
{cyclesView === "grid" && (
|
|
<AllCyclesBoard
|
|
cycles={cyclesCompleteList}
|
|
setCreateUpdateCycleModal={setCreateUpdateCycleModal}
|
|
setSelectedCycle={setSelectedCycle}
|
|
type="current"
|
|
/>
|
|
)}
|
|
{cyclesView === "gantt_chart" && (
|
|
<CyclesListGanttChartView cycles={cyclesCompleteList ?? []} />
|
|
)}
|
|
</Tab.Panel>
|
|
{cyclesView !== "gantt_chart" && (
|
|
<Tab.Panel as="div" className="mt-7 space-y-5">
|
|
{currentAndUpcomingCycles?.current_cycle?.[0] ? (
|
|
<ActiveCycleDetails cycle={currentAndUpcomingCycles?.current_cycle?.[0]} />
|
|
) : (
|
|
<EmptyState
|
|
type="cycle"
|
|
title="Create New Cycle"
|
|
description="Sprint more effectively with Cycles by confining your project to a fixed amount of time. Create new cycle now."
|
|
imgURL={emptyCycle}
|
|
/>
|
|
)}
|
|
</Tab.Panel>
|
|
)}
|
|
<Tab.Panel as="div" className="mt-7 space-y-5 h-full overflow-y-auto">
|
|
{cyclesView === "list" && (
|
|
<AllCyclesList
|
|
cycles={currentAndUpcomingCycles?.upcoming_cycle}
|
|
setCreateUpdateCycleModal={setCreateUpdateCycleModal}
|
|
setSelectedCycle={setSelectedCycle}
|
|
type="upcoming"
|
|
/>
|
|
)}
|
|
{cyclesView === "board" && (
|
|
<AllCyclesBoard
|
|
cycles={currentAndUpcomingCycles?.upcoming_cycle}
|
|
setCreateUpdateCycleModal={setCreateUpdateCycleModal}
|
|
setSelectedCycle={setSelectedCycle}
|
|
type="upcoming"
|
|
/>
|
|
)}
|
|
{cyclesView === "gantt_chart" && (
|
|
<CyclesListGanttChartView cycles={currentAndUpcomingCycles?.upcoming_cycle ?? []} />
|
|
)}
|
|
</Tab.Panel>
|
|
<Tab.Panel as="div" className="mt-7 space-y-5">
|
|
<CompletedCycles
|
|
cycleView={cyclesView ?? "list"}
|
|
setCreateUpdateCycleModal={setCreateUpdateCycleModal}
|
|
setSelectedCycle={setSelectedCycle}
|
|
/>
|
|
</Tab.Panel>
|
|
{cyclesView !== "gantt_chart" && (
|
|
<Tab.Panel as="div" className="mt-7 space-y-5">
|
|
{cyclesView === "list" && (
|
|
<AllCyclesList
|
|
cycles={draftCycles?.draft_cycles}
|
|
setCreateUpdateCycleModal={setCreateUpdateCycleModal}
|
|
setSelectedCycle={setSelectedCycle}
|
|
type="draft"
|
|
/>
|
|
)}
|
|
{cyclesView === "board" && (
|
|
<AllCyclesBoard
|
|
cycles={draftCycles?.draft_cycles}
|
|
setCreateUpdateCycleModal={setCreateUpdateCycleModal}
|
|
setSelectedCycle={setSelectedCycle}
|
|
type="draft"
|
|
/>
|
|
)}
|
|
</Tab.Panel>
|
|
)}
|
|
</Tab.Panels>
|
|
</Tab.Group>
|
|
</>
|
|
);
|
|
};
|