mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
55 lines
1.6 KiB
TypeScript
55 lines
1.6 KiB
TypeScript
|
import { observer } from "mobx-react-lite";
|
||
|
|
||
|
// mobx store
|
||
|
import { useMobxStore } from "lib/mobx/store-provider";
|
||
|
// components
|
||
|
import { CalendarHeader, CalendarWeekDays, CalendarWeekHeader } from "components/issues";
|
||
|
// ui
|
||
|
import { Spinner } from "@plane/ui";
|
||
|
// types
|
||
|
import { ICalendarWeek } from "./types";
|
||
|
import { IIssueGroupedStructure } from "store/issue";
|
||
|
|
||
|
type Props = {
|
||
|
issues: IIssueGroupedStructure | null;
|
||
|
layout: "month" | "week" | undefined;
|
||
|
};
|
||
|
|
||
|
export const CalendarChart: React.FC<Props> = observer((props) => {
|
||
|
const { issues, layout } = props;
|
||
|
|
||
|
const { calendar: calendarStore } = useMobxStore();
|
||
|
|
||
|
const calendarPayload = calendarStore.calendarPayload;
|
||
|
|
||
|
const allWeeksOfActiveMonth = calendarStore.allWeeksOfActiveMonth;
|
||
|
|
||
|
if (!calendarPayload)
|
||
|
return (
|
||
|
<div className="h-full w-full grid place-items-center">
|
||
|
<Spinner />
|
||
|
</div>
|
||
|
);
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<div className="h-full w-full flex flex-col overflow-hidden">
|
||
|
<CalendarHeader />
|
||
|
<CalendarWeekHeader />
|
||
|
<div className="h-full w-full overflow-y-auto">
|
||
|
{layout === "month" ? (
|
||
|
<div className="h-full w-full grid grid-cols-1 divide-y-[0.5px] divide-custom-border-200">
|
||
|
{allWeeksOfActiveMonth &&
|
||
|
Object.values(allWeeksOfActiveMonth).map((week: ICalendarWeek, weekIndex) => (
|
||
|
<CalendarWeekDays key={weekIndex} week={week} issues={issues} />
|
||
|
))}
|
||
|
</div>
|
||
|
) : (
|
||
|
<CalendarWeekDays week={calendarStore.allDaysOfActiveWeek} issues={issues} />
|
||
|
)}
|
||
|
</div>
|
||
|
</div>
|
||
|
</>
|
||
|
);
|
||
|
});
|