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
42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
import { observer } from "mobx-react-lite";
|
|
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// components
|
|
import { CalendarDayTile } from "components/issues";
|
|
// helpers
|
|
import { renderDateFormat } from "helpers/date-time.helper";
|
|
// types
|
|
import { ICalendarDate, ICalendarWeek } from "./types";
|
|
import { IIssueGroupedStructure } from "store/issue";
|
|
|
|
type Props = {
|
|
issues: IIssueGroupedStructure | null;
|
|
week: ICalendarWeek | undefined;
|
|
};
|
|
|
|
export const CalendarWeekDays: React.FC<Props> = observer((props) => {
|
|
const { issues, week } = props;
|
|
|
|
const { issueFilter: issueFilterStore } = useMobxStore();
|
|
|
|
const calendarLayout = issueFilterStore.userDisplayFilters.calendar?.layout ?? "month";
|
|
const showWeekends = issueFilterStore.userDisplayFilters.calendar?.show_weekends ?? false;
|
|
|
|
if (!week) return null;
|
|
|
|
return (
|
|
<div
|
|
className={`grid divide-x-[0.5px] divide-y-[0.5px] divide-custom-border-200 ${
|
|
showWeekends ? "grid-cols-7" : "grid-cols-5"
|
|
} ${calendarLayout === "month" ? "" : "h-full"}`}
|
|
>
|
|
{Object.values(week).map((date: ICalendarDate) => {
|
|
if (!showWeekends && (date.date.getDay() === 0 || date.date.getDay() === 6)) return null;
|
|
|
|
return <CalendarDayTile key={renderDateFormat(date.date)} date={date} issues={issues} />;
|
|
})}
|
|
</div>
|
|
);
|
|
});
|