mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3bf590b67e
* dev: calendar view init * chore: new render logic * chore: implement calendar view * chore: calendar view * refactor: calendar payload * chore: remove active month logic from backend * chore: setup new store for calendar * refactor: issues fetching structure * chore: months dropdown * chore: modify request query params for calendar layout * refactor: remove console logs and add comments
55 lines
1.7 KiB
TypeScript
55 lines
1.7 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 "components/ui";
|
|
// types
|
|
import { ICalendarWeek } from "./types";
|
|
import { IIssueGroupedStructure } from "store/issue";
|
|
|
|
type Props = {
|
|
issues: IIssueGroupedStructure | null;
|
|
};
|
|
|
|
export const CalendarChart: React.FC<Props> = observer((props) => {
|
|
const { issues } = props;
|
|
|
|
const { calendar: calendarStore, issueFilter: issueFilterStore } = useMobxStore();
|
|
|
|
const calendarLayout = issueFilterStore.userDisplayFilters.calendar?.layout ?? "month";
|
|
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">
|
|
{calendarLayout === "month" ? (
|
|
<div className="h-full w-full grid grid-cols-1">
|
|
{allWeeksOfActiveMonth &&
|
|
Object.values(allWeeksOfActiveMonth).map((week: ICalendarWeek, weekIndex) => (
|
|
<CalendarWeekDays key={weekIndex} week={week} issues={issues} />
|
|
))}
|
|
</div>
|
|
) : (
|
|
<CalendarWeekDays week={calendarStore.allDaysOfActiveWeek} issues={issues} />
|
|
)}
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
});
|